2014-11-09 00:40:40 +01:00
|
|
|
#!/bin/bash
|
2015-05-12 09:30:55 +02:00
|
|
|
#
|
|
|
|
# Wifi Hotspot app for YunoHost
|
2014-12-26 20:18:03 +01:00
|
|
|
# Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
|
2015-07-22 23:54:56 +02:00
|
|
|
# Contribute at https://github.com/labriqueinternet/hotspot_ynh
|
2015-05-12 09:30:55 +02:00
|
|
|
#
|
2014-12-26 20:18:03 +01:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2015-05-12 09:30:55 +02:00
|
|
|
#
|
2014-12-26 20:18:03 +01:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
2015-05-12 09:30:55 +02:00
|
|
|
#
|
2014-12-26 20:18:03 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
# Functions
|
|
|
|
## State functions
|
|
|
|
|
2014-11-10 22:27:59 +01:00
|
|
|
has_ip6delegatedprefix() {
|
2023-08-20 15:22:11 +02:00
|
|
|
[[ -n "${ip6_net}" ]] && [[ "${ip6_net}" != "none" ]]
|
2014-11-10 22:27:59 +01:00
|
|
|
}
|
|
|
|
|
2021-10-18 00:04:34 +02:00
|
|
|
ip6addrfromdelegatedprefix() {
|
2023-08-20 15:22:11 +02:00
|
|
|
echo "${ip6_net}1"
|
2021-10-18 00:04:34 +02:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
is_nat_set() {
|
2021-11-16 00:20:13 +01:00
|
|
|
local gateway_interface=${1}
|
|
|
|
iptables -w -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${gateway_interface}"
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
is_ip4nataddr_set() {
|
2023-08-20 15:22:11 +02:00
|
|
|
ip address show dev "${wifi_device}" 2>/dev/null | grep -q "${ip4_nat_prefix}.1/24"
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
is_ip6addr_set() {
|
2023-08-20 15:22:11 +02:00
|
|
|
ip address show dev "${wifi_device}" 2>/dev/null | grep -q "$(ip6addrfromdelegatedprefix)/64"
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2015-07-24 23:48:24 +02:00
|
|
|
is_ip6firewall_set() {
|
2023-08-20 15:22:11 +02:00
|
|
|
ip6tables -w -nvL FORWARD | grep DROP | grep -q "${wifi_device}"
|
2015-07-24 23:48:24 +02:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
is_forwarding_set() {
|
2021-11-16 00:20:13 +01:00
|
|
|
local ip6=$(sysctl net.ipv6.conf.all.forwarding | awk '{ print $NF; }')
|
|
|
|
local ip4=$(sysctl net.ipv4.conf.all.forwarding | awk '{ print $NF; }')
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
[[ "${ip6}" -eq 1 ]] && [[ "${ip4}" -eq 1 ]]
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2015-05-02 17:41:54 +02:00
|
|
|
is_dhcpd6_running() {
|
2023-08-20 15:22:11 +02:00
|
|
|
[[ -e "/run/dnsmasq/dnsmasq-dhcpdv6-ssid-${wifi_device}.pid" ]] && ps -p $(cat "/run/dnsmasq/dnsmasq-dhcpdv6-ssid-${wifi_device}.pid") > /dev/null
|
2015-05-02 17:41:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
is_dhcpd4_running() {
|
2023-08-20 15:22:11 +02:00
|
|
|
[[ -e "/run/dnsmasq/dnsmasq-dhcpdv4-ssid-${wifi_device}.pid" ]] && ps -p $(cat "/run/dnsmasq/dnsmasq-dhcpdv4-ssid-${wifi_device}.pid") > /dev/null
|
2014-12-26 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
is_hostapd_running() {
|
2021-11-16 00:20:13 +01:00
|
|
|
systemctl is-active hostapd &>/dev/null
|
2015-04-26 21:34:11 +02:00
|
|
|
}
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2015-04-26 21:34:11 +02:00
|
|
|
is_running() {
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix; then
|
|
|
|
if ! is_ip6addr_set; then
|
2021-11-16 00:20:13 +01:00
|
|
|
return 1
|
|
|
|
fi
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ "${ip6_firewall}" -eq 1 ]] && ! is_ip6firewall_set; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
if ! is_dhcpd6_running; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! is_ip4nataddr_set; then
|
|
|
|
return 1
|
|
|
|
fi
|
2021-11-16 00:20:13 +01:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if ! is_dhcpd4_running; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! is_hostapd_running; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! is_forwarding_set; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -n ${new_gateway_interface} ]] && ! is_nat_set "${new_gateway_interface}"; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
## Setters
|
|
|
|
|
|
|
|
set_nat() {
|
2021-11-16 00:20:13 +01:00
|
|
|
local gateway_interface=${1}
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2021-11-16 00:20:13 +01:00
|
|
|
iptables -w -t nat -A POSTROUTING -o "${gateway_interface}" -j MASQUERADE
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
set_ipaddr() {
|
2023-08-20 15:22:11 +02:00
|
|
|
if ! is_ip4nataddr_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Set IPv4 NAT address"
|
|
|
|
ip address add "${ip4_nat_prefix}.1/24" dev "${wifi_device}"
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2015-05-02 14:54:08 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix && ! is_ip6addr_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Set IPv6 address"
|
|
|
|
ip address delete "$(ip6addrfromdelegatedprefix)/64" dev tun0 &>/dev/null
|
|
|
|
ip address add "$(ip6addrfromdelegatedprefix)/64" dev "${wifi_device}"
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
set_ipfirewall() {
|
|
|
|
# Set ipv6 firewalling
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix && [[ "${ip6_firewall}" -eq 1 ]] && ! is_ip6firewall_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Set IPv6 firewalling"
|
|
|
|
ip6tables -w -A FORWARD -i "${wifi_device}" -j ACCEPT
|
|
|
|
ip6tables -w -A FORWARD -o "${wifi_device}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
|
|
|
|
ip6tables -w -A FORWARD -o "${wifi_device}" -j DROP
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2015-07-24 23:48:24 +02:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
set_forwarding() {
|
2021-11-16 00:20:13 +01:00
|
|
|
sysctl -w net.ipv6.conf.all.forwarding=1 >/dev/null
|
|
|
|
sysctl -w net.ipv4.conf.all.forwarding=1 >/dev/null
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
start_dhcpd() {
|
|
|
|
# Run DHCPv4 server
|
2023-08-20 15:22:11 +02:00
|
|
|
if ! is_dhcpd4_running; then
|
|
|
|
echo "hotspot ${wifi_device}: Start the DHCPv4 server (dnsmasq)"
|
|
|
|
dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv4-ssid-${wifi_device}.conf -p0 -x /run/dnsmasq/dnsmasq-dhcpv4-ssid-${wifi_device}.pid
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2014-12-26 18:58:58 +01:00
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
# Run DHCPv6 server
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix && ! is_dhcpd6_running; then
|
|
|
|
echo "hotspot ${wifi_device}: Start the NDP and DHCPv6 server (dnsmasq)"
|
|
|
|
dnsmasq -C /etc/dnsmasq.dhcpd/dhcpdv6-ssid-${wifi_device}.conf -p0 -x /run/dnsmasq/dnsmasq-dhcpv6-ssid-${wifi_device}.pid
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2014-12-26 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
2021-11-15 23:45:27 +01:00
|
|
|
configure_hostapd() {
|
2021-11-16 00:20:13 +01:00
|
|
|
local ethaddr=$(ip link show dev "${wifi_device}" | grep link/ether | awk -F: '{ printf "02:%s:%s:%s:%s:00", $2, $3, $4, $5 }')
|
|
|
|
ip link set addr "${ethaddr}" dev "${wifi_device}"
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
## Unsetters
|
|
|
|
|
|
|
|
unset_nat() {
|
2021-11-16 00:20:13 +01:00
|
|
|
local gateway_interface=${1}
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2021-11-16 00:20:13 +01:00
|
|
|
iptables -w -t nat -D POSTROUTING -o "${gateway_interface}" -j MASQUERADE
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
unset_ipaddr() {
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_ip4nataddr_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Unset IPv4 NAT address"
|
|
|
|
ip address delete "${ip4_nat_prefix}.1/24" dev "${wifi_device}"
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2015-05-02 14:54:08 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix && is_ip6addr_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Unset IPv6 address"
|
|
|
|
ip address delete "$(ip6addrfromdelegatedprefix)/64" dev "${wifi_device}"
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2014-12-26 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
unset_ipfirewall() {
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix && [[ "${ip6_firewall}" -eq 1 ]] && is_ip6firewall_set; then
|
|
|
|
echo "hotspot ${wifi_device}: Unset IPv6 firewalling"
|
|
|
|
ip6tables -w -D FORWARD -i "${wifi_device}" -j ACCEPT
|
|
|
|
ip6tables -w -D FORWARD -o "${wifi_device}" -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
|
|
|
|
ip6tables -w -D FORWARD -o "${wifi_device}" -j DROP
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2015-07-24 23:48:24 +02:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
unset_forwarding() {
|
2021-11-16 00:20:13 +01:00
|
|
|
sysctl -w net.ipv6.conf.all.forwarding=0 >/dev/null
|
|
|
|
sysctl -w net.ipv4.conf.all.forwarding=0 >/dev/null
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
stop_dhcpd() {
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_dhcpd6_running; then
|
|
|
|
echo "hotspot ${wifi_device}: Stop the NDP and DHCPv6 server (dnsmasq)"
|
|
|
|
kill $(cat /run/dnsmasq/dnsmasq-dhcpdv6-ssid-${wifi_device}.pid)
|
|
|
|
rm -f /run/dnsmasq/dnsmasq-dhcpdv6-ssid-${wifi_device}.pid
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_dhcpd4_running; then
|
|
|
|
echo "hotspot ${wifi_device}: Stop the DHCPv4 server (dnsmasq)"
|
|
|
|
kill $(cat /run/dnsmasq/dnsmasq-dhcpdv4-ssid-${wifi_device}.pid)
|
|
|
|
rm -f /run/dnsmasq/dnsmasq-dhcpdv4-ssid-${wifi_device}.pid
|
2021-11-16 00:46:09 +01:00
|
|
|
fi
|
2015-05-02 17:41:54 +02:00
|
|
|
}
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
stop_hostapd() {
|
2021-11-16 00:20:13 +01:00
|
|
|
systemctl stop hostapd
|
2014-11-09 00:40:40 +01:00
|
|
|
}
|
|
|
|
|
2014-12-28 23:27:39 +01:00
|
|
|
if [ "$1" != restart ]; then
|
2014-11-25 21:05:24 +01:00
|
|
|
|
2021-11-16 00:20:13 +01:00
|
|
|
# Variables
|
|
|
|
|
|
|
|
echo -n "Retrieving Yunohost settings... "
|
|
|
|
|
|
|
|
service_enabled=$(systemctl is-enabled ynh-hotspot)
|
2023-08-20 15:22:11 +02:00
|
|
|
wifi_device=$(ynh_app_setting_get hotspot wifi_device)
|
|
|
|
wifi_channel=$(ynh_app_setting_get hotspot wifi_channel)
|
|
|
|
|
|
|
|
wifi_ssid=$(ynh_app_setting_get hotspot wifi_ssid)
|
|
|
|
wifi_secure=$(ynh_app_setting_get hotspot wifi_secure)
|
|
|
|
wifi_passphrase=$(ynh_app_setting_get hotspot wifi_passphrase)
|
|
|
|
ip6_firewall=$(ynh_app_setting_get hotspot ip6_firewall)
|
2023-08-20 16:20:20 +02:00
|
|
|
ip6_dns=$(ynh_app_setting_get hotspot ip6_dns)
|
2023-08-20 15:22:11 +02:00
|
|
|
ip6_net=$(ynh_app_setting_get hotspot ip6_net)
|
2023-08-20 16:20:20 +02:00
|
|
|
ip4_dns=$(ynh_app_setting_get hotspot ip4_dns)
|
2023-08-20 15:22:11 +02:00
|
|
|
ip4_nat_prefix=$(ynh_app_setting_get hotspot ip4_nat_prefix)
|
2015-07-24 20:56:19 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
old_gateway_interface=$(ynh_app_setting_get hotspot gateway_interface)
|
2021-11-16 00:20:13 +01:00
|
|
|
new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
|
2015-05-12 09:30:55 +02:00
|
|
|
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "OK"
|
2014-11-17 23:44:18 +01:00
|
|
|
fi
|
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
# Script
|
|
|
|
|
|
|
|
case "$1" in
|
2021-11-16 00:20:13 +01:00
|
|
|
start)
|
2014-11-09 00:40:40 +01:00
|
|
|
if is_running; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Already started"
|
|
|
|
exit 0
|
2023-08-20 15:22:11 +02:00
|
|
|
elif [[ "${service_enabled}" != "enabled" ]]; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Not starting because hotspod service is disabled"
|
|
|
|
exit 1
|
2021-11-16 00:16:13 +01:00
|
|
|
fi
|
2020-09-24 00:07:43 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -z "${wifi_device}" ]]; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
|
|
|
|
exit 1
|
2021-11-16 00:16:13 +01:00
|
|
|
fi
|
2020-09-24 00:07:43 +02:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
echo "[hotspot] Starting..."
|
|
|
|
touch /tmp/.ynh-hotspot-started
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
# Check old state of the ipv4 NAT settings
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -n "${old_gateway_interface}" ]] && [[ "${new_gateway_interface}" != "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
|
2021-11-16 00:20:13 +01:00
|
|
|
unset_nat "${old_gateway_interface}"
|
2021-11-16 00:16:13 +01:00
|
|
|
fi
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
# Set ipv4 NAT
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -n "${new_gateway_interface}" ]] && ! is_nat_set "${new_gateway_interface}"; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Set NAT"
|
|
|
|
set_nat "${new_gateway_interface}"
|
2021-11-16 00:16:13 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Set forwarding for ipv6 and ipv4
|
2021-11-16 00:46:09 +01:00
|
|
|
echo "Set forwarding"
|
|
|
|
set_forwarding
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
# Run hostapd
|
|
|
|
if ! is_hostapd_running; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Configuring hostapd"
|
|
|
|
configure_hostapd
|
2021-11-16 00:16:13 +01:00
|
|
|
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Starting hostapd..."
|
|
|
|
if ! systemctl start hostapd; then
|
|
|
|
journalctl -u hostapd -n 100 --no-hostname --no-pager
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-04-26 21:34:11 +02:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
sleep 1
|
|
|
|
fi
|
2015-04-26 21:34:11 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
set_ipaddr
|
|
|
|
set_ipfirewall
|
|
|
|
start_dhcpd
|
2014-11-16 23:27:36 +01:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
# Update dynamic settings
|
2023-08-20 15:22:11 +02:00
|
|
|
ynh_app_setting_set hotspot gateway_interface "${new_gateway_interface}"
|
2021-11-16 00:20:13 +01:00
|
|
|
;;
|
|
|
|
stop)
|
2014-11-16 23:27:36 +01:00
|
|
|
echo "[hotspot] Stopping..."
|
2014-12-26 18:58:58 +01:00
|
|
|
rm -f /tmp/.ynh-hotspot-started
|
2014-11-09 00:40:40 +01:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -n "${old_gateway_interface}" ]] && is_nat_set "${old_gateway_interface}"; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Unset NAT"
|
|
|
|
unset_nat "${old_gateway_interface}"
|
2014-11-09 00:40:40 +01:00
|
|
|
fi
|
|
|
|
|
2021-11-16 00:46:09 +01:00
|
|
|
echo "Unset forwarding"
|
|
|
|
unset_forwarding
|
2015-04-26 21:34:11 +02:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
unset_ipaddr
|
|
|
|
unset_ipfirewall
|
|
|
|
stop_dhcpd
|
2014-12-26 18:58:58 +01:00
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
if is_hostapd_running; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "Stop hostapd"
|
|
|
|
stop_hostapd
|
2014-11-09 00:40:40 +01:00
|
|
|
fi
|
2021-11-16 00:20:13 +01:00
|
|
|
;;
|
|
|
|
restart)
|
2014-12-28 15:38:05 +01:00
|
|
|
$0 stop
|
|
|
|
$0 start
|
2021-11-16 00:20:13 +01:00
|
|
|
;;
|
|
|
|
status)
|
2014-11-09 00:40:40 +01:00
|
|
|
exitcode=0
|
2014-11-20 20:03:24 +01:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ "${service_enabled}" != "enabled" ]]; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[FAIL] Hotspot Service disabled"
|
|
|
|
exit 1
|
2015-03-14 15:44:48 +01:00
|
|
|
fi
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -z "${wifi_device}" ]]; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[FAIL] No wifi device selected. Make sure your wifi antenna is plugged-in / available and select it in the Hotspot admin"
|
|
|
|
exit 1
|
2020-09-24 00:07:43 +02:00
|
|
|
fi
|
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
echo "[INFO] Autodetected internet interface: ${new_gateway_interface} (last start: ${old_gateway_interface})"
|
2014-11-20 20:03:24 +01:00
|
|
|
|
2021-11-16 00:16:13 +01:00
|
|
|
if is_nat_set "${new_gateway_interface}"; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[ OK ] IPv4 NAT set"
|
2014-11-09 00:40:40 +01:00
|
|
|
else
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ -z "${new_gateway_interface}" ]]; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[INFO] No IPv4 NAT set (no internet interface)"
|
|
|
|
else
|
|
|
|
echo "[FAIL] No IPv4 NAT set"
|
|
|
|
fi
|
|
|
|
exitcode=1
|
2014-11-09 00:40:40 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
if is_forwarding_set; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[ OK ] IPv6/IPv4 forwarding set"
|
2014-11-09 00:40:40 +01:00
|
|
|
else
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[FAIL] No IPv6/IPv4 forwarding set"
|
|
|
|
exitcode=1
|
2014-11-09 00:40:40 +01:00
|
|
|
fi
|
|
|
|
|
2014-12-26 18:58:58 +01:00
|
|
|
if is_hostapd_running; then
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[ OK ] Hostapd is running"
|
2014-11-09 00:40:40 +01:00
|
|
|
else
|
2021-11-16 00:20:13 +01:00
|
|
|
echo "[FAIL] Hostapd is not running"
|
|
|
|
exitcode=1
|
2014-11-09 00:40:40 +01:00
|
|
|
fi
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if has_ip6delegatedprefix; then
|
|
|
|
echo "[INFO] hotspot ${wifi_device}: IPv6 delegated prefix found"
|
|
|
|
echo "[INFO] hotspot ${wifi_device}: IPv6 address computed from the delegated prefix: $(ip6addrfromdelegatedprefix)"
|
2021-11-16 00:20:13 +01:00
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_ip6addr_set; then
|
|
|
|
echo "[ OK ] hotspot ${wifi_device}: IPv6 address set"
|
2015-05-02 17:41:54 +02:00
|
|
|
else
|
2023-08-20 15:22:11 +02:00
|
|
|
echo "[FAIL] hotspot ${wifi_device}: No IPv6 address set"
|
|
|
|
exitcode=1
|
2015-05-02 17:41:54 +02:00
|
|
|
fi
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_ip6firewall_set; then
|
|
|
|
echo "[ OK ] hotspot ${wifi_device}: IPv6 firewalling set"
|
2015-07-24 23:48:24 +02:00
|
|
|
else
|
2023-08-20 15:22:11 +02:00
|
|
|
if [[ "${ip6_firewall}" -eq 1 ]]; then
|
|
|
|
echo "[FAIL] hotspot ${wifi_device}: No IPv6 firewalling set"
|
|
|
|
else
|
|
|
|
echo "[INFO] hotspot ${wifi_device}: No IPv6 firewalling set"
|
|
|
|
fi
|
2021-11-16 00:20:13 +01:00
|
|
|
exitcode=1
|
2015-07-24 23:48:24 +02:00
|
|
|
fi
|
|
|
|
|
2023-08-20 15:22:11 +02:00
|
|
|
if is_dhcpd6_running; then
|
|
|
|
echo "[ OK ] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are running"
|
2015-04-26 21:34:11 +02:00
|
|
|
else
|
2023-08-20 15:22:11 +02:00
|
|
|
echo "[FAIL] hotspot ${wifi_device}: NDP and DHCPv6 server (dnsmasq) are not running"
|
2021-11-16 00:20:13 +01:00
|
|
|
exitcode=1
|
2015-04-26 21:34:11 +02:00
|
|
|
fi
|
2023-08-20 15:22:11 +02:00
|
|
|
else
|
|
|
|
echo "[INFO] hotspot ${wifi_device}: No IPv6 delegated prefix found"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_dhcpd4_running; then
|
|
|
|
echo "[ OK ] hotspot ${wifi_device}: DHCPv4 server (dnsmasq) is running"
|
|
|
|
else
|
|
|
|
echo "[FAIL] hotspot ${zifi_device}: DHCPv4 (dnsmasq) is not running"
|
|
|
|
exitcode=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_ip4nataddr_set; then
|
|
|
|
echo "[ OK ] hotspot ${wifi_device}: IPv4 NAT address set"
|
|
|
|
else
|
|
|
|
echo "[FAIL] hotspot ${wifi_device}: No IPv4 NAT address set"
|
|
|
|
exitcode=1
|
|
|
|
fi
|
2015-04-26 21:34:11 +02:00
|
|
|
|
2014-11-09 00:40:40 +01:00
|
|
|
exit ${exitcode}
|
2021-11-16 00:20:13 +01:00
|
|
|
;;
|
|
|
|
*)
|
2014-12-28 15:38:05 +01:00
|
|
|
echo "Usage: $0 {start|stop|restart|status}"
|
2014-11-09 00:40:40 +01:00
|
|
|
exit 1
|
2021-11-16 00:20:13 +01:00
|
|
|
;;
|
2014-11-09 00:40:40 +01:00
|
|
|
esac
|
|
|
|
|
|
|
|
exit 0
|