0f2b06f5b8813d43d63e9dcb1cd5db9f6810756a
[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}" ];
192             then
193                  echo -n "${line%% *} "
194             fi
195         done < <(lspci)
196     }
197
198     NICS=$(get_nic_pci_list)
199     NICS=`echo ${NICS} | sed 's/[0]\+\([0-9]\)/\1/g' | sed 's/[.:]/\//g'`
200     echo $NICS
201
202     BRG_BNG_NIC=GigabitEthernet`echo ${NICS} | cut -d " " -f 2`  # second interface in list
203     echo $BRG_BNG_NIC > /opt/config/brg_nic.txt
204
205
206     cat > /etc/vpp/setup.gate << EOF
207 set int state ${BRG_BNG_NIC} up
208 set dhcp client intfc ${BRG_BNG_NIC} hostname brg-emulator
209 EOF
210
211 echo "sdnc_ip: $(cat /opt/config/sdnc_ip.txt)" > /opt/config/ip.txt
212 echo "hcip: 192.168.4.20" >> /opt/config/ip.txt
213
214
215     cat > /opt/bind_nic.sh << 'EOF'
216 #!/bin/bash
217 while :
218 do
219         if [[ ! $(ps -aux | grep [[:alnum:]]*/vpp/startup.conf | wc -l) = 2 ]];
220         then
221                 echo "vpp not running"
222         else
223                 break
224         fi
225 done
226
227
228 BRG_BNG_NIC=$(cat /opt/config/brg_nic.txt)
229 sdnc_ip=$(cat /opt/config/sdnc_ip.txt)
230
231 lstack_tap=$(vppctl tap connect lstack)
232 vppctl set int state $lstack_tap up
233
234 vppctl set interface l2 bridge $lstack_tap 10 0
235 vppctl set bridge-domain arp term 10
236
237 tap0_tap=$(vppctl tap connect tap0)
238 sleep 3
239 vppctl set int state $tap0_tap up
240 vppctl set int ip addr $tap0_tap 20.0.0.40/24
241 ifconfig tap0 192.168.4.20/24
242 route add -host $sdnc_ip tap0
243 route add -host 20.0.0.40 tap0
244 vppctl ip route add 192.168.4.0/24 via $tap0_tap
245 vppctl set interface snat in $tap0_tap out ${BRG_BNG_NIC}
246 vppctl snat add interface address ${BRG_BNG_NIC}
247
248 #Get HW addr of $tap0_tap
249 while read -r hw
250 do
251     if [[ "$hw" = $tap0_tap* ]];
252     then
253         read -r hw
254         hw_addr=${hw##* }
255         break
256     fi
257 done < <(vppctl show hardware)
258
259 arp -s $sdnc_ip $hw_addr
260 arp -s 20.0.0.40 $hw_addr
261
262 #Get HW addr of tap0
263 var=$(ifconfig tap0)
264 var=${var##*HWaddr}
265 var=${var%inet*}
266 tap0_addr=${var%inet*}
267
268 vppctl set ip arp $tap0_tap 192.168.4.20 $tap0_addr
269
270 EOF
271     chmod +x /opt/bind_nic.sh
272
273     #set nat rule
274     cat > /opt/set_nat.sh << 'EOF'
275 #! /bin/bash
276
277 while :
278 do
279     if [[ ! $(ps -aux | grep [[:alnum:]]*/vpp/startup.conf | wc -l) = 2 ]];
280     then
281         #echo "vpp not running"
282         continue
283     fi
284
285     flag=0
286     while read -r line
287     do
288         if [ flag = 0 ];
289         then
290             re=${line#*/[0-9]/[0-9]}
291             if [ "$line" != "$re" ];
292             then
293                 flag=1
294             else
295                 flag=0
296                 continue
297             fi
298         else
299             ip=${line%/*}
300             if [[ $ip = *\.*\.*\.* ]];
301             then
302                 #echo "ip address is $ip"
303                 if [ ! -f /opt/config/ip.txt ];
304                 then
305                     echo "file /opt/config/ip.txt doesn't exists"
306                     continue
307                 fi
308                 while read -r tap_ip
309                 do
310                     if [[ $tap_ip = hcip* ]];
311                     then
312                         tap_ip=${tap_ip#*" "}
313                         echo "hc tap ip address is $tap_ip"
314                         vppctl snat add static mapping tcp local $tap_ip 8183 external $ip 8183
315                         exit 0
316                     fi
317                 done < /opt/config/ip.txt
318             else
319                 if [[ ! $ip = */[0-9] ]];
320                 then
321                     flag=0
322                     #echo "not correct"
323                 fi
324             fi
325         fi
326     done < <(vppctl show int addr)
327     sleep 1
328 done
329 EOF
330     chmod +x /opt/set_nat.sh
331 fi  # endif BUILD_STATE != "build"
332
333 if [[ $BUILD_STATE != "done" ]]
334 then
335
336     # Download and install HC2VPP from source
337     cd /opt
338     git clone ${HC2VPP_SOURCE_REPO_URL} -b ${HC2VPP_SOURCE_REPO_BRANCH} hc2vpp
339
340     apt-get -f -y install
341     apt-get install -y maven
342     mkdir -p /root/.m2
343     cat > ~/.m2/settings.xml << EOF
344 <?xml version="1.0" encoding="UTF-8"?>
345 <!-- vi: set et smarttab sw=2 tabstop=2: -->
346 <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
347   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
348   xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
349
350   <profiles>
351     <profile>
352    <id>fd.io-release</id>
353       <repositories>
354         <repository>
355           <id>fd.io-mirror</id>
356           <name>fd.io-mirror</name>
357           <url>https://nexus.fd.io/content/groups/public/</url>
358           <releases>
359             <enabled>true</enabled>
360             <updatePolicy>never</updatePolicy>
361           </releases>
362           <snapshots>
363             <enabled>false</enabled>
364           </snapshots>
365         </repository>
366       </repositories>
367       <pluginRepositories>
368         <pluginRepository>
369           <id>fd.io-mirror</id>
370           <name>fd.io-mirror</name>
371           <url>https://nexus.fd.io/content/repositories/public/</url>
372           <releases>
373             <enabled>true</enabled>
374             <updatePolicy>never</updatePolicy>
375           </releases>
376           <snapshots>
377             <enabled>false</enabled>
378           </snapshots>
379         </pluginRepository>
380       </pluginRepositories>
381     </profile>
382
383     <profile>
384       <id>fd.io-snapshots</id>
385       <repositories>
386         <repository>
387           <id>fd.io-snapshot</id>
388           <name>fd.io-snapshot</name>
389           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
390           <releases>
391             <enabled>false</enabled>
392           </releases>
393           <snapshots>
394             <enabled>true</enabled>
395           </snapshots>
396         </repository>
397       </repositories>
398       <pluginRepositories>
399         <pluginRepository>
400             <id>fd.io-snapshot</id>
401           <name>fd.io-snapshot</name>
402           <url>https://nexus.fd.io/content/repositories/fd.io.snapshot/</url>
403           <releases>
404             <enabled>false</enabled>
405           </releases>
406           <snapshots>
407             <enabled>true</enabled>
408           </snapshots>
409         </pluginRepository>
410       </pluginRepositories>
411     </profile>
412     <profile>
413       <id>opendaylight-snapshots</id>
414       <repositories>
415         <repository>
416           <id>opendaylight-snapshot</id>
417           <name>opendaylight-snapshot</name>
418           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
419           <releases>
420             <enabled>false</enabled>
421           </releases>
422           <snapshots>
423             <enabled>true</enabled>
424           </snapshots>
425         </repository>
426       </repositories>
427       <pluginRepositories>
428         <pluginRepository>
429           <id>opendaylight-shapshot</id>
430           <name>opendaylight-snapshot</name>
431           <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
432           <releases>
433             <enabled>false</enabled>
434           </releases>
435           <snapshots>
436             <enabled>true</enabled>
437           </snapshots>
438         </pluginRepository>
439       </pluginRepositories>
440     </profile>
441   </profiles>
442
443   <activeProfiles>
444     <activeProfile>fd.io-release</activeProfile>
445     <activeProfile>fd.io-snapshots</activeProfile>
446     <activeProfile>opendaylight-snapshots</activeProfile>
447   </activeProfiles>
448 </settings>
449 EOF
450
451     cd hc2vpp
452     mvn clean install
453     l_version=$(cat pom.xml | grep "<version>" | head -1)
454     l_version=$(echo "${l_version%<*}")
455     l_version=$(echo "${l_version#*>}")
456     mv vpp-integration/minimal-distribution/target/vpp-integration-distribution-${l_version}-hc/vpp-integration-distribution-${l_version} /opt/honeycomb
457     sed -i 's/127.0.0.1/0.0.0.0/g' /opt/honeycomb/config/honeycomb.json
458
459     # Disable automatic upgrades
460     if [[ $CLOUD_ENV != "rackspace" ]]
461     then
462         echo "APT::Periodic::Unattended-Upgrade \"0\";" >> /etc/apt/apt.conf.d/10periodic
463         sed -i 's/\(APT::Periodic::Unattended-Upgrade\) "1"/\1 "0"/' /etc/apt/apt.conf.d/20auto-upgrades
464     fi
465 fi  # endif BUILD_STATE != "done"
466
467 if [[ $BUILD_STATE != "build" ]]
468 then
469     # Create systemctl service for Honeycomb
470     cat > /etc/systemd/system/honeycomb.service << EOF
471 [Unit]
472 Description=Honeycomb Agent for the VPP control plane
473 Documentation=https://wiki.fd.io/view/Honeycomb
474 Requires=vpp.service
475 After=vpp.service
476
477 [Service]
478 ExecStart=/opt/honeycomb/honeycomb
479 Restart=always
480 RestartSec=10
481
482 [Install]
483 WantedBy=multi-user.target
484 EOF
485     systemctl enable /etc/systemd/system/honeycomb.service
486
487     # Download DHCP config files
488     cd /opt
489     wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_brgemu_init.sh
490     wget $REPO_URL_BLOB/org.onap.demo/vnfs/vcpe/$INSTALL_SCRIPT_VERSION/v_brgemu.sh
491     sed -i '/# Provides:/c\# Provides:     vbrg ' /opt/v_brgemu.sh
492     chmod +x v_brgemu_init.sh
493     chmod +x v_brgemu.sh
494     mv v_brgemu.sh /etc/init.d
495     update-rc.d v_brgemu.sh defaults
496
497     # Rename network interface in openstack Ubuntu 16.04 images. Then, reboot the VM to pick up changes
498     if [[ $CLOUD_ENV != "rackspace" ]]
499     then
500         sed -i "s/GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub
501         grub-mkconfig -o /boot/grub/grub.cfg
502         sed -i "s/ens[0-9]*/eth0/g" /etc/network/interfaces.d/*.cfg
503         sed -i "s/ens[0-9]*/eth0/g" /etc/udev/rules.d/70-persistent-net.rules
504         echo 'network: {config: disabled}' >> /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg
505         reboot
506     fi
507
508     ./v_brgemu_init.sh
509 fi  # endif BUILD_STATE != "build"