ynh-hotspot 12 KB

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