ynh-hotspot 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  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. # The awk syntax is to accomodate to the fact that the ip route output may look like:
  192. # 1.2.3.4 via 192.168.1.254 dev end0 src 192.168.1.35 uid 0
  193. # 1.2.3.4 dev vpn_iloth table 51820 src 5.6.7.8 uid 0
  194. new_gateway_interface=$(ip route get 1.2.3.4 | awk '$2 ~ /^dev$/ { print $3; } $4 ~ /^dev$/ { print $5; }')
  195. echo "OK"
  196. fi
  197. # Script
  198. case "$1" in
  199. start)
  200. if is_running; then
  201. echo "Already started"
  202. exit 0
  203. elif [[ "${service_enabled}" -eq 0 ]]; then
  204. echo "Not starting because hotspot service is disabled"
  205. exit 1
  206. fi
  207. if [[ -z "${wifi_device}" ]]; then
  208. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  209. exit 1
  210. fi
  211. echo "[$app] Starting..."
  212. touch /tmp/.${service_name}-started
  213. # Check old state of the ipv4 NAT settings
  214. if [[ -n "${old_gateway_interface}" ]] && [[ "${new_gateway_interface}" != "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
  215. unset_nat "${old_gateway_interface}"
  216. fi
  217. # Set ipv4 NAT
  218. if [[ -n "${new_gateway_interface}" ]] && ! is_nat_set "${new_gateway_interface}"; then
  219. echo "Set NAT"
  220. set_nat "${new_gateway_interface}"
  221. fi
  222. # Set forwarding for ipv6 and ipv4
  223. echo "Set forwarding"
  224. set_forwarding
  225. # Run hostapd
  226. if ! is_hostapd_running; then
  227. echo "Configuring hostapd"
  228. configure_hostapd
  229. echo "Starting hostapd..."
  230. if ! systemctl start "hostapd@${app}"; then
  231. journalctl -u hostapd -n 100 --no-hostname --no-pager
  232. exit 1
  233. fi
  234. sleep 1
  235. fi
  236. set_ipaddr
  237. set_ipfirewall
  238. start_dhcpd
  239. # Update dynamic settings
  240. ynh_app_setting_set --app=$app --key=gateway_interface --value="${new_gateway_interface}"
  241. # Regen-conf dnsmasq to enable dns resolution on dnsmasq for the new interface
  242. yunohost tools regen-conf dnsmasq
  243. ;;
  244. stop)
  245. echo "[$app] Stopping..."
  246. rm -f /tmp/.${service_name}-started
  247. if ! is_other_hostapd_running; then
  248. if [[ -n "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
  249. echo "Unset NAT"
  250. unset_nat "${old_gateway_interface}"
  251. fi
  252. echo "Unset forwarding"
  253. unset_forwarding
  254. fi
  255. unset_ipaddr
  256. unset_ipfirewall
  257. stop_dhcpd
  258. if is_hostapd_running; then
  259. echo "Stop hostapd"
  260. stop_hostapd
  261. fi
  262. # Regen-conf dnsmasq to disable dns resolution on dnsmasq for the previous interface
  263. yunohost tools regen-conf dnsmasq
  264. ;;
  265. restart)
  266. $0 stop
  267. $0 start
  268. ;;
  269. status)
  270. exitcode=0
  271. if [[ "${service_enabled}" -eq 0 ]]; then
  272. echo "[FAIL] Hotspot Service disabled"
  273. exit 1
  274. fi
  275. if [[ -z "${wifi_device}" ]]; then
  276. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  277. exit 1
  278. fi
  279. echo "[INFO] Autodetected internet interface: ${new_gateway_interface} (last start: ${old_gateway_interface})"
  280. if is_nat_set "${new_gateway_interface}"; then
  281. echo "[ OK ] IPv4 NAT set"
  282. else
  283. if [[ -z "${new_gateway_interface}" ]]; then
  284. echo "[INFO] No IPv4 NAT set (no internet interface)"
  285. else
  286. echo "[FAIL] No IPv4 NAT set"
  287. fi
  288. exitcode=1
  289. fi
  290. if is_forwarding_set; then
  291. echo "[ OK ] IPv6/IPv4 forwarding set"
  292. else
  293. echo "[FAIL] No IPv6/IPv4 forwarding set"
  294. exitcode=1
  295. fi
  296. if is_hostapd_running; then
  297. echo "[ OK ] Hostapd is running"
  298. else
  299. echo "[FAIL] Hostapd is not running"
  300. exitcode=1
  301. fi
  302. if has_ip6delegatedprefix; then
  303. echo "[INFO] hotspot ${wifi_device}: IPv6 delegated prefix found"
  304. echo "[INFO] hotspot ${wifi_device}: IPv6 address computed from the delegated prefix: $(ip6addrfromdelegatedprefix)"
  305. if is_ip6addr_set; then
  306. echo "[ OK ] hotspot ${wifi_device}: IPv6 address set"
  307. else
  308. echo "[FAIL] hotspot ${wifi_device}: No IPv6 address set"
  309. exitcode=1
  310. fi
  311. if is_ip6firewall_set; then
  312. echo "[ OK ] hotspot ${wifi_device}: IPv6 firewalling set"
  313. else
  314. if [[ "${ip6_firewall}" -eq 1 ]]; then
  315. echo "[FAIL] hotspot ${wifi_device}: No IPv6 firewalling set"
  316. else
  317. echo "[INFO] hotspot ${wifi_device}: No IPv6 firewalling set"
  318. fi
  319. exitcode=1
  320. fi
  321. if is_dhcpd6_running; then
  322. echo "[ OK ] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are running"
  323. else
  324. echo "[FAIL] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are not running"
  325. exitcode=1
  326. fi
  327. else
  328. echo "[INFO] hotspot ${wifi_device}: No IPv6 delegated prefix found"
  329. fi
  330. if is_dhcpd4_running; then
  331. echo "[ OK ] hotspot ${wifi_device}: DHCPv4 server (dnsmasq) is running"
  332. else
  333. echo "[FAIL] hotspot ${zifi_device}: DHCPv4 (dnsmasq) is not running"
  334. exitcode=1
  335. fi
  336. if is_ip4nataddr_set; then
  337. echo "[ OK ] hotspot ${wifi_device}: IPv4 NAT address set"
  338. else
  339. echo "[FAIL] hotspot ${wifi_device}: No IPv4 NAT address set"
  340. exitcode=1
  341. fi
  342. exit ${exitcode}
  343. ;;
  344. *)
  345. echo "Usage: $0 {start|stop|restart|status}"
  346. exit 1
  347. ;;
  348. esac
  349. exit 0