Modified vbrg install script for sdnc config
[demo.git] / vnfs / vCPE / scripts / v_brgemu_install.sh
1 #!/bin/bash
2
3 REPO_URL_BLOB=$(cat /opt/config/repo_url_blob.txt)
4 REPO_URL_ARTIFACTS=$(cat /opt/config/repo_url_artifacts.txt)
5 DEMO_ARTIFACTS_VERSION=$(cat /opt/config/demo_artifacts_version.txt)
6 INSTALL_SCRIPT_VERSION=$(cat /opt/config/install_script_version.txt)
7 VPP_SOURCE_REPO_URL=$(cat /opt/config/vpp_source_repo_url.txt)
8 VPP_SOURCE_REPO_BRANCH=$(cat /opt/config/vpp_source_repo_branch.txt)
9 VPP_PATCH_URL=$(cat /opt/config/vpp_patch_url.txt)
10 HC2VPP_SOURCE_REPO_URL=$(cat /opt/config/hc2vpp_source_repo_url.txt)
11 HC2VPP_SOURCE_REPO_BRANCH=$(cat /opt/config/hc2vpp_source_repo_branch.txt)
12 CLOUD_ENV=$(cat /opt/config/cloud_env.txt)
13
14 # Build states are:
15 # 'build' - just build the code
16 # 'done' - code is build, install and setup
17 # 'auto' - bulid, install and setup
18 BUILD_STATE="auto"
19
20 if [[ -f /opt/config/compile_state.txt ]]
21 then
22     BUILD_STATE=$(cat /opt/config/compile_state.txt)
23 fi
24
25 # Convert Network CIDR to Netmask
26 cdr2mask () {
27         # Number of args to shift, 255..255, first non-255 byte, zeroes
28         set -- $(( 5 - ($1 / 8) )) 255 255 255 255 $(( (255 << (8 - ($1 % 8))) & 255 )) 0 0 0
29         [ $1 -gt 1 ] && shift $1 || shift
30         echo ${1-0}.${2-0}.${3-0}.${4-0}
31 }
32
33 # OpenStack network configuration
34 if [[ $BUILD_STATE != "build" ]]
35 then
36     if [[ $CLOUD_ENV == "openstack" ]]
37     then
38         echo 127.0.0.1 $(hostname) >> /etc/hosts
39
40         # Allow remote login as root
41         mv /root/.ssh/authorized_keys /root/.ssh/authorized_keys.bk
42         cp /home/ubuntu/.ssh/authorized_keys /root/.ssh
43     fi
44 fi  # endif BUILD_STATE != "build"
45
46 if [[ $BUILD_STATE != "done" ]]
47 then
48     # Download required dependencies
49     echo "deb http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
50     echo "deb-src http://ppa.launchpad.net/openjdk-r/ppa/ubuntu $(lsb_release -c -s) main" >>  /etc/apt/sources.list.d/java.list
51     apt-get update
52     apt-get install --allow-unauthenticated -y wget openjdk-8-jdk apt-transport-https ca-certificates g++ libcurl4-gnutls-dev
53     sleep 1
54
55     # Install the tools required for download codes
56     apt-get install -y expect git patch make linux-image-extra-`uname -r`
57     #Download and build the VPP codes
58     cd /opt
59     git clone ${VPP_SOURCE_REPO_URL} -b ${VPP_SOURCE_REPO_BRANCH} vpp
60     wget -O VPP-Add-Option82-Nat-Filter-For-vBRG.patch ${VPP_PATCH_URL}
61
62     cd vpp
63     patch -p1 < ../VPP-Add-Option82-Nat-Filter-For-vBRG.patch
64     expect -c "
65             set timeout 60;
66             spawn make install-dep;
67             expect {
68                     \"Do you want to continue?*\" {send \"Y\r\"; interact}
69             }
70     "
71
72     cd build-root
73     ./bootstrap.sh
74     make V=0 PLATFORM=vpp TAG=vpp install-deb
75
76     # Install the VPP package
77     dpkg -i *.deb
78     systemctl stop vpp
79 fi  # endif BUILD_STATE != "done"
80
81 if [[ $BUILD_STATE != "build" ]]
82 then
83     # Auto-start configuration for the VPP
84     cat > /etc/vpp/startup.conf << EOF
85
86 unix {
87   nodaemon
88   log /tmp/vpp.log
89   full-coredump
90   cli-listen localhost:5002
91   startup-config /etc/vpp/setup.gate
92 }
93
94 api-trace {
95   on
96 }
97
98 api-segment {
99   gid vpp
100 }
101
102 cpu {
103         ## In the VPP there is one main thread and optionally the user can create worker(s)
104         ## The main thread and worker thread(s) can be pinned to CPU core(s) manually or automatically
105
106         ## Manual pinning of thread(s) to CPU core(s)
107
108         ## Set logical CPU core where main thread runs
109         # main-core 1
110
111         ## Set logical CPU core(s) where worker threads are running
112         # corelist-workers 2-3,18-19
113
114         ## Automatic pinning of thread(s) to CPU core(s)
115
116         ## Sets number of CPU core(s) to be skipped (1 ... N-1)
117         ## Skipped CPU core(s) are not used for pinning main thread and working thread(s).
118         ## The main thread is automatically pinned to the first available CPU core and worker(s)
119         ## are pinned to next free CPU core(s) after core assigned to main thread
120         # skip-cores 4
121
122         ## Specify a number of workers to be created
123         ## Workers are pinned to N consecutive CPU cores while skipping "skip-cores" CPU core(s)
124         ## and main thread's CPU core
125         # workers 2
126
127         ## Set scheduling policy and priority of main and worker threads
128
129         ## Scheduling policy options are: other (SCHED_OTHER), batch (SCHED_BATCH)
130         ## idle (SCHED_IDLE), fifo (SCHED_FIFO), rr (SCHED_RR)
131         # scheduler-policy fifo
132
133         ## Scheduling priority is used only for "real-time policies (fifo and rr),
134         ## and has to be in the range of priorities supported for a particular policy
135         # scheduler-priority 50
136 }
137
138 # dpdk {
139         ## Change default settings for all intefaces
140         # dev default {
141                 ## Number of receive queues, enables RSS
142                 ## Default is 1
143                 # num-rx-queues 3
144
145                 ## Number of transmit queues, Default is equal
146                 ## to number of worker threads or 1 if no workers treads
147                 # num-tx-queues 3
148
149                 ## Number of descriptors in transmit and receive rings
150                 ## increasing or reducing number can impact performance
151                 ## Default is 1024 for both rx and tx
152                 # num-rx-desc 512
153                 # num-tx-desc 512
154
155                 ## VLAN strip offload mode for interface
156                 ## Default is off
157                 # vlan-strip-offload on
158         # }
159
160         ## Whitelist specific interface by specifying PCI address
161         # dev 0000:02:00.0
162         ## Whitelist specific interface by specifying PCI address and in
163         ## addition specify custom parameters for this interface
164         # dev 0000:02:00.1 {
165         #       num-rx-queues 2
166         # }
167
168         ## Change UIO driver used by VPP, Options are: igb_uio, vfio-pci
169         ## and uio_pci_generic (default)
170         # uio-driver vfio-pci
171
172         ## Disable mutli-segment buffers, improves performance but
173         ## disables Jumbo MTU support
174         # no-multi-seg
175
176         ## Increase number of buffers allocated, needed only in scenarios with
177         ## large number of interfaces and worker threads. Value is per CPU socket.
178         ## Default is 16384
179         # num-mbufs 128000
180
181         ## Change hugepages allocation per-socket, needed only if there is need for
182         ## larger number of mbufs. Default is 256M on each detected CPU socket
183         # socket-mem 2048,2048
184 # }
185
186 EOF
187
188     #Get list of network device PCI bus addresses
189     get_nic_pci_list() {
190         while read -r line ; do
191             if [ "$line" != "${line#*network device}" ]; then
192                  echo -n "${line%% *} "
193             fi
194         done < <(lspci)
195     }
196
197     NICS=$(get_nic_pci_list)
198     NICS=`echo ${NICS} | sed 's/[0]\+\([0-9]\)/\1/g' | sed 's/[.:]/\//g'`
199     echo $NICS
200
201     BRG_BNG_NIC=GigabitEthernet`echo ${NICS} | cut -d " " -f 2`  # second interface in list
202     echo $BRG_BNG_NIC > /opt/config/brg_nic.txt
203
204
205     cat > /etc/vpp/setup.gate << EOF
206 set int state ${BRG_BNG_NIC} up
207 set dhcp client intfc ${BRG_BNG_NIC} hostname brg-emulator
208
209 tap connect lstack
210 set int state tap-0 up
211
212 set interface l2 bridge tap-0 10 0
213 set bridge-domain arp term 10
214 EOF
215
216 echo "sdnc_ip: $(cat /opt/config/sdnc_ip.txt)" > /opt/config/ip.txt
217 echo "hcip: 192.168.4.20" >> /opt/config/ip.txt
218
219
220     cat > /opt/bind_nic.sh << 'EOF'
221 #!/bin/bash
222 while :
223 do
224         if [[ ! $(ps -aux | grep [[:alnum:]]*/vpp/startup.conf | wc -l) = 2 ]];
225         then
226                 echo "vpp not running"
227         else
228                 break
229         fi
230 done
231
232
233 BRG_BNG_NIC=$(cat /opt/config/brg_nic.txt)
234 sdnc_ip=$(cat /opt/config/sdnc_ip.txt)
235
236 vppctl tap connect tap0
237 sleep 3
238 vppctl set int state tap-1 up
239 vppctl set int ip addr tap-1 20.0.0.40/24
240 ifconfig tap0 192.168.4.20/24
241 route add -host $sdnc_ip tap0
242 route add -host 20.0.0.40 tap0
243 vppctl ip route add 192.168.4.0/24 via tap-1
244 vppctl set interface snat in tap-1 out ${BRG_BNG_NIC}
245 vppctl snat add interface address ${BRG_BNG_NIC}
246
247 #Get vBNG ip addr
248 output=$(vppctl show dhcp client)
249 vbng_ip=${output##*gw }
250
251 vppctl ip route add $vbng_ip/32 via $vbng_ip ${BRG_BNG_NIC}
252 vppctl ip route add $sdnc_ip/32 via $vbng_ip ${BRG_BNG_NIC}
253
254 #Get HW addr of tap-1
255 while read -r hw
256 do
257     if [[ "$hw" = tap-1* ]];
258     then
259         read -r hw
260         hw_addr=${hw##* }
261         break
262     fi
263 done < <(vppctl show hardware)
264 arp -s $sdnc_ip $hw_addr
265 arp -s 20.0.0.40 $hw_addr
266
267 #Get HW addr of tap0
268 var=$(ifconfig tap0)
269 var=${var##*HWaddr}
270 var=${var%inet*}
271 tap0_addr=${var%inet*}
272
273 vppctl set ip arp tap-1 192.168.4.20 $tap0_addr
274
275 EOF
276     chmod +x /opt/bind_nic.sh
277
278     #set nat rule
279     cat > /opt/set_nat.sh << 'EOF'
280 #! /bin/bash
281
282 while :
283 do
284     if [[ ! $(ps -aux | grep [[:alnum:]]*/vpp/startup.conf | wc -l) = 2 ]];
285     then
286         #echo "vpp not running"
287         continue
288     fi
289
290     flag=0
291     while read -r line
292     do
293         if [ flag = 0 ];
294         then
295             re=${line#*/[0-9]/[0-9]}
296             if [ "$line" != "$re" ];
297             then
298                 flag=1
299             else
300                 flag=0
301                 continue
302             fi
303         else
304             ip=${line%/*}
305             if [[ $ip = *\.*\.*\.* ]];
306             then
307                 #echo "ip address is $ip"
308                 if [ ! -f /opt/config/ip.txt ];
309                 then
310                     echo "file /opt/config/ip.txt doesn't exists"
311                     continue
312                 fi
313                 while read -r tap_ip
314                 do
315                     if [[ $tap_ip = hcip* ]];
316                     then
317                         tap_ip=${tap_ip#*" "}
318                         echo "hc tap ip address is $tap_ip"
319                         vppctl snat add static mapping tcp local $tap_ip 8183 external $ip 8183
320                         exit 0
321                     fi
322                 done < /opt/config/ip.txt
323             else
324                 if [[ ! $ip = */[0-9] ]];
325                 then
326                     flag=0
327                     #echo "not correct"
328                 fi
329             fi
330         fi
331     done < <(vppctl show int addr)
332     sleep 1
333 done
334 EOF
335     chmod +x /opt/set_nat.sh
336 fi  # endif BUILD_STATE != "build"
337
338 if [[ $BUILD_STATE != "done" ]]
339 then
340
341     # Download and install HC2VPP from source
342     cd /opt
343     git clone ${HC2VPP_SOURCE_REPO_URL} -b ${HC2VPP_SOURCE_REPO_BRANCH} hc2vpp
344
345     apt-get -f -y install
346     apt-get install -y maven
347     mkdir -p /root/.m2
348     cat > ~/.m2/settings.xml << EOF
349 <?xml version="1.0" encoding="UTF-8"?>
350 <!-- vi: set et smarttab sw=2 tabstop=2: -->
351 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
352   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
353   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
354
355   <profiles>
356     <profile>
357    <id>fd.io-release</id>
358       <repositories>
359         <repository>
360           <id>fd.io-mirror</id>
361           <name>fd.io-mirror</name>
362           <url>https://nexus.fd.io/content/groups/public/</url>
363           <releases>
364             <enabled>true</enabled>
365             <updatePolicy>never</updatePolicy>
366           </releases>
367           <snapshots>
368             <enabled>false</enabled>
369           </snapshots>
370         </repository>
371       </repositories>
372       <pluginRepositories>
373         <pluginRepository>
374           <id>fd.io-mirror</id>
375           <name>fd.io-mirror</name>
376           <url>https://nexus.fd.io/content/repositories/public/</url>
377           <releases>
378             <enabled>true</enabled>
379             <updatePolicy>never</updatePolicy>
380           </releases>
381           <snapshots>
382             <enabled>false</enabled>
383           </snapshots>
384         </pluginRepository>
385       </pluginRepositories>
386     </profile>
387
388     <profile>
389       <id>fd.io-snapshots</id>
390       <repositories>
391         <repository>
392           <id>fd.io-snapshot</id>
393           <name>fd.io-snapshot</name>
394           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
395           <releases>
396             <enabled>false</enabled>
397           </releases>
398           <snapshots>
399             <enabled>true</enabled>
400           </snapshots>
401         </repository>
402       </repositories>
403       <pluginRepositories>
404         <pluginRepository>
405             <id>fd.io-snapshot</id>
406           <name>fd.io-snapshot</name>
407           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
408           <releases>
409             <enabled>false</enabled>
410           </releases>
411           <snapshots>
412             <enabled>true</enabled>
413           </snapshots>
414         </pluginRepository>
415       </pluginRepositories>
416     </profile>
417     <profile>
418       <id>opendaylight-snapshots</id>
419       <repositories>
420         <repository>
421           <id>opendaylight-snapshot</id>
422           <name>opendaylight-snapshot</name>
423           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
424           <releases>
425             <enabled>false</enabled>
426           </releases>
427           <snapshots>
428             <enabled>true</enabled>
429           </snapshots>
430         </repository>
431       </repositories>
432       <pluginRepositories>
433         <pluginRepository>
434           <id>opendaylight-shapshot</id>
435           <name>opendaylight-snapshot</name>
436           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
437           <releases>
438             <enabled>false</enabled>
439           </releases>
440           <snapshots>
441             <enabled>true</enabled>
442           </snapshots>
443         </pluginRepository>
444       </pluginRepositories>
445     </profile>
446   </profiles>
447
448   <activeProfiles>
449     <activeProfile>fd.io-release</activeProfile>
450     <activeProfile>fd.io-snapshots</activeProfile>
451     <activeProfile>opendaylight-snapshots</activeProfile>
452   </activeProfiles>
453 </settings>
454 EOF
455
456     cd hc2vpp
457     mvn clean install
458     l_version=$(cat pom.xml | grep "<version>" | head -1)
459     l_version=$(echo "${l_version%<*}")
460     l_version=$(echo "${l_version#*>}")
461     mv vpp-integration/minimal-distribution/target/vpp-integration-distribution-${l_version}-hc/vpp-integration-distribution-${l_version} /opt/honeycomb
462     sed -i 's/127.0.0.1/0.0.0.0/g' /opt/honeycomb/config/honeycomb.json
463
464     # Disable automatic upgrades
465     if [[ $CLOUD_ENV != "rackspace" ]]
466     then
467         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
468         sed -i 's/\(APT::Periodic::Unattended-Upgrade\) "1"/\1 "0"/' /etc/apt/apt.conf.d/20auto-upgrades
469     fi
470 fi  # endif BUILD_STATE != "done"
471
472 if [[ $BUILD_STATE != "build" ]]
473 then
474     # Create systemctl service for Honeycomb
475     cat > /etc/systemd/system/honeycomb.service << EOF
476 [Unit]
477 Description=Honeycomb Agent for the VPP control plane
478 Documentation=https://wiki.fd.io/view/Honeycomb
479 Requires=vpp.service
480 After=vpp.service
481
482 [Service]
483 ExecStart=/opt/honeycomb/honeycomb
484 Restart=always
485 RestartSec=10
486
487 [Install]
488 WantedBy=multi-user.target
489 EOF
490     systemctl enable /etc/systemd/system/honeycomb.service
491
492     # Download DHCP config files
493     cd /opt
494     wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_brgemu_init.sh
495     wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_brgemu.sh
496     sed -i '/# Provides:/c\# Provides:     vbrg ' /opt/v_brgemu.sh
497     chmod +x v_brgemu_init.sh
498     chmod +x v_brgemu.sh
499     mv v_brgemu.sh /etc/init.d
500     update-rc.d v_brgemu.sh defaults
501
502     # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
503     if [[ $CLOUD_ENV != "rackspace" ]]
504     then
505         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
506         grub-mkconfig -o /boot/grub/grub.cfg
507         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
508         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
509         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
510         reboot
511     fi
512
513     ./v_brgemu_init.sh
514 fi  # endif BUILD_STATE != "build"