ynh-hotspot 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  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_ip6delegatedprefix() {
  22. local i=${1}
  23. [[ -n "${ip6_net[${i}]}" ]] && [[ "${ip6_net[${i}]}" != "none" ]]
  24. }
  25. ip6addrfromdelegatedprefix() {
  26. local i=${1}
  27. echo "${ip6_net[${i}]}${i}001"
  28. }
  29. is_nat_set() {
  30. local gateway_interface=${1}
  31. iptables -w -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${gateway_interface}"
  32. }
  33. is_ip4nataddr_set() {
  34. local i=${1}
  35. local dev=$(devfromid "${i}")
  36. ip address show dev "${dev}" 2>/dev/null | grep -q "${ip4_nat_prefix[${i}]}.1/24"
  37. }
  38. is_ip6addr_set() {
  39. local i=${1}
  40. local dev=$(devfromid "${i}")
  41. ip address show dev "${dev}" 2>/dev/null | grep -q "$(ip6addrfromdelegatedprefix $i)/64"
  42. }
  43. is_ip6firewall_set() {
  44. local i=${1}
  45. local dev=$(devfromid "${i}")
  46. ip6tables -w -nvL FORWARD | grep DROP | grep -q "${dev}"
  47. }
  48. is_forwarding_set() {
  49. local ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
  50. local ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
  51. [ "${ip6}" -eq 1 ] && [ "${ip4}" -eq 1 ]
  52. }
  53. is_dhcpd6_running() {
  54. local i=${1}
  55. ps aux | grep "dhcpdv6-ssid${i}" | grep -qv grep
  56. }
  57. is_dhcpd4_running() {
  58. local i=${1}
  59. ps aux | grep "dhcpdv4-ssid${i}" | grep -qv grep
  60. }
  61. is_hostapd_running() {
  62. systemctl is-active hostapd &>/dev/null
  63. }
  64. is_running() {
  65. for i in $(seq 0 $((${multissid} - 1))); do
  66. (has_ip6delegatedprefix ${i} && is_ip6addr_set ${i} \
  67. && ([ "${ip6_firewall[${i}]}" -eq 1 ] && is_ip6firewall_set ${i} || [ "${ip6_firewall[${i}]}" -eq 0 ]) \
  68. && 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 && ([ -z "${new_gateway_interface}" ] || is_nat_set "${new_gateway_interface}")
  75. }
  76. ## Setters
  77. set_nat() {
  78. local gateway_interface=${1}
  79. iptables -w -t nat -A POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  80. }
  81. set_ipaddr() {
  82. local i=${1}
  83. local dev=$(devfromid "${i}")
  84. if ! is_ip4nataddr_set ${i}; then
  85. echo "hotspot${i}: Set IPv4 NAT address"
  86. ip address add "${ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
  87. fi
  88. if has_ip6delegatedprefix ${i} && ! is_ip6addr_set ${i}; then
  89. echo "hotspot${i}: Set IPv6 address"
  90. ip address delete "$(ip6addrfromdelegatedprefix $i)/64" dev tun0 &>/dev/null
  91. ip address add "$(ip6addrfromdelegatedprefix $i)/64" dev "${dev}"
  92. fi
  93. }
  94. set_ipfirewall() {
  95. local i=${1}
  96. local dev=$(devfromid "${i}")
  97. # Set ipv6 firewalling
  98. if has_ip6delegatedprefix ${i} && [ "${ip6_firewall[${i}]}" -eq 1 ] && ! is_ip6firewall_set ${i}; then
  99. echo "hotspot${i}: Set IPv6 firewalling"
  100. ip6tables -w -A FORWARD -i "${dev}" -j ACCEPT
  101. ip6tables -w -A FORWARD -o "${dev}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
  102. ip6tables -w -A FORWARD -o "${dev}" -j DROP
  103. fi
  104. }
  105. set_forwarding() {
  106. sysctl -w net.ipv6.conf.all.forwarding=1 >/dev/null
  107. sysctl -w net.ipv4.conf.all.forwarding=1 >/dev/null
  108. }
  109. start_dhcpd() {
  110. local i=${1}
  111. local dev=$(devfromid "${i}")
  112. # Run DHCPv4 server
  113. if ! is_dhcpd4_running ${i}; then
  114. echo "hotspot${i}: Start the DHCPv4 server (dnsmasq)"
  115. cp /etc/dnsmasq.dhcpd/dhcpdv4{.conf.tpl,-ssid${i}.conf}
  116. sed "s|__WIFI_DEVICE__|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  117. sed "s|__IP4_DNS__|${ip4_dns[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  118. sed "s|__IP4_NAT_PREFIX__|${ip4_nat_prefix[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf
  119. dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv4-ssid${i}.conf -p0
  120. fi
  121. # Run DHCPv6 server
  122. if has_ip6delegatedprefix ${i} && ! is_dhcpd6_running ${i}; then
  123. echo "hotspot${i}: Start the NDP and DHCPv6 server (dnsmasq)"
  124. cp /etc/dnsmasq.dhcpd/dhcpdv6{.conf.tpl,-ssid${i}.conf}
  125. sed "s|__WIFI_DEVICE__|${dev}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  126. sed "s|__IP6_DNS__|${ip6_dns[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  127. sed "s|__IP6_NET__|${ip6_net[${i}]}|g" -i /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf
  128. dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv6-ssid${i}.conf -p0
  129. fi
  130. }
  131. configure_hostapd() {
  132. local ethaddr=$(ip link show dev "${wifi_device}" | grep link/ether | awk -F: '{ printf "02:%s:%s:%s:%s:00", $2, $3, $4, $5 }')
  133. ip link set addr "${ethaddr}" dev "${wifi_device}"
  134. cp /etc/hostapd/hostapd.base.conf /etc/hostapd/hostapd.conf
  135. sed "s|__WIFI_DEVICE__|${wifi_device}|g" -i /etc/hostapd/hostapd.conf
  136. sed "s|__WIFI_CHANNEL__|${wifi_channel}|g" -i /etc/hostapd/hostapd.conf
  137. sed "s|__N_COMMENT__||g" -i /etc/hostapd/hostapd.conf
  138. for i in $(seq 0 $((${multissid} - 1))); do
  139. [ "${wifi_secure[${i}]}" -eq 1 ] && local sec_comment="" || local sec_comment="#"
  140. [ "${i}" -eq 0 ] && local bss_comment="#" || local bss_comment=""
  141. cp /etc/hostapd/hostapd.accesspoint.conf /etc/hostapd/hostapd.conf.tmp
  142. sed "s|__WIFI_INTERFACE__|hotspot${i}|g" -i /etc/hostapd/hostapd.conf.tmp
  143. sed "s|__WIFI_SSID__|${wifi_ssid[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
  144. sed "s|__WIFI_PASSPHRASE__|${wifi_passphrase[${i}]}|g" -i /etc/hostapd/hostapd.conf.tmp
  145. sed "s|__SEC_COMMENT__|${sec_comment}|g" -i /etc/hostapd/hostapd.conf.tmp
  146. sed "s|__BSS_COMMENT__|${bss_comment}|g" -i /etc/hostapd/hostapd.conf.tmp
  147. cat /etc/hostapd/hostapd.conf.tmp >>/etc/hostapd/hostapd.conf
  148. rm /etc/hostapd/hostapd.conf.tmp
  149. done
  150. }
  151. ## Unsetters
  152. unset_nat() {
  153. local gateway_interface=${1}
  154. iptables -w -t nat -D POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  155. }
  156. unset_ipaddr() {
  157. local i=${1}
  158. local dev=$(devfromid "${i}")
  159. if is_ip4nataddr_set ${i}; then
  160. echo "hotspot${i}: Unset IPv4 NAT address"
  161. ip address delete "${ip4_nat_prefix[${i}]}.1/24" dev "${dev}"
  162. fi
  163. if has_ip6delegatedprefix ${i} && is_ip6addr_set ${i}; then
  164. echo "hotspot${i}: Unset IPv6 address"
  165. ip address delete "$(ip6addrfromdelegatedprefix $i)/64" dev "${dev}"
  166. fi
  167. }
  168. unset_ipfirewall() {
  169. local i=${1}
  170. local dev=$(devfromid "${i}")
  171. if has_ip6delegatedprefix ${i} && [ "${ip6_firewall[${i}]}" -eq 1 ] && is_ip6firewall_set ${i}; then
  172. echo "hotspot${i}: Unset IPv6 firewalling"
  173. ip6tables -w -D FORWARD -i "${dev}" -j ACCEPT
  174. ip6tables -w -D FORWARD -o "${dev}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
  175. ip6tables -w -D FORWARD -o "${dev}" -j DROP
  176. fi
  177. }
  178. unset_forwarding() {
  179. sysctl -w net.ipv6.conf.all.forwarding=0 >/dev/null
  180. sysctl -w net.ipv4.conf.all.forwarding=0 >/dev/null
  181. }
  182. stop_dhcpd() {
  183. local i=${1}
  184. if is_dhcpd6_running ${i}; then
  185. echo "hotspot${i}: Stop the NDP and DHCPv6 server (dnsmasq)"
  186. kill $(ps aux | grep 'dhcpdv6-ssid' | grep -v grep | awk '{ print $2 }')
  187. rm -f /etc/dnsmasq.d/dhcpdv6-ssid*.conf
  188. fi
  189. if is_dhcpd4_running ${i}; then
  190. echo "hotspot${i}: Stop the DHCPv4 server (dnsmasq)"
  191. kill $(ps aux | grep 'dhcpdv4-ssid' | grep -v grep | awk '{ print $2 }')
  192. rm -f /etc/dnsmasq.d/dhcpdv4-ssid*.conf
  193. fi
  194. }
  195. stop_dhcpd4() {
  196. :
  197. }
  198. stop_hostapd() {
  199. systemctl stop hostapd
  200. }
  201. ## Tools
  202. ynh_setting_get() {
  203. APP="$1" KEY="$2" python3 - <<EOF
  204. import os, yaml, sys
  205. app = os.environ['APP']
  206. key = os.environ['KEY']
  207. setting_file = "/etc/yunohost/apps/%s/settings.yml" % app
  208. assert os.path.exists(setting_file), "Setting file %s does not exists ?" % setting_file
  209. with open(setting_file) as f:
  210. settings = yaml.safe_load(f)
  211. if key in settings:
  212. print(settings[key])
  213. EOF
  214. }
  215. ynh_setting_set() {
  216. # This is a partial copypasta of the official ynh_app_setting internal helper
  217. # In particular, we do this instead of relying on 'yunohost app setting' for
  218. # performance reasons (it takes a few second to run every yunohost commands)
  219. # and to remove the need for the infamous '--need-lock' option/issue.
  220. APP="$1" KEY="$2" VALUE="${3:-}" python3 - <<EOF
  221. import os, yaml, sys
  222. app = os.environ['APP']
  223. key, value = os.environ['KEY'], os.environ.get('VALUE', None)
  224. setting_file = "/etc/yunohost/apps/%s/settings.yml" % app
  225. assert os.path.exists(setting_file), "Setting file %s does not exists ?" % setting_file
  226. with open(setting_file) as f:
  227. settings = yaml.load(f)
  228. settings[key] = value
  229. with open(setting_file, "w") as f:
  230. yaml.safe_dump(settings, f, default_flow_style=False)
  231. EOF
  232. }
  233. devfromid() {
  234. local i=${1}
  235. if [ "${i}" -eq 0 ]; then
  236. echo "${wifi_device}"
  237. else
  238. echo "hotspot${i}"
  239. fi
  240. }
  241. if [ "$1" != restart ]; then
  242. # Variables
  243. echo -n "Retrieving Yunohost settings... "
  244. service_enabled=$(systemctl is-enabled ynh-hotspot)
  245. wifi_device=$(ynh_setting_get hotspot wifi_device)
  246. wifi_channel=$(ynh_setting_get hotspot wifi_channel)
  247. multissid=$(ynh_setting_get hotspot multissid)
  248. IFS='|' read -a wifi_ssid <<<"$(ynh_setting_get hotspot wifi_ssid)"
  249. IFS='|' read -a wifi_secure <<<"$(ynh_setting_get hotspot wifi_secure)"
  250. IFS='|' read -a wifi_passphrase <<<"$(ynh_setting_get hotspot wifi_passphrase)"
  251. IFS='|' read -a ip6_firewall <<<"$(ynh_setting_get hotspot ip6_firewall)"
  252. IFS='|' read -a ip6_net <<<"$(ynh_setting_get hotspot ip6_net)"
  253. IFS='|' read -a dns <<<"$(ynh_setting_get hotspot dns)"
  254. IFS='|' read -a ip4_nat_prefix <<<"$(ynh_setting_get hotspot ip4_nat_prefix)"
  255. for i in $(seq 0 $((${multissid} - 1))); do
  256. ip6_dns[${i}]=""
  257. ip4_dns[${i}]=""
  258. for ip in $(echo "${dns[${i}]}" | tr ',' ' '); do
  259. if [[ "$ip" == *":"* ]]; then
  260. ip6_dns[${i}]+="[$ip],"
  261. else
  262. ip4_dns[${i}]+="$ip,"
  263. fi
  264. done
  265. # Remove trailing ,
  266. ip6_dns[${i}]="${ip6_dns[${i}]%%,}"
  267. ip4_dns[${i}]="${ip4_dns[${i}]%%,}"
  268. done
  269. old_gateway_interface=$(ynh_setting_get hotspot gateway_interface)
  270. new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
  271. echo "OK"
  272. fi
  273. # Script
  274. case "$1" in
  275. start)
  276. if is_running; then
  277. echo "Already started"
  278. exit 0
  279. elif [ "${service_enabled}" != "enabled" ]; then
  280. echo "Not starting because hotspod service is disabled"
  281. exit 1
  282. fi
  283. if [ -z "${wifi_device}" ]; then
  284. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  285. exit 1
  286. fi
  287. echo "[hotspot] Starting..."
  288. touch /tmp/.ynh-hotspot-started
  289. # Check old state of the ipv4 NAT settings
  290. if [ -n "${old_gateway_interface}" ] && [ "${new_gateway_interface}" != "${old_gateway_interface}" ] && is_nat_set "${old_gateway_interface}"; then
  291. unset_nat "${old_gateway_interface}"
  292. fi
  293. # Set ipv4 NAT
  294. if [ -n "${new_gateway_interface}" ] && ! is_nat_set "${new_gateway_interface}"; then
  295. echo "Set NAT"
  296. set_nat "${new_gateway_interface}"
  297. fi
  298. # Set forwarding for ipv6 and ipv4
  299. echo "Set forwarding"
  300. set_forwarding
  301. # Run hostapd
  302. if ! is_hostapd_running; then
  303. echo "Configuring hostapd"
  304. configure_hostapd
  305. echo "Starting hostapd..."
  306. if ! systemctl start hostapd; then
  307. journalctl -u hostapd -n 100 --no-hostname --no-pager
  308. exit 1
  309. fi
  310. sleep 1
  311. # On single SSID, the hotspot interface will be wlan0 (or similar)
  312. # in multissid, we additionally want to make sure that at least hotspot1 started
  313. if [ "${multissid}" -gt 1 ]; then
  314. i=0
  315. while ! ip link show dev "hotspot1" &>/dev/null; do
  316. sleep 1
  317. if [ ${i} -gt 20 ]; then
  318. echo "Failed to see hotspot interface showing up in 'ip a'"
  319. stop_hostapd
  320. exit 1
  321. fi
  322. i=$(($i + 1))
  323. done
  324. fi
  325. fi
  326. # For each registred ssid
  327. for i in $(seq 0 $((${multissid} - 1))); do
  328. set_ipaddr ${i}
  329. set_ipfirewall ${i}
  330. start_dhcpd ${i}
  331. done
  332. # Update dynamic settings
  333. ynh_setting_set hotspot gateway_interface "${new_gateway_interface}"
  334. ;;
  335. stop)
  336. echo "[hotspot] Stopping..."
  337. rm -f /tmp/.ynh-hotspot-started
  338. if [ -n "${old_gateway_interface}" ] && is_nat_set "${old_gateway_interface}"; then
  339. echo "Unset NAT"
  340. unset_nat "${old_gateway_interface}"
  341. fi
  342. echo "Unset forwarding"
  343. unset_forwarding
  344. for i in $(seq 0 $((${multissid} - 1))); do
  345. unset_ipaddr ${i}
  346. unset_ipfirewall ${i}
  347. stop_dhcpd ${i}
  348. done
  349. if is_hostapd_running; then
  350. echo "Stop hostapd"
  351. stop_hostapd
  352. fi
  353. ;;
  354. restart)
  355. $0 stop
  356. $0 start
  357. ;;
  358. status)
  359. exitcode=0
  360. if [ "${service_enabled}" != "enabled" ]; then
  361. echo "[FAIL] Hotspot Service disabled"
  362. exit 1
  363. fi
  364. if [ -z "${wifi_device}" ]; then
  365. echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
  366. exit 1
  367. fi
  368. echo "[INFO] Autodetected internet interface: ${new_gateway_interface} (last start: ${old_gateway_interface})"
  369. if is_nat_set "${new_gateway_interface}"; then
  370. echo "[ OK ] IPv4 NAT set"
  371. else
  372. if [ -z "${new_gateway_interface}" ]; then
  373. echo "[INFO] No IPv4 NAT set (no internet interface)"
  374. else
  375. echo "[FAIL] No IPv4 NAT set"
  376. fi
  377. exitcode=1
  378. fi
  379. if is_forwarding_set; then
  380. echo "[ OK ] IPv6/IPv4 forwarding set"
  381. else
  382. echo "[FAIL] No IPv6/IPv4 forwarding set"
  383. exitcode=1
  384. fi
  385. if is_hostapd_running; then
  386. echo "[ OK ] Hostapd is running"
  387. else
  388. echo "[FAIL] Hostapd is not running"
  389. exitcode=1
  390. fi
  391. for i in $(seq 0 $((${multissid} - 1))); do
  392. if has_ip6delegatedprefix ${i}; then
  393. echo "[INFO] hotspot${i}: IPv6 delegated prefix found"
  394. echo "[INFO] hotspot${i}: IPv6 address computed from the delegated prefix: $(ip6addrfromdelegatedprefix $i)"
  395. if is_ip6addr_set ${i}; then
  396. echo "[ OK ] hotspot${i}: IPv6 address set"
  397. else
  398. echo "[FAIL] hotspot${i}: No IPv6 address set"
  399. exitcode=1
  400. fi
  401. if is_ip6firewall_set ${i}; then
  402. echo "[ OK ] hotspot${i}: IPv6 firewalling set"
  403. else
  404. if [ "${ip6_firewall[${i}]}" -eq 1 ]; then
  405. echo "[FAIL] hotspot${i}: No IPv6 firewalling set"
  406. else
  407. echo "[INFO] hotspot${i}: No IPv6 firewalling set"
  408. fi
  409. exitcode=1
  410. fi
  411. if is_dhcpd6_running ${i}; then
  412. echo "[ OK ] hotspot${i}: NDP and DHCPv6 server (dnsmasq) are running"
  413. else
  414. echo "[FAIL] hotspot${i}: NDP and DHCPv6 server (dnsmasq) are not running"
  415. exitcode=1
  416. fi
  417. else
  418. echo "[INFO] hotspot${i}: No IPv6 delegated prefix found"
  419. fi
  420. if is_dhcpd4_running ${i}; then
  421. echo "[ OK ] hotspot${i}: DHCPv4 server (dnsmasq) is running"
  422. else
  423. echo "[FAIL] hotspot${i}: DHCPv4 (dnsmasq) is not running"
  424. exitcode=1
  425. fi
  426. if is_ip4nataddr_set ${i}; then
  427. echo "[ OK ] hotspot${i}: IPv4 NAT address set"
  428. else
  429. echo "[FAIL] hotspot${i}: No IPv4 NAT address set"
  430. exitcode=1
  431. fi
  432. done
  433. exit ${exitcode}
  434. ;;
  435. *)
  436. echo "Usage: $0 {start|stop|restart|status}"
  437. exit 1
  438. ;;
  439. esac
  440. exit 0