travelmate: update 1.0.2
* add new 'running' status * rework debug & status output * LuCI: refine status view * LuCI: add two missing eap auth variants Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
84c7ebaeec
commit
a196f2bb0e
3 changed files with 95 additions and 80 deletions
|
@ -6,7 +6,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=travelmate
|
PKG_NAME:=travelmate
|
||||||
PKG_VERSION:=1.0.1
|
PKG_VERSION:=1.0.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
PKG_LICENSE:=GPL-3.0+
|
PKG_LICENSE:=GPL-3.0+
|
||||||
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
||||||
|
|
|
@ -31,14 +31,30 @@ stop_service()
|
||||||
{
|
{
|
||||||
local rtfile="$(uci -q get travelmate.global.trm_rtfile)"
|
local rtfile="$(uci -q get travelmate.global.trm_rtfile)"
|
||||||
|
|
||||||
rtfile="${rtfile:="/tmp/trm_runtime.json"}"
|
rtfile="${rtfile:-"/tmp/trm_runtime.json"}"
|
||||||
> "${rtfile}"
|
> "${rtfile}"
|
||||||
rc_procd start_service
|
rc_procd start_service
|
||||||
}
|
}
|
||||||
|
|
||||||
status()
|
status()
|
||||||
{
|
{
|
||||||
rc_procd "${trm_script}" status
|
local key keylist value rtfile="$(uci_get travelmate.global.trm_rtfile)"
|
||||||
|
|
||||||
|
rtfile="${rtfile:-"/tmp/trm_runtime.json"}"
|
||||||
|
if [ -s "${rtfile}" ]
|
||||||
|
then
|
||||||
|
printf "%s\n" "::: travelmate runtime information"
|
||||||
|
json_load "$(cat "${rtfile}" 2>/dev/null)"
|
||||||
|
json_select data
|
||||||
|
json_get_keys keylist
|
||||||
|
for key in ${keylist}
|
||||||
|
do
|
||||||
|
json_get_var value "${key}"
|
||||||
|
printf " + %-18s : %s\n" "${key}" "${value}"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
printf "%s\n" "::: no travelmate runtime information available"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
service_triggers()
|
service_triggers()
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
LC_ALL=C
|
LC_ALL=C
|
||||||
PATH="/usr/sbin:/usr/bin:/sbin:/bin"
|
PATH="/usr/sbin:/usr/bin:/sbin:/bin"
|
||||||
trm_ver="1.0.1"
|
trm_ver="1.0.2"
|
||||||
trm_sysver="unknown"
|
trm_sysver="unknown"
|
||||||
trm_enabled=0
|
trm_enabled=0
|
||||||
trm_debug=0
|
trm_debug=0
|
||||||
|
@ -23,7 +23,7 @@ trm_radio=""
|
||||||
trm_rtfile="/tmp/trm_runtime.json"
|
trm_rtfile="/tmp/trm_runtime.json"
|
||||||
trm_wpa="$(command -v wpa_supplicant)"
|
trm_wpa="$(command -v wpa_supplicant)"
|
||||||
|
|
||||||
# f_envload: load travelmate environment
|
# load travelmate environment
|
||||||
#
|
#
|
||||||
f_envload()
|
f_envload()
|
||||||
{
|
{
|
||||||
|
@ -62,7 +62,7 @@ f_envload()
|
||||||
|
|
||||||
if [ ${trm_enabled} -ne 1 ]
|
if [ ${trm_enabled} -ne 1 ]
|
||||||
then
|
then
|
||||||
f_log "info " "travelmate is currently disabled, please set 'trm_enabled' to '1' to use this service"
|
f_log "info" "travelmate is currently disabled, please set 'trm_enabled' to '1' to use this service"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -71,9 +71,9 @@ f_envload()
|
||||||
trm_eap="$("${trm_wpa}" -veap >/dev/null 2>&1; printf "%u" ${?})"
|
trm_eap="$("${trm_wpa}" -veap >/dev/null 2>&1; printf "%u" ${?})"
|
||||||
}
|
}
|
||||||
|
|
||||||
# f_prepare: gather radio information & bring down all STA interfaces
|
# gather radio information & bring down all STA interfaces
|
||||||
#
|
#
|
||||||
f_prepare()
|
f_prep()
|
||||||
{
|
{
|
||||||
local config="${1}"
|
local config="${1}"
|
||||||
local mode="$(uci -q get wireless."${config}".mode)"
|
local mode="$(uci -q get wireless."${config}".mode)"
|
||||||
|
@ -98,35 +98,44 @@ f_prepare()
|
||||||
trm_stalist="${trm_stalist} ${config}_${radio}"
|
trm_stalist="${trm_stalist} ${config}_${radio}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
f_log "debug" "prepare: ${config}, mode: ${mode}, network: ${network}, radio: ${radio}, eap: ${trm_eap}, disabled: ${disabled}"
|
f_log "debug" "f_prep ::: config: ${config}, mode: ${mode}, network: ${network}, radio: ${radio}, disabled: ${disabled}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# f_check: check interface status
|
# check interface status
|
||||||
#
|
#
|
||||||
f_check()
|
f_check()
|
||||||
{
|
{
|
||||||
local ifname radio status cnt=1 mode="${1}"
|
local ifname radio dev_status cnt=1 mode="${1}" status="${2:-"false"}"
|
||||||
|
|
||||||
trm_ifstatus="false"
|
trm_ifstatus="false"
|
||||||
ubus call network reload
|
ubus call network reload
|
||||||
while [ ${cnt} -le ${trm_maxwait} ]
|
while [ ${cnt} -le ${trm_maxwait} ]
|
||||||
do
|
do
|
||||||
status="$(ubus -S call network.wireless status 2>/dev/null)"
|
dev_status="$(ubus -S call network.wireless status 2>/dev/null)"
|
||||||
if [ -n "${status}" ]
|
if [ -n "${dev_status}" ]
|
||||||
then
|
then
|
||||||
if [ "${mode}" = "dev" ]
|
if [ "${mode}" = "dev" ]
|
||||||
then
|
then
|
||||||
|
if [ "${trm_ifstatus}" != "${status}" ]
|
||||||
|
then
|
||||||
|
trm_ifstatus="${status}"
|
||||||
|
f_jsnup
|
||||||
|
fi
|
||||||
for radio in ${trm_radiolist}
|
for radio in ${trm_radiolist}
|
||||||
do
|
do
|
||||||
trm_ifstatus="$(printf "%s" "${status}" | jsonfilter -l1 -e "@.${radio}.up")"
|
trm_ifstatus="$(printf "%s" "${dev_status}" | jsonfilter -l1 -e "@.${radio}.up")"
|
||||||
if [ "${trm_ifstatus}" = "true" ] && [ -z "$(printf "%s" "${trm_devlist}" | grep -Fo " ${radio}")" ]
|
if [ "${trm_ifstatus}" = "true" ] && [ -z "$(printf "%s" "${trm_devlist}" | grep -Fo " ${radio}")" ]
|
||||||
then
|
then
|
||||||
trm_devlist="${trm_devlist} ${radio}"
|
trm_devlist="${trm_devlist} ${radio}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
ifname="${trm_devlist}"
|
if [ "${trm_radiolist}" = "${trm_devlist}" ] || [ ${cnt} -eq ${trm_maxwait} ] || [ "${status}" = "false" ]
|
||||||
|
then
|
||||||
|
ifname="${trm_devlist}"
|
||||||
|
break
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
ifname="$(printf "%s" "${status}" | jsonfilter -l1 -e '@.*.interfaces[@.config.mode="sta"].ifname')"
|
ifname="$(printf "%s" "${dev_status}" | jsonfilter -l1 -e '@.*.interfaces[@.config.mode="sta"].ifname')"
|
||||||
if [ -n "${ifname}" ]
|
if [ -n "${ifname}" ]
|
||||||
then
|
then
|
||||||
trm_ifstatus="$(ubus -S call network.interface dump 2>/dev/null | jsonfilter -l1 -e "@.interface[@.device=\"${ifname}\"].up")"
|
trm_ifstatus="$(ubus -S call network.interface dump 2>/dev/null | jsonfilter -l1 -e "@.interface[@.device=\"${ifname}\"].up")"
|
||||||
|
@ -134,55 +143,53 @@ f_check()
|
||||||
fi
|
fi
|
||||||
if [ "${mode}" = "initial" ] || [ "${trm_ifstatus}" = "true" ]
|
if [ "${mode}" = "initial" ] || [ "${trm_ifstatus}" = "true" ]
|
||||||
then
|
then
|
||||||
|
if [ "${mode}" != "initial" ] && [ "${trm_ifstatus}" != "${status}" ]
|
||||||
|
then
|
||||||
|
f_jsnup
|
||||||
|
fi
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
cnt=$((cnt+1))
|
cnt=$((cnt+1))
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
f_log "debug" "check: ${mode}, name: ${ifname}, status: ${trm_ifstatus}, count: ${cnt}, max-wait: ${trm_maxwait}, automatic: ${trm_automatic}"
|
f_log "debug" "f_check::: mode: ${mode}, name: ${ifname}, status: ${trm_ifstatus}, cnt: ${cnt}, max-wait: ${trm_maxwait}, automatic: ${trm_automatic}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# f_jsnupdate: update runtime information
|
# update runtime information
|
||||||
#
|
#
|
||||||
f_jsnupdate()
|
f_jsnup()
|
||||||
{
|
{
|
||||||
local iface="${1}" radio="${2}" essid="${3:-"-"}" bssid="${4:-"-"}"
|
local status iface="${1}" radio="${2}" essid="${3}" bssid="${4}"
|
||||||
|
|
||||||
|
if [ "${trm_ifstatus}" = "true" ]
|
||||||
|
then
|
||||||
|
status="connected"
|
||||||
|
elif [ "${trm_ifstatus}" = "false" ]
|
||||||
|
then
|
||||||
|
status="not connected"
|
||||||
|
elif [ "${trm_ifstatus}" = "running" ]
|
||||||
|
then
|
||||||
|
status="running"
|
||||||
|
elif [ "${trm_ifstatus}" = "error" ]
|
||||||
|
then
|
||||||
|
status="error"
|
||||||
|
fi
|
||||||
|
|
||||||
json_init
|
json_init
|
||||||
json_add_object "data"
|
json_add_object "data"
|
||||||
|
json_add_string "travelmate_status" "${status}"
|
||||||
json_add_string "travelmate_version" "${trm_ver}"
|
json_add_string "travelmate_version" "${trm_ver}"
|
||||||
json_add_string "station_connection" "${trm_ifstatus}"
|
json_add_string "station_id" "${essid:-"-"}/${bssid:-"-"}"
|
||||||
json_add_string "station_id" "${essid}/${bssid}"
|
json_add_string "station_interface" "${iface:-"n/a"}"
|
||||||
json_add_string "station_interface" "${iface}"
|
json_add_string "station_radio" "${radio:-"n/a"}"
|
||||||
json_add_string "station_radio" "${radio}"
|
|
||||||
json_add_string "last_rundate" "$(/bin/date "+%d.%m.%Y %H:%M:%S")"
|
json_add_string "last_rundate" "$(/bin/date "+%d.%m.%Y %H:%M:%S")"
|
||||||
json_add_string "system" "${trm_sysver}"
|
json_add_string "system" "${trm_sysver}"
|
||||||
json_close_object
|
json_close_object
|
||||||
json_dump > "${trm_rtfile}"
|
json_dump > "${trm_rtfile}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# f_status: output runtime information
|
# write to syslog
|
||||||
#
|
|
||||||
f_status()
|
|
||||||
{
|
|
||||||
local key keylist value
|
|
||||||
|
|
||||||
if [ -s "${trm_rtfile}" ]
|
|
||||||
then
|
|
||||||
printf "%s\n" "::: travelmate runtime information"
|
|
||||||
json_load "$(cat "${trm_rtfile}" 2>/dev/null)"
|
|
||||||
json_select data
|
|
||||||
json_get_keys keylist
|
|
||||||
for key in ${keylist}
|
|
||||||
do
|
|
||||||
json_get_var value "${key}"
|
|
||||||
printf " %-18s : %s\n" "${key}" "${value}"
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# f_log: write to syslog, exit on error
|
|
||||||
#
|
#
|
||||||
f_log()
|
f_log()
|
||||||
{
|
{
|
||||||
|
@ -191,16 +198,18 @@ f_log()
|
||||||
|
|
||||||
if [ -n "${log_msg}" ] && ([ "${class}" != "debug" ] || [ ${trm_debug} -eq 1 ])
|
if [ -n "${log_msg}" ] && ([ "${class}" != "debug" ] || [ ${trm_debug} -eq 1 ])
|
||||||
then
|
then
|
||||||
logger -t "travelmate-[${trm_ver}] ${class}" "${log_msg}"
|
logger -p "${class}" -t "travelmate-[${trm_ver}]" "${log_msg}"
|
||||||
if [ "${class}" = "error" ]
|
if [ "${class}" = "err" ]
|
||||||
then
|
then
|
||||||
logger -t "travelmate-[${trm_ver}] ${class}" "Please check 'https://github.com/openwrt/packages/blob/master/net/travelmate/files/README.md' (${trm_sysver})"
|
trm_ifstatus="error"
|
||||||
exit 255
|
f_jsnup
|
||||||
|
logger -p "${class}" -t "travelmate-[${trm_ver}]" "Please check 'https://github.com/openwrt/packages/blob/master/net/travelmate/files/README.md' (${trm_sysver})"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# f_main: main function for connection handling
|
# main function for connection handling
|
||||||
#
|
#
|
||||||
f_main()
|
f_main()
|
||||||
{
|
{
|
||||||
|
@ -209,15 +218,14 @@ f_main()
|
||||||
f_check "initial"
|
f_check "initial"
|
||||||
if [ "${trm_ifstatus}" != "true" ]
|
if [ "${trm_ifstatus}" != "true" ]
|
||||||
then
|
then
|
||||||
> "${trm_rtfile}"
|
|
||||||
config_load wireless
|
config_load wireless
|
||||||
config_foreach f_prepare wifi-iface
|
config_foreach f_prep wifi-iface
|
||||||
if [ -n "$(uci -q changes wireless)" ]
|
if [ -n "$(uci -q changes wireless)" ]
|
||||||
then
|
then
|
||||||
uci -q commit wireless
|
uci -q commit wireless
|
||||||
fi
|
fi
|
||||||
f_check "dev"
|
f_check "dev" "running"
|
||||||
f_log "debug" "main: ${trm_devlist}, sta-list: ${trm_stalist}"
|
f_log "debug" "f_main ::: iwinfo: ${trm_iwinfo}, eap_rc: ${trm_eap}, dev_list: ${trm_devlist}, sta_list: ${trm_stalist}"
|
||||||
for dev in ${trm_devlist}
|
for dev in ${trm_devlist}
|
||||||
do
|
do
|
||||||
cnt=1
|
cnt=1
|
||||||
|
@ -230,9 +238,7 @@ f_main()
|
||||||
raw_scan="$(${trm_iwinfo} "${dev}" scan)"
|
raw_scan="$(${trm_iwinfo} "${dev}" scan)"
|
||||||
essid_list="$(printf "%s" "${raw_scan}" | awk '/ESSID: "/{ORS=" ";if (!seen[$0]++) for(i=2; i<=NF; i++) print $i}')"
|
essid_list="$(printf "%s" "${raw_scan}" | awk '/ESSID: "/{ORS=" ";if (!seen[$0]++) for(i=2; i<=NF; i++) print $i}')"
|
||||||
bssid_list="$(printf "%s" "${raw_scan}" | awk '/Address: /{ORS=" ";if (!seen[$5]++) print $5}')"
|
bssid_list="$(printf "%s" "${raw_scan}" | awk '/Address: /{ORS=" ";if (!seen[$5]++) print $5}')"
|
||||||
f_log "debug" "main: ${trm_iwinfo}, dev: ${dev}"
|
f_log "debug" "f_main ::: dev: ${dev}, ssid_list: ${essid_list}, bssid_list: ${bssid_list}"
|
||||||
f_log "debug" "main: ${essid_list}"
|
|
||||||
f_log "debug" "main: ${bssid_list}"
|
|
||||||
if [ -n "${essid_list}" ] || [ -n "${bssid_list}" ]
|
if [ -n "${essid_list}" ] || [ -n "${bssid_list}" ]
|
||||||
then
|
then
|
||||||
for sta in ${trm_stalist}
|
for sta in ${trm_stalist}
|
||||||
|
@ -252,8 +258,8 @@ f_main()
|
||||||
if [ "${trm_ifstatus}" = "true" ]
|
if [ "${trm_ifstatus}" = "true" ]
|
||||||
then
|
then
|
||||||
uci -q commit wireless
|
uci -q commit wireless
|
||||||
f_log "info " "interface '${sta_iface}' on '${sta_radio}' connected to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${trm_sysver})"
|
f_log "info" "interface '${sta_iface}' on '${sta_radio}' connected to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${trm_sysver})"
|
||||||
f_jsnupdate "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
f_jsnup "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
||||||
return 0
|
return 0
|
||||||
elif [ ${trm_maxretry} -ne 0 ] && [ ${cnt} -eq ${trm_maxretry} ]
|
elif [ ${trm_maxretry} -ne 0 ] && [ ${cnt} -eq ${trm_maxretry} ]
|
||||||
then
|
then
|
||||||
|
@ -268,7 +274,7 @@ f_main()
|
||||||
fi
|
fi
|
||||||
uci -q commit wireless
|
uci -q commit wireless
|
||||||
f_check "dev"
|
f_check "dev"
|
||||||
f_log "info " "can't connect to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${cnt}/${trm_maxretry}), uplink disabled (${trm_sysver})"
|
f_log "info" "can't connect to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${cnt}/${trm_maxretry}), uplink disabled (${trm_sysver})"
|
||||||
else
|
else
|
||||||
if [ ${trm_maxretry} -eq 0 ]
|
if [ ${trm_maxretry} -eq 0 ]
|
||||||
then
|
then
|
||||||
|
@ -276,9 +282,9 @@ f_main()
|
||||||
fi
|
fi
|
||||||
uci -q revert wireless
|
uci -q revert wireless
|
||||||
f_check "dev"
|
f_check "dev"
|
||||||
f_log "info " "can't connect to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${cnt}/${trm_maxretry}) (${trm_sysver})"
|
f_log "info" "can't connect to uplink '${sta_essid:-"-"}/${sta_bssid:-"-"}' (${cnt}/${trm_maxretry}) (${trm_sysver})"
|
||||||
fi
|
fi
|
||||||
f_jsnupdate "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
f_jsnup "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
@ -289,7 +295,7 @@ f_main()
|
||||||
if [ ! -s "${trm_rtfile}" ]
|
if [ ! -s "${trm_rtfile}" ]
|
||||||
then
|
then
|
||||||
trm_ifstatus="false"
|
trm_ifstatus="false"
|
||||||
f_jsnupdate "n/a" "n/a"
|
f_jsnup
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [ ! -s "${trm_rtfile}" ]
|
if [ ! -s "${trm_rtfile}" ]
|
||||||
|
@ -299,7 +305,7 @@ f_main()
|
||||||
sta_essid="$(uci -q get wireless."${config}".ssid)"
|
sta_essid="$(uci -q get wireless."${config}".ssid)"
|
||||||
sta_bssid="$(uci -q get wireless."${config}".bssid)"
|
sta_bssid="$(uci -q get wireless."${config}".bssid)"
|
||||||
sta_iface="$(uci -q get wireless."${config}".network)"
|
sta_iface="$(uci -q get wireless."${config}".network)"
|
||||||
f_jsnupdate "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
f_jsnup "${sta_iface}" "${sta_radio}" "${sta_essid}" "${sta_bssid}"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -311,24 +317,17 @@ then
|
||||||
. "/lib/functions.sh"
|
. "/lib/functions.sh"
|
||||||
. "/usr/share/libubox/jshn.sh"
|
. "/usr/share/libubox/jshn.sh"
|
||||||
else
|
else
|
||||||
f_log "error" "system libraries not found"
|
f_log "err" "system libraries not found"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# handle different travelmate actions
|
# control travelmate actions
|
||||||
#
|
#
|
||||||
f_envload
|
f_envload
|
||||||
case "${1}" in
|
f_main
|
||||||
status)
|
while [ ${trm_automatic} -eq 1 ]
|
||||||
f_status
|
do
|
||||||
;;
|
sleep ${trm_timeout}
|
||||||
*)
|
f_envload
|
||||||
f_main
|
f_main
|
||||||
while [ ${trm_automatic} -eq 1 ]
|
done
|
||||||
do
|
|
||||||
sleep ${trm_timeout}
|
|
||||||
f_envload
|
|
||||||
f_main
|
|
||||||
done
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue