forked from free5gc/free5gc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_multiUPF.sh
executable file
·146 lines (119 loc) · 3.64 KB
/
test_multiUPF.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/usr/bin/env bash
# Check OS
if [ -f /etc/os-release ]; then
# freedesktop.org and systemd
. /etc/os-release
OS=$NAME
VER=$VERSION_ID
else
# Fall back to uname, e.g. "Linux <version>", also works for BSD, etc.
OS=$(uname -s)
VER=$(uname -r)
echo "This Linux version is too old: $OS:$VER, we don't support!"
exit 1
fi
sudo -v
if [ $? == 1 ]
then
echo "Without root permission, you cannot run the test due to our test is using namespace"
exit 1
fi
UPF_NUM=6
while getopts 'om:' OPT;
do
case $OPT in
o) DUMP_NS=True;;
m)
SCALE=$OPTARG
if ! [[ $SCALE =~ ^[0-9]+$ ]]; then
echo "-m should be number"
exit 1
fi
if [[ $(( $SCALE )) -ge ${UPF_NUM} && $(( $SCALE )) -le 99 ]]; then
UPF_NUM=$(( $SCALE ))
else
echo "UL-CL UPF must larger then ${UPF_NUM} and less then 100"
exit 1
fi
;;
esac
done
shift $(($OPTIND - 1))
TEST_POOL="TestULCLAndMultiUPF"
if [[ ! "$1" =~ $TEST_POOL ]]
then
echo "Usage: $0 [ ${TEST_POOL//|/ | } ]"
exit 1
fi
GOPATH=$HOME/go
if [ $OS == "Ubuntu" ]; then
GOROOT=/usr/local/go
elif [ $OS == "Fedora" ]; then
GOROOT=/usr/lib/golang
fi
PATH=$PATH:$GOPATH/bin:$GOROOT/bin
UPFNS="UPFns"
CONF_DIR=$(cd config && pwd)
export GIN_MODE=release
# Setup bridge
sudo ip link add veth0 type veth peer name br-veth0
sudo ip link set veth0 up
# sudo ip addr add 60.60.0.1 dev lo
sudo ip addr add 10.200.200.1/24 dev veth0
sudo ip addr add 10.200.200.2/24 dev veth0
sudo ip link add free5gc-br type bridge
sudo ip link set free5gc-br up
sudo ip link set br-veth0 up
sudo ip link set br-veth0 master free5gc-br
sudo iptables -I FORWARD 1 -j ACCEPT
# Setup network namespace
for i in $(seq -f "%02g" 1 $UPF_NUM); do
sudo ip netns add "${UPFNS}${i}"
sudo ip link add "veth${i}" type veth peer name "br-veth${i}"
sudo ip link set "br-veth${i}" up
sudo ip link set "veth${i}" netns "${UPFNS}${i}"
sudo ip netns exec "${UPFNS}${i}" ip link set lo up
sudo ip netns exec "${UPFNS}${i}" ip link set "veth${i}" up
# sudo ip netns exec "${UPFNS}${i}" ip addr add "60.60.0.1${i}" dev lo
sudo ip netns exec "${UPFNS}${i}" ip addr add "10.200.200.1${i}/24" dev "veth${i}"
sudo ip link set "br-veth${i}" master free5gc-br
if [ ${DUMP_NS} ]; then
sudo ip netns exec "${UPFNS}${i}" tcpdump -i any -w "${UPFNS}${i}.pcap" &
sleep 1
TCPDUMP_PID_[${i}]=$(sudo ip netns pids "${UPFNS}${i}")
fi
cd NFs/upf/build && sudo -E ip netns exec "${UPFNS}${i}" ./bin/free5gc-upfd -f "${CONF_DIR}/multiUPF/upfcfg${i}.yaml" &
sleep 1
done
NF_LIST="nrf amf udr pcf udm nssf ausf"
F5GC_DIR="$(cd "$( dirname "$0" )" && pwd -P)"
for NF in ${NF_LIST}; do
$F5GC_DIR/bin/${NF} -${NF}cfg "${CONF_DIR}/${NF}cfg.yaml"&
PID_LIST+=($!)
done
$F5GC_DIR/bin/smf -smfcfg "${CONF_DIR}/multiUPF/smfcfg.ulcl.yaml" -uerouting "${CONF_DIR}/multiUPF/uerouting.yaml"&
PID_LIST+=($!)
cd test
$GOROOT/bin/go test -v -vet=off -run $1 -args noinit
for ((idx=${#PID_LIST[@]}-1;idx>=0;idx--)); do
sudo kill -SIGKILL ${PID_LIST[$idx]}
done
sleep 3
sudo killall -15 free5gc-upfd
sleep 1
cd ..
mkdir -p testkeylog
for KEYLOG in $(ls *sslkey.log); do
mv $KEYLOG testkeylog
done
# sudo ip addr del 60.60.0.1/32 dev lo
sudo ip link del veth0
sudo ip link del free5gc-br
sudo iptables -D FORWARD -j ACCEPT
for i in $(seq -f "%02g" 1 $UPF_NUM); do
if [ ${DUMP_NS} ]; then
sudo ip netns exec "${UPFNS}${i}" kill -SIGINT ${TCPDUMP_PID_[$i]}
fi
sudo ip netns del "${UPFNS}${i}"
sudo ip link del "br-veth${i}"
done