summaryrefslogtreecommitdiffstats
path: root/scripts/prep_app_test.sh
blob: 9aa86f4115416002d2cf170084f13badb63d367e (plain)
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
#!/bin/bash

set -x
DMM_DIR=`dirname $(readlink -f $0)`/..
LIB_PATH=$DMM_DIR/release/lib64/

mkdir -p $DMM_DIR/config/app_test
cd $DMM_DIR/config/app_test

#===========check hugepages=================
source $DMM_DIR/scripts/check_hugepage.sh

echo -e "\e[41m Preapring APP test directory.....\e[0m"

OS_ID=$(grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
if [ "$OS_ID" == "ubuntu" ]; then
	ifaddress1=$(ifconfig enp0s8 | grep 'inet addr' | cut -d: -f2 | awk '{print $1}')
	echo $ifaddress1
	ifaddress2=$(ifconfig enp0s9 | grep 'inet addr' | cut -d: -f2 | awk '{print $1}')
	echo $ifaddress2
elif [ "$OS_ID" == "centos" ]; then
	ifaddress1=$(ifconfig enp0s8 | grep 'inet' | cut -d: -f2 | awk '{print $2}')
	echo $ifaddress1
	ifaddress2=$(ifconfig enp0s9 | grep 'inet' | cut -d: -f2 | awk '{print $2}')
	echo $ifaddress2
fi

echo '{
        "default_stack_name": "kernel",
        "module_list": [
        {
                "stack_name": "kernel",
                "function_name": "kernel_stack_register",
                "libname": "./",
                "loadtype": "static",
                "deploytype": "1",
                "maxfd": "1024",
                "minfd": "0",
                "priorty": "1",
                "stackid": "0",
    },
  ]
}' | tee module_config.json

echo '{
    "modules": [
        {
            "name": "kernel",
            "ip_route": [
                "'$ifaddress1'/24",
                "'$ifaddress2'/24"
            ],
            "type_route": [
            ],
            "protocol_route": [
               {
                 "value": "1",
                 "attr": "0"
               },
               {
                 "value": "2",
                 "attr": "0"
               }
            ]
        }
  ]
}' | tee rd_config.json

cp -r ${DMM_DIR}/release/lib64/* .
cp -r ${DMM_DIR}/release/configure/* .
cp -r ${DMM_DIR}/release/bin/* .
chmod 775 *

#disable ASLR, othewise it may have some problems when mapping memory for secondary process
echo 0 > /proc/sys/kernel/randomize_va_space

sudo mkdir -p /var/run/ip_module/
sudo mkdir -p /var/log/nStack/ip_module/

export LD_LIBRARY_PATH=$LIB_PATH
export NSTACK_LOG_ON=DBG