init_ynh-hotspot 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. #!/bin/bash
  2. ### BEGIN INIT INFO
  3. # Provides: ynh-hotspot
  4. # Required-Start: $network $remote_fs $syslog
  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. # Functions
  12. ## State functions
  13. is_ndproxy_set() {
  14. proxy=$(ip -6 neighbour show proxy)
  15. [ ! -z "${proxy}" ]
  16. }
  17. is_nat_set() {
  18. internet_device=${1}
  19. iptables -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${internet_device}"
  20. }
  21. is_ip4nataddr_set() {
  22. ip address show dev "${ynh_wifi_device}" 2> /dev/null | grep -q "${ynh_ip4_nat_prefix}.1/24"
  23. }
  24. is_ip6addr_set() {
  25. ip address show dev "${ynh_wifi_device}" 2> /dev/null | grep -q "${ynh_ip6_addr}/64"
  26. }
  27. is_forwarding_set() {
  28. ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
  29. ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
  30. [ "${ip6}" -eq 1 -a "${ip4}" -eq 1 ]
  31. }
  32. is_hostapd_running() {
  33. service hostapd status &> /dev/null
  34. }
  35. is_radvd_running() {
  36. service radvd status &> /dev/null
  37. }
  38. is_dhcpd_running() {
  39. service isc-dhcp-server status &> /dev/null
  40. }
  41. is_running() {
  42. is_ndproxy_set && is_nat_set "${new_internet_device}" && is_ip4nataddr_set\
  43. && is_ip6addr_set && is_forwarding_set && is_hostapd_running\
  44. && is_radvd_running && is_dhcpd_running
  45. }
  46. ## Setters
  47. set_ndproxy() {
  48. ip -6 neighbour add proxy "${ynh_ip6_addr}" dev "${ynh_wifi_device}"
  49. }
  50. set_nat() {
  51. internet_device=${1}
  52. iptables -t nat -A POSTROUTING -o "${internet_device}" -j MASQUERADE
  53. }
  54. set_ip4nataddr() {
  55. ip address add "${ynh_ip4_nat_prefix}.1/24" dev "${ynh_wifi_device}"
  56. }
  57. set_ip6addr() {
  58. ip address add "${ynh_ip6_addr}/64" dev "${ynh_wifi_device}"
  59. }
  60. set_forwarding() {
  61. sysctl -w net.ipv6.conf.all.forwarding=1 > /dev/null
  62. sysctl -w net.ipv4.conf.all.forwarding=1 > /dev/null
  63. }
  64. start_hostapd() {
  65. cp /etc/hostapd/hostapd.conf{.tpl,}
  66. sed "s|<TPL:WIFI_DEVICE>|${ynh_wifi_device}|g" -i /etc/hostapd/hostapd.conf
  67. sed "s|<TPL:WIFI_SSID>|${ynh_wifi_ssid}|g" -i /etc/hostapd/hostapd.conf
  68. sed "s|<TPL:WIFI_PASSPHRASE>|${ynh_wifi_passphrase}|g" -i /etc/hostapd/hostapd.conf
  69. sed "s|<TPL:WIFI_CHANNEL>|${ynh_wifi_channel}|g" -i /etc/hostapd/hostapd.conf
  70. service hostapd start
  71. }
  72. start_radvd() {
  73. cp /etc/radvd.conf{.tpl,}
  74. sed "s|<TPL:WIFI_DEVICE>|${ynh_wifi_device}|g" -i /etc/radvd.conf
  75. sed "s|<TPL:IP6_NET>|${ynh_ip6_net}|g" -i /etc/radvd.conf
  76. sed "s|<TPL:IP6_DNS0>|${ynh_ip6_dns0}|g" -i /etc/radvd.conf
  77. sed "s|<TPL:IP6_DNS1>|${ynh_ip6_dns1}|g" -i /etc/radvd.conf
  78. service radvd start
  79. }
  80. start_dhcpd() {
  81. cp /etc/dhcp/dhcpd.conf{.tpl,}
  82. sed "s|<TPL:IP4_DNS0>|${ynh_ip4_dns0}|g" -i /etc/dhcp/dhcpd.conf
  83. sed "s|<TPL:IP4_DNS1>|${ynh_ip4_dns1}|g" -i /etc/dhcp/dhcpd.conf
  84. sed "s|<TPL:WIFI_DEVICE>|${ynh_wifi_device}|g" -i /etc/dhcp/dhcpd.conf
  85. sed "s|<TPL:IP4_NAT_PREFIX>|${ynh_ip4_nat_prefix}|g" -i /etc/dhcp/dhcpd.conf
  86. service isc-dhcp-server start
  87. }
  88. ## Unsetters
  89. unset_ndproxy() {
  90. ip -6 neighbour delete proxy "${ynh_ip6_addr}" dev "${ynh_wifi_device}"
  91. }
  92. unset_nat() {
  93. internet_device=${1}
  94. iptables -t nat -D POSTROUTING -o "${internet_device}" -j MASQUERADE
  95. }
  96. unset_ip4nataddr() {
  97. ip address delete "${ynh_ip4_nat_prefix}.1/24" dev "${ynh_wifi_device}"
  98. }
  99. unset_ip6addr() {
  100. ip address delete "${ynh_ip6_addr}/64" dev "${ynh_wifi_device}"
  101. }
  102. unset_forwarding() {
  103. sysctl -w net.ipv6.conf.all.forwarding=0 > /dev/null
  104. sysctl -w net.ipv4.conf.all.forwarding=0 > /dev/null
  105. }
  106. stop_hostapd() {
  107. service hostapd stop
  108. }
  109. stop_radvd() {
  110. service radvd stop
  111. }
  112. stop_dhcpd() {
  113. service isc-dhcp-server stop
  114. }
  115. ## Tools
  116. moulinette_get() {
  117. var=${1}
  118. value=$(yunohost app setting hotspot "${var}")
  119. if [[ "${value}" =~ "An instance is already running" ]]; then
  120. echo "${value}" >&2
  121. exit 1
  122. fi
  123. echo "${value}"
  124. }
  125. moulinette_set() {
  126. var=${1}
  127. value=${2}
  128. msg=$(yunohost app setting hotspot "${var}" -v "${value}")
  129. if [ ! $? -eq 0 ]; then
  130. echo "${msg}" >&2
  131. exit 1
  132. fi
  133. }
  134. # Variables
  135. echo -n "Retrieving Yunohost settings... "
  136. ynh_wifi_device=$(moulinette_get wifi_device)
  137. ynh_wifi_ssid=$(moulinette_get wifi_ssid)
  138. ynh_wifi_passphrase=$(moulinette_get wifi_passphrase)
  139. ynh_wifi_channel=$(moulinette_get wifi_channel)
  140. ynh_ip6_addr=$(moulinette_get ip6_addr)
  141. ynh_ip6_net=$(moulinette_get ip6_net)
  142. ynh_ip6_dns0=$(moulinette_get ip6_dns0)
  143. ynh_ip6_dns1=$(moulinette_get ip6_dns1)
  144. ynh_ip4_dns0=$(moulinette_get ip4_dns0)
  145. ynh_ip4_dns1=$(moulinette_get ip4_dns1)
  146. ynh_ip4_nat_prefix=$(moulinette_get ip4_nat_prefix)
  147. old_internet_device=$(moulinette_get internet_device)
  148. new_internet_device=$(ip route | awk '/default via/ { print $NF; }')
  149. # Switch the NAT interface if there is a VPN
  150. ip link show dev tun0 &> /dev/null
  151. if [ "$?" -eq 0 ]; then
  152. new_internet_device=tun0
  153. fi
  154. echo "OK"
  155. # Script
  156. case "$1" in
  157. start)
  158. if is_running; then
  159. echo "Already started"
  160. else
  161. echo "Starting..."
  162. # Set NDP proxy
  163. if ! is_ndproxy_set; then
  164. echo "Set NDP proxy"
  165. set_ndproxy
  166. fi
  167. # Check old state of the ipv4 NAT settings
  168. if [ ! -z "${old_internet_device}" -a "${new_internet_device}" != "${old_internet_device}" ]\
  169. && is_nat_set "${old_internet_device}"; then
  170. unset_nat "${old_internet_device}"
  171. fi
  172. # Set ipv4 NAT
  173. if ! is_nat_set "${new_internet_device}"; then
  174. echo "Set NAT"
  175. set_nat "${new_internet_device}"
  176. fi
  177. # Set ipv4 NAT address
  178. if ! is_ip4nataddr_set; then
  179. echo "Set IPv4 NAT address"
  180. set_ip4nataddr
  181. fi
  182. # Set the ipv6 address
  183. if ! is_ip6addr_set; then
  184. echo "Set IPv6 address"
  185. set_ip6addr
  186. fi
  187. # Set forwarding for ipv6 and ipv4
  188. if ! is_forwarding_set; then
  189. echo "Set forwarding"
  190. set_forwarding
  191. fi
  192. # Run hostapd
  193. if ! is_hostapd_running; then
  194. echo "Run hostapd"
  195. start_hostapd
  196. sleep 1
  197. fi
  198. # Run radvd
  199. # must be running after hostapd
  200. if ! is_radvd_running; then
  201. echo "Run radvd"
  202. start_radvd
  203. fi
  204. # Run dhcpd
  205. # "options routers" addr (is_ip6addr_set) must be set before
  206. if ! is_dhcpd_running; then
  207. echo "Run dhcpd"
  208. start_dhcpd
  209. fi
  210. fi
  211. # Update dynamic settings
  212. moulinette_set internet_device "${new_internet_device}"
  213. ;;
  214. stop)
  215. echo "Stopping..."
  216. if is_ndproxy_set; then
  217. echo "Unset NDP proxy"
  218. unset_ndproxy
  219. fi
  220. if is_nat_set "${old_internet_device}"; then
  221. echo "Unset NAT"
  222. unset_nat "${old_internet_device}"
  223. fi
  224. if is_ip4nataddr_set; then
  225. echo "Unset IPv4 NAT address"
  226. unset_ip4nataddr
  227. fi
  228. if is_ip6addr_set; then
  229. echo "Unset IPv6 address"
  230. unset_ip6addr
  231. fi
  232. if is_forwarding_set; then
  233. echo "Unset forwarding"
  234. unset_forwarding
  235. fi
  236. if is_hostapd_running; then
  237. echo "Stop hostapd"
  238. stop_hostapd
  239. fi
  240. if is_radvd_running; then
  241. echo "Stop radvd"
  242. stop_radvd
  243. fi
  244. if is_dhcpd_running; then
  245. echo "Stop dhcpd"
  246. stop_dhcpd
  247. fi
  248. ;;
  249. status)
  250. exitcode=0
  251. if is_ndproxy_set; then
  252. echo "NDP proxy is correctly set"
  253. else
  254. echo "NDP proxy is NOT set"
  255. exitcode=1
  256. fi
  257. if is_nat_set "${new_internet_device}"; then
  258. echo "NAT is correctly set"
  259. else
  260. echo "NAT is NOT set"
  261. exitcode=1
  262. fi
  263. if is_ip4nataddr_set; then
  264. echo "IPv4 NAT address is correctly set"
  265. else
  266. echo "IPv4 NAT address is NOT set"
  267. exitcode=1
  268. fi
  269. if is_ip6addr_set; then
  270. echo "IPv6 address is correctly set"
  271. else
  272. echo "IPv6 address is NOT set"
  273. exitcode=1
  274. fi
  275. if is_forwarding_set; then
  276. echo "Forwarding is correctly set"
  277. else
  278. echo "Forwarding is NOT set"
  279. exitcode=1
  280. fi
  281. if is_hostapd_running; then
  282. echo "Hostapd is running"
  283. else
  284. echo "Hostapd is NOT running"
  285. exitcode=1
  286. fi
  287. if is_radvd_running; then
  288. echo "Radvd is running"
  289. else
  290. echo "Radvd is NOT running"
  291. exitcode=1
  292. fi
  293. if is_dhcpd_running; then
  294. echo "Dhcpd is running"
  295. else
  296. echo "Dhcpd is NOT running"
  297. exitcode=1
  298. fi
  299. exit ${exitcode}
  300. ;;
  301. *)
  302. echo "Usage: $0 {start|stop|status}"
  303. exit 1
  304. ;;
  305. esac
  306. exit 0