2012-05-28 03:15:02 +00:00
|
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_set_cache()
|
2012-12-16 18:22:02 +00:00
|
|
|
{
|
2012-12-16 20:17:18 +00:00
|
|
|
if [ -n "$3" ]; then
|
|
|
|
eval "export -- __NETWORK_CV_$1='$3'"
|
|
|
|
__NETWORK_CACHE="${__NETWORK_CACHE:+$__NETWORK_CACHE }__NETWORK_CV_$1"
|
|
|
|
elif json_get_var "__NETWORK_CV_$1" "$2"; then
|
|
|
|
__NETWORK_CACHE="${__NETWORK_CACHE:+$__NETWORK_CACHE }__NETWORK_CV_$1"
|
2012-12-16 18:22:02 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_export()
|
2012-12-16 18:22:02 +00:00
|
|
|
{
|
2012-12-16 20:17:18 +00:00
|
|
|
local __v="__NETWORK_CV_$2"
|
|
|
|
eval "export -- \"$1=\${$__v:+\$$__v$3}\"; [ -n \"\${$__v+x}\" ]"
|
2012-12-16 18:22:02 +00:00
|
|
|
}
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_parse_ifstatus()
|
2012-12-16 18:22:02 +00:00
|
|
|
{
|
2012-12-16 20:17:18 +00:00
|
|
|
local __iface="$1"
|
|
|
|
local __key="${__iface}"
|
|
|
|
local __tmp
|
|
|
|
local __old_ns
|
2012-12-16 18:22:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_export __tmp "${__key}__parsed" && return 0
|
|
|
|
__tmp="$(ubus call network.interface."$__iface" status 2>/dev/null)"
|
|
|
|
[ -n "$__tmp" ] || return 1
|
2012-12-16 18:22:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
json_set_namespace "network" __old_ns
|
|
|
|
json_load "$__tmp"
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_set_cache "${__key}__parsed" "" "1"
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
for __tmp in "" "_inactive"; do
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__key="${__key}${__tmp}"
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
# parse addresses
|
|
|
|
local __family
|
|
|
|
for __family in 4 6; do
|
2012-12-17 13:07:42 +00:00
|
|
|
if json_is_a "ipv${__family}_address" array; then
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
json_select "ipv${__family}_address"
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-17 13:07:42 +00:00
|
|
|
if json_is_a 1 object; then
|
2012-05-28 03:15:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
json_select 1
|
|
|
|
__network_set_cache "${__key}_address${__family}" address
|
|
|
|
__network_set_cache "${__key}_mask${__family}" mask
|
|
|
|
json_select ".."
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
json_select ".."
|
|
|
|
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2013-01-15 13:07:51 +00:00
|
|
|
# parse prefixes
|
|
|
|
if json_is_a "ipv6_prefix" array; then
|
|
|
|
json_select "ipv6_prefix"
|
|
|
|
|
|
|
|
if json_is_a 1 object; then
|
|
|
|
json_select 1
|
|
|
|
__network_set_cache "${__key}_prefix6_address" address
|
|
|
|
__network_set_cache "${__key}_prefix6_mask" mask
|
|
|
|
json_select ".."
|
|
|
|
fi
|
|
|
|
|
|
|
|
json_select ".."
|
|
|
|
fi
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
# parse routes
|
2012-12-17 13:07:42 +00:00
|
|
|
if json_is_a route array; then
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
json_select "route"
|
|
|
|
|
|
|
|
local __idx=1
|
2012-12-17 13:07:42 +00:00
|
|
|
while json_is_a "$__idx" object; do
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
json_select "$((__idx++))"
|
|
|
|
json_get_var __tmp target
|
|
|
|
|
|
|
|
case "${__tmp}" in
|
|
|
|
0.0.0.0)
|
|
|
|
__network_set_cache "${__key}_gateway4" nexthop
|
|
|
|
;;
|
|
|
|
::)
|
|
|
|
__network_set_cache "${__key}_gateway6" nexthop
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
json_select ".."
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
json_select ".."
|
2012-05-28 03:15:02 +00:00
|
|
|
|
|
|
|
fi
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
# parse dns info
|
|
|
|
local __field
|
|
|
|
for __field in "dns_server" "dns_search"; do
|
2012-12-17 13:07:42 +00:00
|
|
|
if json_is_a "$__field" array; then
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
json_select "$__field"
|
|
|
|
|
|
|
|
local __idx=1
|
|
|
|
local __dns=""
|
|
|
|
|
2012-12-17 13:07:42 +00:00
|
|
|
while json_is_a "$__idx" string; do
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
json_get_var __tmp "$((__idx++))"
|
|
|
|
__dns="${__dns:+$__dns }$__tmp"
|
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
json_select ".."
|
|
|
|
|
|
|
|
if [ -n "$__dns" ]; then
|
|
|
|
__network_set_cache "${__key}_${__field}" "" "$__dns"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# parse up state, device and physdev
|
|
|
|
for __field in "up" "l3_device" "device"; do
|
|
|
|
if json_get_type __tmp "$__field"; then
|
|
|
|
__network_set_cache "${__key}_${__field}" "$__field"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# descend into inactive table
|
2012-12-17 13:07:42 +00:00
|
|
|
json_is_a "inactive" object && json_select "inactive"
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
done
|
|
|
|
|
|
|
|
json_cleanup
|
|
|
|
json_set_namespace "$__old_ns"
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
__network_ipaddr()
|
|
|
|
{
|
|
|
|
local __var="$1"
|
|
|
|
local __iface="$2"
|
|
|
|
local __family="$3"
|
|
|
|
local __prefix="$4"
|
|
|
|
local __tmp
|
|
|
|
|
|
|
|
__network_parse_ifstatus "$__iface" || return 1
|
|
|
|
|
|
|
|
if [ $__prefix -eq 1 ]; then
|
|
|
|
__network_export __tmp "${__iface}_mask${__family}" && \
|
|
|
|
__network_export "$__var" "${__iface}_address${__family}" "/$__tmp"
|
|
|
|
return $?
|
2012-05-28 03:15:02 +00:00
|
|
|
fi
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_export "$__var" "${__iface}_address${__family}"
|
|
|
|
return $?
|
|
|
|
|
2012-05-28 03:15:02 +00:00
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# determine IPv4 address of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-28 03:15:02 +00:00
|
|
|
network_get_ipaddr() { __network_ipaddr "$1" "$2" 4 0; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# determine IPv6 address of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-28 03:15:02 +00:00
|
|
|
network_get_ipaddr6() { __network_ipaddr "$1" "$2" 6 0; }
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# determine IPv4 subnet of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-28 03:15:02 +00:00
|
|
|
network_get_subnet() { __network_ipaddr "$1" "$2" 4 1; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# determine IPv6 subnet of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-28 03:15:02 +00:00
|
|
|
network_get_subnet6() { __network_ipaddr "$1" "$2" 6 1; }
|
2012-05-28 03:24:56 +00:00
|
|
|
|
2013-01-15 13:07:51 +00:00
|
|
|
# determine IPv6 prefix
|
|
|
|
network_get_prefix6() {
|
2013-01-21 18:54:58 +00:00
|
|
|
local __var="$1"
|
2013-01-15 13:07:51 +00:00
|
|
|
local __iface="$2"
|
|
|
|
local __address
|
|
|
|
local __mask
|
|
|
|
|
|
|
|
__network_parse_ifstatus "$__iface" || return 1
|
2013-01-21 18:54:58 +00:00
|
|
|
__network_export __mask "${__iface}_prefix6_mask" || return 1
|
2013-01-21 19:02:38 +00:00
|
|
|
__network_export __var "${__iface}_prefix6_address" "/$__mask"
|
2013-01-21 18:54:58 +00:00
|
|
|
return $?
|
2013-01-15 13:07:51 +00:00
|
|
|
}
|
|
|
|
|
2012-05-28 03:24:56 +00:00
|
|
|
|
2012-06-17 11:50:50 +00:00
|
|
|
__network_gateway()
|
|
|
|
{
|
|
|
|
local __var="$1"
|
|
|
|
local __iface="$2"
|
|
|
|
local __family="$3"
|
2012-12-16 20:17:18 +00:00
|
|
|
local __inactive="$4"
|
2012-12-16 18:22:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_parse_ifstatus "$__iface" || return 1
|
2012-12-16 18:22:02 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
if [ "$__inactive" = 1 -o "$__inactive" = "true" ]; then
|
|
|
|
__network_export "$__var" "${__iface}_inactive_gateway${__family}" && \
|
|
|
|
return 0
|
|
|
|
fi
|
2012-06-17 11:50:50 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_export "$__var" "${__iface}_gateway${__family}"
|
|
|
|
return $?
|
2012-06-17 11:50:50 +00:00
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# determine IPv4 gateway of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
|
|
|
# 3: consider inactive gateway if "true" (optional)
|
|
|
|
network_get_gateway() { __network_gateway "$1" "$2" 4 "${3:-0}"; }
|
|
|
|
|
|
|
|
# determine IPv6 gateway of given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
|
|
|
# 3: consider inactive gateway if "true" (optional)
|
|
|
|
network_get_gateway6() { __network_gateway "$1" "$2" 6 "${3:-0}"; }
|
2012-06-17 11:50:50 +00:00
|
|
|
|
|
|
|
|
2012-06-29 19:04:11 +00:00
|
|
|
__network_dns() {
|
|
|
|
local __var="$1"
|
|
|
|
local __iface="$2"
|
|
|
|
local __field="$3"
|
2012-12-16 20:17:18 +00:00
|
|
|
local __inactive="$4"
|
2012-06-29 19:04:11 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_parse_ifstatus "$__iface" || return 1
|
2012-06-29 19:04:11 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
if [ "$__inactive" = 1 -o "$__inactive" = "true" ]; then
|
|
|
|
__network_export "$__var" "${__iface}_inactive_${__field}" && \
|
|
|
|
return 0
|
2012-12-16 18:22:02 +00:00
|
|
|
fi
|
2012-12-16 20:17:18 +00:00
|
|
|
|
|
|
|
__network_export "$__var" "${__iface}_${__field}"
|
|
|
|
return $?
|
2012-06-29 19:04:11 +00:00
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# determine the DNS servers of the given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
|
|
|
# 3: consider inactive servers if "true" (optional)
|
|
|
|
network_get_dnsserver() { __network_dns "$1" "$2" dns_server "${3:-0}"; }
|
|
|
|
|
|
|
|
# determine the domains of the given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-12-16 20:17:18 +00:00
|
|
|
# 3: consider inactive domains if "true" (optional)
|
2012-12-16 18:22:02 +00:00
|
|
|
network_get_dnssearch() { __network_dns "$1" "$2" dns_search "${3:-0}"; }
|
2012-06-29 19:04:11 +00:00
|
|
|
|
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_wan()
|
|
|
|
{
|
2012-06-17 11:50:50 +00:00
|
|
|
local __var="$1"
|
|
|
|
local __family="$2"
|
2012-12-16 20:17:18 +00:00
|
|
|
local __inactive="$3"
|
2012-06-17 11:50:50 +00:00
|
|
|
local __iface
|
|
|
|
|
|
|
|
for __iface in $(ubus list | sed -ne 's/^network\.interface\.//p'); do
|
2012-12-16 20:17:18 +00:00
|
|
|
if [ "$__iface" != loopback ]; then
|
|
|
|
if __network_gateway "$__var" "$__iface" "$__family" "$__inactive"; then
|
|
|
|
eval "export -- \"$__var=$__iface\""
|
|
|
|
return 0
|
|
|
|
fi
|
2012-06-17 11:50:50 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
eval "export -- \"$__var=\""
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# find the logical interface which holds the current IPv4 default route
|
|
|
|
# 1: destination variable
|
2012-12-16 20:17:18 +00:00
|
|
|
# 2: consider inactive default routes if "true" (optional)
|
|
|
|
network_find_wan() { __network_wan "$1" 4 "${2:-0}"; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# find the logical interface which holds the current IPv6 default route
|
|
|
|
# 1: destination variable
|
2012-12-16 20:17:18 +00:00
|
|
|
# 2: consider inactive dafault routes if "true" (optional)
|
|
|
|
network_find_wan6() { __network_wan "$1" 6 "${2:-0}"; }
|
2012-06-17 11:50:50 +00:00
|
|
|
|
|
|
|
|
2012-05-29 00:20:16 +00:00
|
|
|
__network_device()
|
2012-05-28 03:24:56 +00:00
|
|
|
{
|
|
|
|
local __var="$1"
|
|
|
|
local __iface="$2"
|
2012-05-29 00:20:16 +00:00
|
|
|
local __field="$3"
|
2012-05-28 03:24:56 +00:00
|
|
|
|
2012-12-16 20:17:18 +00:00
|
|
|
__network_parse_ifstatus "$__iface" || return 1
|
|
|
|
__network_export "$__var" "${__iface}_${__field}"
|
|
|
|
return $?
|
2012-05-28 03:24:56 +00:00
|
|
|
}
|
2012-05-29 00:20:16 +00:00
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# test whether the given logical interface is running
|
|
|
|
# 1: interface
|
2012-05-29 02:03:25 +00:00
|
|
|
network_is_up()
|
|
|
|
{
|
|
|
|
local __up
|
|
|
|
__network_device __up "$1" up && [ $__up -eq 1 ]
|
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# determine the layer 3 linux network device of the given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-29 00:20:16 +00:00
|
|
|
network_get_device() { __network_device "$1" "$2" l3_device; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# determine the layer 2 linux network device of the given logical interface
|
|
|
|
# 1: destination variable
|
|
|
|
# 2: interface
|
2012-05-29 00:20:16 +00:00
|
|
|
network_get_physdev() { __network_device "$1" "$2" device; }
|
2012-06-07 14:55:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
__network_defer()
|
|
|
|
{
|
|
|
|
local __device="$1"
|
|
|
|
local __defer="$2"
|
|
|
|
|
|
|
|
json_init
|
|
|
|
json_add_string name "$__device"
|
|
|
|
json_add_boolean defer "$__defer"
|
|
|
|
|
|
|
|
ubus call network.device set_state "$(json_dump)" 2>/dev/null
|
|
|
|
}
|
|
|
|
|
2012-12-16 18:22:02 +00:00
|
|
|
# defer netifd actions on the given linux network device
|
|
|
|
# 1: device name
|
2012-06-07 14:55:26 +00:00
|
|
|
network_defer_device() { __network_defer "$1" 1; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# continue netifd actions on the given linux network device
|
|
|
|
# 1: device name
|
2012-06-07 14:55:26 +00:00
|
|
|
network_ready_device() { __network_defer "$1" 0; }
|
2012-12-16 18:22:02 +00:00
|
|
|
|
|
|
|
# flush the internal value cache to force re-reading values from ubus
|
|
|
|
network_flush_cache()
|
|
|
|
{
|
|
|
|
local __tmp
|
|
|
|
for __tmp in $__NETWORK_CACHE __NETWORK_CACHE; do
|
|
|
|
unset "$__tmp"
|
|
|
|
done
|
|
|
|
}
|