ynh-hotspot 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  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. source /usr/share/yunohost/helpers
  20. # Functions
  21. ## State functions
  22. has_ip6delegatedprefix() {
  23. [[ -n "${ip6_net}" ]] && [[ "${ip6_net}" != "none" ]]
  24. }
  25. ip6addrfromdelegatedprefix() {
  26. echo "${ip6_net}1"
  27. }
  28. is_nat_set() {
  29. local gateway_interface=${1}
  30. iptables -w -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${gateway_interface}"
  31. }
  32. is_ip4nataddr_set() {
  33. ip address show dev "${wifi_device}" 2>/dev/null | grep -q "${ip4_nat_prefix}.1/24"
  34. }
  35. is_ip6addr_set() {
  36. ip address show dev "${wifi_device}" 2>/dev/null | grep -q "$(ip6addrfromdelegatedprefix)/64"
  37. }
  38. is_ip6firewall_set() {
  39. ip6tables -w -nvL FORWARD | grep DROP | grep -q "${wifi_device}"
  40. }
  41. is_forwarding_set() {
  42. local ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
  43. local ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
  44. [[ "${ip6}" -eq 1 ]] && [[ "${ip4}" -eq 1 ]]
  45. }
  46. is_dhcpd6_running() {
  47. [[ -e "/run/dnsmasq/dnsmasq-dhcpdv6-$app.pid" ]] && ps -p $(cat "/run/dnsmasq/dnsmasq-dhcpdv6-$app.pid") > /dev/null
  48. }
  49. is_dhcpd4_running() {
  50. [[ -e "/run/dnsmasq/dnsmasq-dhcpdv4-$app.pid" ]] && ps -p $(cat "/run/dnsmasq/dnsmasq-dhcpdv4-$app.pid") > /dev/null
  51. }
  52. is_hostapd_running() {
  53. systemctl is-active "hostapd@${app}" &>/dev/null
  54. }
  55. is_other_hostapd_running() {
  56. other_hostapd_services=$(systemctl list-units --state=running hostapd@*.service | grep -v "^hostapd@$app.service")
  57. [[ -n "${other_hostapd_service}" ]]
  58. }
  59. is_running() {
  60. if has_ip6delegatedprefix; then
  61. if ! is_ip6addr_set; then
  62. return 1
  63. fi
  64. if [[ "${ip6_firewall}" -eq 1 ]] && ! is_ip6firewall_set; then
  65. return 1
  66. fi
  67. if ! is_dhcpd6_running; then
  68. return 1
  69. fi
  70. fi
  71. if ! is_ip4nataddr_set; then
  72. return 1
  73. fi
  74. if ! is_dhcpd4_running; then
  75. return 1
  76. fi
  77. if ! is_hostapd_running; then
  78. return 1
  79. fi
  80. if ! is_forwarding_set; then
  81. return 1
  82. fi
  83. if [[ -n ${new_gateway_interface} ]] && ! is_nat_set "${new_gateway_interface}"; then
  84. return 1
  85. fi
  86. return 0
  87. }
  88. ## Setters
  89. set_nat() {
  90. local gateway_interface=${1}
  91. iptables -w -t nat -A POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  92. }
  93. set_ipaddr() {
  94. if ! is_ip4nataddr_set; then
  95. echo "hotspot ${wifi_device}: Set IPv4 NAT address"
  96. ip address add "${ip4_nat_prefix}.1/24" dev "${wifi_device}"
  97. fi
  98. if has_ip6delegatedprefix && ! is_ip6addr_set; then
  99. echo "hotspot ${wifi_device}: Set IPv6 address"
  100. ip address delete "$(ip6addrfromdelegatedprefix)/64" dev tun0 &>/dev/null
  101. ip address add "$(ip6addrfromdelegatedprefix)/64" dev "${wifi_device}"
  102. fi
  103. }
  104. set_ipfirewall() {
  105. # Set ipv6 firewalling
  106. if has_ip6delegatedprefix && [[ "${ip6_firewall}" -eq 1 ]] && ! is_ip6firewall_set; then
  107. echo "hotspot ${wifi_device}: Set IPv6 firewalling"
  108. ip6tables -w -A FORWARD -i "${wifi_device}" -j ACCEPT
  109. ip6tables -w -A FORWARD -o "${wifi_device}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
  110. ip6tables -w -A FORWARD -o "${wifi_device}" -j DROP
  111. fi
  112. }
  113. set_forwarding() {
  114. sysctl -w net.ipv6.conf.all.forwarding=1 >/dev/null
  115. sysctl -w net.ipv4.conf.all.forwarding=1 >/dev/null
  116. }
  117. start_dhcpd() {
  118. # Run DHCPv4 server
  119. if ! is_dhcpd4_running; then
  120. echo "hotspot ${wifi_device}: Start the DHCPv4 server (dnsmasq)"
  121. dnsmasq -C /etc/dnsmasq.$app/dhcpdv4.conf -p0 -x /run/dnsmasq/dnsmasq-dhcpdv4-$app.pid
  122. fi
  123. # Run DHCPv6 server
  124. if has_ip6delegatedprefix && ! is_dhcpd6_running; then
  125. echo "hotspot ${wifi_device}: Start the NDP and DHCPv6 server (dnsmasq)"
  126. dnsmasq -C /etc/dnsmasq.$app/dhcpdv6.conf -p0 -x /run/dnsmasq/dnsmasq-dhcpdv6-$app.pid
  127. fi
  128. }
  129. configure_hostapd() {
  130. local ethaddr=$(ip link show dev "${wifi_device}" | grep link/ether | awk -F: '{ printf "02:%s:%s:%s:%s:00", $2, $3, $4, $5 }')
  131. ip link set addr "${ethaddr}" dev "${wifi_device}"
  132. }
  133. ## Unsetters
  134. unset_nat() {
  135. local gateway_interface=${1}
  136. iptables -w -t nat -D POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  137. }
  138. unset_ipaddr() {
  139. if is_ip4nataddr_set; then
  140. echo "hotspot ${wifi_device}: Unset IPv4 NAT address"
  141. ip address delete "${ip4_nat_prefix}.1/24" dev "${wifi_device}"
  142. fi
  143. if has_ip6delegatedprefix && is_ip6addr_set; then
  144. echo "hotspot ${wifi_device}: Unset IPv6 address"
  145. ip address delete "$(ip6addrfromdelegatedprefix)/64" dev "${wifi_device}"
  146. fi
  147. }
  148. unset_ipfirewall() {
  149. if has_ip6delegatedprefix && [[ "${ip6_firewall}" -eq 1 ]] && is_ip6firewall_set; then
  150. echo "hotspot ${wifi_device}: Unset IPv6 firewalling"
  151. ip6tables -w -D FORWARD -i "${wifi_device}" -j ACCEPT
  152. ip6tables -w -D FORWARD -o "${wifi_device}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
  153. ip6tables -w -D FORWARD -o "${wifi_device}" -j DROP
  154. fi
  155. }
  156. unset_forwarding() {
  157. sysctl -w net.ipv6.conf.all.forwarding=0 >/dev/null
  158. sysctl -w net.ipv4.conf.all.forwarding=0 >/dev/null
  159. }
  160. stop_dhcpd() {
  161. if is_dhcpd6_running; then
  162. echo "hotspot ${wifi_device}: Stop the NDP and DHCPv6 server (dnsmasq)"
  163. kill $(cat /run/dnsmasq/dnsmasq-dhcpdv6-$app.pid)
  164. rm -f /run/dnsmasq/dnsmasq-dhcpdv6-$app.pid
  165. fi
  166. if is_dhcpd4_running; then
  167. echo "hotspot ${wifi_device}: Stop the DHCPv4 server (dnsmasq)"
  168. kill $(cat /run/dnsmasq/dnsmasq-dhcpdv4-$app.pid)
  169. rm -f /run/dnsmasq/dnsmasq-dhcpdv4-$app.pid
  170. fi
  171. }
  172. stop_hostapd() {
  173. systemctl stop "hostapd@${app}"
  174. }
  175. if [ "$1" != restart ]; then
  176. # Variables
  177. echo -n "Retrieving Yunohost settings... "
  178. app=__APP__
  179. service_enabled=$(ynh_app_setting_get --app=$app --key=service_enabled)
  180. wifi_device=$(ynh_app_setting_get --app=$app --key=wifi_device)
  181. wifi_channel=$(ynh_app_setting_get --app=$app --key=wifi_channel)
  182. wifi_ssid=$(ynh_app_setting_get --app=$app --key=wifi_ssid)
  183. wifi_secure=$(ynh_app_setting_get --app=$app --key=wifi_secure)
  184. wifi_passphrase=$(ynh_app_setting_get --app=$app --key=wifi_passphrase)
  185. ip6_firewall=$(ynh_app_setting_get --app=$app --key=ip6_firewall)
  186. ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns)
  187. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  188. ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
  189. ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  190. old_gateway_interface=$(ynh_app_setting_get --app=$app --key=gateway_interface)
  191. new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
  192. echo "OK"
  193. fi
  194. # Script
  195. case "$1" in
  196. start)
  197. if is_running; then
  198. echo "Already started"
  199. exit 0
  200. elif [[ "${service_enabled}" -eq 0 ]]; then
  201. echo "Not starting because hotspot service is disabled"
  202. exit 1
  203. fi
  204. if [[ -z "${wifi_device}" ]]; then
  205. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  206. exit 1
  207. fi
  208. echo "[hotspot] Starting..."
  209. touch /tmp/.${service_name}-started
  210. # Check old state of the ipv4 NAT settings
  211. if [[ -n "${old_gateway_interface}" ]] && [[ "${new_gateway_interface}" != "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
  212. unset_nat "${old_gateway_interface}"
  213. fi
  214. # Set ipv4 NAT
  215. if [[ -n "${new_gateway_interface}" ]] && ! is_nat_set "${new_gateway_interface}"; then
  216. echo "Set NAT"
  217. set_nat "${new_gateway_interface}"
  218. fi
  219. # Set forwarding for ipv6 and ipv4
  220. echo "Set forwarding"
  221. set_forwarding
  222. # Run hostapd
  223. if ! is_hostapd_running; then
  224. echo "Configuring hostapd"
  225. configure_hostapd
  226. echo "Starting hostapd..."
  227. if ! systemctl start "hostapd@${app}"; then
  228. journalctl -u hostapd -n 100 --no-hostname --no-pager
  229. exit 1
  230. fi
  231. sleep 1
  232. fi
  233. set_ipaddr
  234. set_ipfirewall
  235. start_dhcpd
  236. # Update dynamic settings
  237. ynh_app_setting_set hotspot gateway_interface "${new_gateway_interface}"
  238. # Regen-conf dnsmasq to enable dns resolution on dnsmasq for the new interface
  239. yunohost tools regen-conf dnsmasq
  240. ;;
  241. stop)
  242. echo "[hotspot] Stopping..."
  243. rm -f /tmp/.${service_name}-started
  244. if ! is_other_hostapd_running; then
  245. if [[ -n "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
  246. echo "Unset NAT"
  247. unset_nat "${old_gateway_interface}"
  248. fi
  249. echo "Unset forwarding"
  250. unset_forwarding
  251. fi
  252. unset_ipaddr
  253. unset_ipfirewall
  254. stop_dhcpd
  255. if is_hostapd_running; then
  256. echo "Stop hostapd"
  257. stop_hostapd
  258. fi
  259. # Regen-conf dnsmasq to disable dns resolution on dnsmasq for the previous interface
  260. yunohost tools regen-conf dnsmasq
  261. ;;
  262. restart)
  263. $0 stop
  264. $0 start
  265. ;;
  266. status)
  267. exitcode=0
  268. if [[ "${service_enabled}" -eq 0 ]]; then
  269. echo "[FAIL] Hotspot Service disabled"
  270. exit 1
  271. fi
  272. if [[ -z "${wifi_device}" ]]; then
  273. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  274. exit 1
  275. fi
  276. echo "[INFO] Autodetected internet interface: ${new_gateway_interface} (last start: ${old_gateway_interface})"
  277. if is_nat_set "${new_gateway_interface}"; then
  278. echo "[ OK ] IPv4 NAT set"
  279. else
  280. if [[ -z "${new_gateway_interface}" ]]; then
  281. echo "[INFO] No IPv4 NAT set (no internet interface)"
  282. else
  283. echo "[FAIL] No IPv4 NAT set"
  284. fi
  285. exitcode=1
  286. fi
  287. if is_forwarding_set; then
  288. echo "[ OK ] IPv6/IPv4 forwarding set"
  289. else
  290. echo "[FAIL] No IPv6/IPv4 forwarding set"
  291. exitcode=1
  292. fi
  293. if is_hostapd_running; then
  294. echo "[ OK ] Hostapd is running"
  295. else
  296. echo "[FAIL] Hostapd is not running"
  297. exitcode=1
  298. fi
  299. if has_ip6delegatedprefix; then
  300. echo "[INFO] hotspot ${wifi_device}: IPv6 delegated prefix found"
  301. echo "[INFO] hotspot ${wifi_device}: IPv6 address computed from the delegated prefix: $(ip6addrfromdelegatedprefix)"
  302. if is_ip6addr_set; then
  303. echo "[ OK ] hotspot ${wifi_device}: IPv6 address set"
  304. else
  305. echo "[FAIL] hotspot ${wifi_device}: No IPv6 address set"
  306. exitcode=1
  307. fi
  308. if is_ip6firewall_set; then
  309. echo "[ OK ] hotspot ${wifi_device}: IPv6 firewalling set"
  310. else
  311. if [[ "${ip6_firewall}" -eq 1 ]]; then
  312. echo "[FAIL] hotspot ${wifi_device}: No IPv6 firewalling set"
  313. else
  314. echo "[INFO] hotspot ${wifi_device}: No IPv6 firewalling set"
  315. fi
  316. exitcode=1
  317. fi
  318. if is_dhcpd6_running; then
  319. echo "[ OK ] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are running"
  320. else
  321. echo "[FAIL] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are not running"
  322. exitcode=1
  323. fi
  324. else
  325. echo "[INFO] hotspot ${wifi_device}: No IPv6 delegated prefix found"
  326. fi
  327. if is_dhcpd4_running; then
  328. echo "[ OK ] hotspot ${wifi_device}: DHCPv4 server (dnsmasq) is running"
  329. else
  330. echo "[FAIL] hotspot ${zifi_device}: DHCPv4 (dnsmasq) is not running"
  331. exitcode=1
  332. fi
  333. if is_ip4nataddr_set; then
  334. echo "[ OK ] hotspot ${wifi_device}: IPv4 NAT address set"
  335. else
  336. echo "[FAIL] hotspot ${wifi_device}: No IPv4 NAT address set"
  337. exitcode=1
  338. fi
  339. exit ${exitcode}
  340. ;;
  341. *)
  342. echo "Usage: $0 {start|stop|restart|status}"
  343. exit 1
  344. ;;
  345. esac
  346. exit 0