mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
148 lines
4.9 KiB
Bash
Executable file
148 lines
4.9 KiB
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2022 iopsys Software Solutions AB
|
|
# Author: AMIN Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
|
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
ROOT="$(dirname $0)"
|
|
. ${ROOT}/bbf_api
|
|
|
|
udpecho_error()
|
|
{
|
|
json_init
|
|
json_add_string "Status" "$1"
|
|
json_add_string "IPAddressUsed" ""
|
|
json_add_int "SuccessCount" "0"
|
|
json_add_int "FailureCount" "$2"
|
|
json_add_int "MinimumResponseTime" "9999"
|
|
json_add_int "AverageResponseTime" "0"
|
|
json_add_int "MaximumResponseTime" "0"
|
|
json_dump
|
|
|
|
# Store data in dmmap_diagnostics for both protocols (cwmp/usp)
|
|
[ "$3" == "both_proto" ] && {
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.DiagnosticState="$1"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.SuccessCount=0
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.FailureCount="$2"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.MinimumResponseTime=9999
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.AverageResponseTime=0
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.MaximumResponseTime=0
|
|
$UCI_COMMIT_BBF_DMMAP
|
|
}
|
|
}
|
|
|
|
udpecho_launch() {
|
|
input="$1"
|
|
|
|
json_load "${input}"
|
|
|
|
json_get_var host host
|
|
json_get_var port port
|
|
json_get_var iface iface
|
|
json_get_var ip_proto ip_proto
|
|
json_get_var nbr_of_rep nbr_of_rep
|
|
json_get_var timeout timeout
|
|
json_get_var dsize data_size
|
|
json_get_var dscp dscp
|
|
json_get_var inter_time inter_trans_time
|
|
json_get_var proto proto
|
|
|
|
# Assign default value
|
|
[ -z "${nbr_of_rep}" ] && nbr_of_rep=1
|
|
[ -z "${port}" ] && port=7
|
|
[ -z "${dsize}" ] && dsize=24
|
|
[ -z "${dscp}" ] && dscp=0
|
|
[ -n "${iface}" ] && device=$(ifstatus "${iface}" | jsonfilter -e @.device) && device="-i $device" || device=""
|
|
ip_addr_used=$(get_ip_addr_used "${ip_proto}" "${iface}")
|
|
if [ "$ip_proto" = "IPv4" ]; then ip_proto="4"; elif [ "$ip_proto" = "IPv6" ]; then ip_proto="6"; else ip_proto="4"; fi
|
|
[ -z "${timeout}" ] && timeout=1 || timeout=$((timeout/1000))
|
|
[ -z "${inter_time}" ] && inter_time=1 || inter_time=$((inter_time/1000))
|
|
tos=$((dscp<<2))
|
|
|
|
# Fail if host is empty
|
|
[ -z "${host}" ] && {
|
|
udpecho_error "Error_Internal" "${nbr_of_rep}" "${proto}"
|
|
return
|
|
}
|
|
|
|
[[ "$host" == *"."* ]] && ip_proto="4" || ip_proto="6"
|
|
|
|
micros=1000
|
|
success_count=0
|
|
avg_time_sum=0
|
|
min=9999999
|
|
max=0
|
|
i=0
|
|
|
|
while [ $i -lt "$nbr_of_rep" ]; do
|
|
i=$((i+1))
|
|
|
|
res=$(udpechoclientd -c 1 -t $timeout --host "$host" --data-length "$dsize" --port "$port" --protocol "$ip_proto" $device 2>&1)
|
|
|
|
ba=$(echo "$res" | grep "Can't Resolve Host Name")
|
|
[ -n "$ba" ] && {
|
|
udpecho_error "Error_CannotResolveHostName" "${nbr_of_rep}" "${proto}"
|
|
return
|
|
}
|
|
|
|
ba=$(echo "$res" | grep "RCVD")
|
|
[[ -z "$ba" && $((nbr_of_rep-i)) == 0 ]] && {
|
|
udpecho_error "Complete" "${nbr_of_rep}" "${proto}"
|
|
return
|
|
}
|
|
|
|
times=$(echo "$res" | grep "rtt")
|
|
[ -z "$times" ] && continue
|
|
|
|
sc1=$(echo "$res" | grep "Rcvd" | awk -F': ' '{print $3}' | awk -F'(' '{ print $1 }')
|
|
[ "$sc1" != 0 ] && sc1=1 || sc1=0
|
|
|
|
success_count=$((success_count+sc1))
|
|
max_time=$(echo "$times" | awk -F': ' '{ print $2 }' | awk -F'ms' '{ print $1 }')
|
|
min_time=$(echo "$times" | awk -F': ' '{ print $3 }' | awk -F'ms' '{ print $1 }')
|
|
avg_time=$(echo "$times" | awk -F': ' '{ print $4 }' | awk -F'ms' '{ print $1 }')
|
|
min_time=${min_time:-0}
|
|
avg_time=${avg_time:-0}
|
|
max_time=${max_time:-0}
|
|
min_time=$(echo "$min_time" "$micros" | awk '{printf "%3.0f\n",$1*$2}')
|
|
avg_time=$(echo "$avg_time" "$micros" | awk '{printf "%3.0f\n",$1*$2}')
|
|
max_time=$(echo "$max_time" "$micros" | awk '{printf "%3.0f\n",$1*$2}')
|
|
[ "$min_time" -lt "$min" ] && min="$min_time"
|
|
[ "$max_time" -gt "$max" ] && max="$max_time"
|
|
avg_time_sum=$((avg_time_sum+avg_time))
|
|
sleep $inter_time
|
|
done
|
|
|
|
failure_count=$((nbr_of_rep-success_count))
|
|
[ $success_count -gt 0 ] && avg_time=$((avg_time_sum/success_count)) || avg_time=0
|
|
min_time=$min
|
|
max_time=$max
|
|
|
|
json_init
|
|
json_add_string "Status" "Complete"
|
|
json_add_string "IPAddressUsed" "${ip_addr_used}"
|
|
json_add_int "SuccessCount" "${success_count}"
|
|
json_add_int "FailureCount" "${failure_count}"
|
|
json_add_int "MinimumResponseTime" "${min_time}"
|
|
json_add_int "AverageResponseTime" "${avg_time}"
|
|
json_add_int "MaximumResponseTime" "${max_time}"
|
|
json_dump
|
|
|
|
# Store data in dmmap_diagnostics for both protocols (cwmp/usp)
|
|
[ "${proto}" == "both_proto" ] && {
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.DiagnosticState="Complete"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.IPAddressUsed="${ip_addr_used}"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.SuccessCount="${success_count}"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.FailureCount="${failure_count}"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.MinimumResponseTime="${min_time}"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.AverageResponseTime="${avg_time}"
|
|
$UCI_SET_BBF_DMMAP dmmap_diagnostics.udpechodiag.MaximumResponseTime="${max_time}"
|
|
$UCI_COMMIT_BBF_DMMAP
|
|
}
|
|
}
|
|
|
|
if [ -n "$1" ]; then
|
|
udpecho_launch "$1"
|
|
else
|
|
udpecho_error "Error_Internal" "1"
|
|
fi
|