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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
|
#!/bin/bash
# build.sh
#
#
# Copyright 2015, Yunify, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##### Settings #####
VERSION=1.0.7
AUTHOR="Ashlee Young"
MODIFIED="November 23, 2015"
GERRITURL="git clone ssh://im2bz2pee@gerrit.opnfv.org:29418/onosfw"
ONOSURL="https://github.com/opennetworkinglab/onos"
SURICATAURL="https://github.com/inliniac/suricata"
ONOSGIT="git clone --recursive $ONOSURL"
JAVA_VERSION=1.8
ANT_VERSION=1.9.6
MAVEN_VERSION=3.3.3
KARAF_VERSION=4.0.2
MODE=$1
##### End Settings #####
##### Platform detection #####
detectOS()
{
if [ -f "/etc/centos-release" ]; then
export OS=centos
export JAVA_HOME=/etc/alternatives/java_sdk
export JRE_HOME=/etc/alternatives/java_sdk/bin
elif [ -f "/etc/lsb-release" ]; then
export OS=ubuntu
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
export JRE_HOME=$JAVA_HOME/bin
elif [[ -f "/etc/SuSE-release" ]]; then
export OS=suse
export JAVA_HOME=/usr/lib64/jvm/java-1.8.0-openjdk
export JRE_HOME=$JAVA_HOME/bin
else
export OS=other
fi
printf "We have detected a derivitive OS of $OS.\n\n"
}
##### End Platform detection #####
##### Set build environment #####
export GERRITROOT="$(pwd)"
export BUILDROOT=$GERRITROOT/framework/build
export ONOSRC=$GERRITROOT/framework/src/onos
export ONOSROOT=$BUILDROOT/onos
export ONOS_ROOT=$BUILDROOT/onos
export ANT_HOME=$BUILDROOT/ant/apache-ant-1.9.6
export M2_HOME=$BUILDROOT/maven/build
export M2=$M2_HOME/bin
export PATH=$PATH:$ANT_HOME/bin:$M2:$JAVA_HOME/bin
export KARAF_ROOT=$BUILDROOT/karaf/$KARAF_VERSION
export ONOS_USER=root
export ONOS_GROUP=root
export ONOS_CELL=sdnds-tw
export RPMBUILDPATH=~/rpmbuild
export PATCHES=$GERRITROOT/framework/patches
export SURICATAROOT=$BUILDROOT/suricata
export SURICATASRC=$GERRITROOT/framework/src/suricata
##### End Set build environment #####
##### Ask Function #####
ask()
{
while true; do
if [ "${2:-}" = "Y" ]; then
prompt="Y/n"
default=Y
elif [ "${2:-}" = "N" ]; then
prompt="y/N"
default=N
else
prompt="y/n"
default=
fi
# Ask the question
read -p "$1 [$prompt] " REPLY
# Default?
if [ -z "$REPLY" ]; then
REPLY=$default
fi
# Check if the reply is valid
case "$REPLY" in
Y*|y*) return 0 ;;
N*|n*) return 1 ;;
esac
done
}
##### End Ask Function #####
##### Version #####
displayVersion()
{
clear
printf "You are running installer script Version: %s \n" "$VERSION"
printf "Last modified on %s, by %s. \n\n" "$MODIFIED" "$AUTHOR"
sleep 1
}
##### End Version #####
##### Update ONOS #####
# This function will pull the ONOS upstream project and then update the
# repository in this project with just the diffs.
updateONOS()
{
if [ "$MODE" != "auto" ]; then
MODE=manual
if ask "Would you like to refresh your ONOS src tree with the ONOS tip?"; then
printf "NOTE: Updating upstream src is a PTL function. Please use this function locally, only. \n"
printf "If you need the main repo updated to pick up ONOS upstream features, please email \n"
printf "me at ashlee AT onosfw.com. \n\n"
printf "Thanks! \n\n"
if ask "Do you still wish to update your local ONOS source tree?"; then
freshONOS
printf "\n"
cd $BUILDROOT
git clone $ONOSURL onosproject
rsync -arvP --delete --exclude=.git --exclude=.gitignore --exclude=.gitreview onosproject/ ../src/onos/
cd onosproject
git log > ../onos_update.$(date +%s)
cd ../
rm -rf onosproject
cd $GERRITROOT
# End applying patches
fi
fi
else
MODE=auto
fi
printf "\n"
printf "Build Mode is set to $MODE\n\n"
}
##### End Update ONOS #####
##### Check Java #####
checkJRE()
{
INSTALLED_JAVA=`java -version 2>&1 | head -n 1 | cut -d\" -f 2` # | awk -F "." '{print $1"."$2}'`
JAVA_NUM=`echo $INSTALLED_JAVA | awk -F "." '{print $1"."$2}'`
if [ "$JAVA_NUM" '<' "$JAVA_VERSION" ]; then
echo -e "Java version $INSTALLED_JAVA is lower than the required version of $JAVA_VERSION. \n"
if [ "$OS" = "centos" ]; then
printf "It is recommended that you run \"sudo yum -y install java-$JAVA_VERSION.0-openjdk-devel\".\n"
if ask "May we perform this task for you?"; then
sudo yum -y install java-$JAVA_VERSION.0-openjdk-devel
fi
elif [[ "$OS" = "ubuntu" ]]; then
printf "It is recommended that you run \"sudo apt-get -y install openjdk-8-jdk\".\n"
if ask "May we perform this task for you?"; then
sudo add-apt-repository -y ppa:openjdk-r/ppa
sudo apt-get -y update
sudo apt-get -y install openjdk-8-jdk
fi
elif [[ "$OS" = "suse" ]]; then
printf "It is recommended that you run \"sudo zypper --non-interactive install java-1_8_0-openjdk-devel\".\n"
if ask "May we perform this task for you?"; then
sudo zypper --non-interactive install java-1_8_0-openjdk-devel
fi
fi
else
printf "Installed Java version meets the requirements. \n\n"
fi
}
checkJDK()
{
if [ ! -d "$JAVA_HOME" ]; then
if [ "OS" = "centos" ]; then
printf "It doesn't look there's a valid JDK installed.\n"
if ask "May we install one?"; then
sudo yum -y install java-$JAVA_VERSION.0-openjdk-devel
else
printf "You should run \"sudo yum -y install java-$JAVA_VERSION.0-openjdk-devel\". \n\n"
fi
elif [[ "$OS" = "ubuntu" ]]; then
printf "It doesn't look there's a valid JDK installed.\n"
if ask "May we install one?"; then
sudo add-apt-repository -y ppa:openjdk-r/ppa
sudo apt-get -y update
sudo apt-get -y install openjdk-8-jdk
else
printf "You should run \"sudo apt-get -y install openjdk-8-jdk\". \n\n"
fi
elif [[ "$OS" = "suse" ]]; then
printf "It doesn't look there's a valid JDK installed.\n"
if ask "May we install one?"; then
sudo zypper --non-interactive install java-1_8_0-openjdk-devel
else
printf "You should run \"sudo zypper --non-interactive install java-1_8_0-openjdk-devel\". \n\n"
fi
fi
fi
}
##### End Check Java #####
##### Install Ant #####
installAnt()
{
if [ ! -d "$ANT_HOME/bin" ]; then
printf "You may have Ant installed on your system, but to avoid build issues, we'd like \n"
printf "to use our own. It will be installed at $ANT_HOME. \n"
if ask "May we proceed with installing ant here?"; then
if [ ! -d "$GERRITROOT/framework/build/ant" ]; then
mkdir -p $GERRITROOT/framework/build/ant
cd $GERRITROOT/framework/build/ant
wget http://mirror.olnevhost.net/pub/apache/ant/source/apache-ant-$ANT_VERSION-src.tar.gz
tar xzvf apache-ant-$ANT_VERSION-src.tar.gz
fi
cd $ANT_HOME
sh build.sh install
fi
else
printf "Ant looks to be properly installed at $ANT_HOME. \n\n"
fi
}
##### Install Ant #####
##### Install Maven #####
installMaven()
{
if [ ! -d $M2_HOME ]; then
printf "While you may or may not have Maven installed, our supported version is not yet installed.\n"
if ask "May we install it?"; then
clear
mkdir -p $GERRITROOT/framework/build/maven
cd $GERRITROOT/framework/build/maven
printf "Maven version $MAVEN_VERSION is being installed in: \n"
printf "$GERRITROOT/framework/build/maven.\n\n"
sleep 3
wget http://supergsego.com/apache/maven/maven-3/3.3.3/source/apache-maven-3.3.3-src.tar.gz
tar xzvf apache-maven-3.3.3-src.tar.gz
cd $GERRITROOT/framework/build/maven/apache-maven-$MAVEN_VERSION
ant
cd $GERRITROOT
fi
else
printf "Maven looks to be properly installed at $M2_HOME. \n\n"
fi
}
##### End Install Maven #####
##### Install karaf #####
installKaraf()
{
if [ ! -d $KARAF_ROOT ]; then
printf "While you may or may not have Karaf installed, our supported version is not yet installed.\n"
if ask "May we install it?"; then
clear
mkdir -p $BUILDROOT/karaf/$KARAF_VERSION
cd $KARAF_ROOT
wget http://download.nextag.com/apache/karaf/$KARAF_VERSION/apache-karaf-$KARAF_VERSION-src.tar.gz
tar xzvf apache-karaf-$KARAF_VERSION-src.tar.gz
cd apache-karaf-$KARAF_VERSION
mvn -Pfastinstall
fi
fi
}
##### End Install karaf #####
##### Delete ONOS Build #####
freshONOS()
{
if [ -d $ONOSROOT ]; then
printf "ONOS has previously been built.\n"
if ask "Would you like to build fresh? This involves deleting the old build."; then
rm -rf $ONOSROOT
fi
fi
}
##### End Delete ONOS Build #####
##### Build ONOS #####
buildONOS()
{
if ask "Would you like to build ONOS?"; then
updateONOS
checkJRE
checkJDK
installAnt
installMaven
installKaraf
freshONOS
if [ ! -d $ONOSROOT ]; then
clear
mkdir -p $ONOSROOT
cp -rv $ONOSRC/* $ONOSROOT/
if [ -d $PATCHES/onos ]; then
if ask "Would you like to apply ONOSFW unique patches?"; then
cd $PATCHES
files=$(find . ! -path . -type f | grep -v 0) # Checks for any files in patches directory
if [ $"files" > 0 ]; then
for file in $files; do
FILEPATH=$(dirname $file) #isolate just the relative path so we can re-create it
if [ ! -d "$BUILDROOT/$FILEPATH" ]; then
mkdir -p $BUILDROOT/$FILEPATH #recreate the relative path
fi
cp -v $file $BUILDROOT/$FILEPATH/. #copy all files to proper location(s)
done
fi
cd $GERRITROOT
fi
fi
cd $ONOSROOT
ln -sf $KARAF_ROOT/apache-karaf-$KARAF_VERSION apache-karaf-$KARAF_VERSION
mvn clean install
if [ -f "$ONOSROOT/tools/build/envDefaults" ]; then
export ONOSVERSION="`cat $ONOSROOT/tools/build/envDefaults | grep "export ONOS_POM_VERSION" \
| awk -F "=" {'print $2'} | sed -e 's/^"//' -e 's/"$//' | awk -F "-" {'print $1'}`-onosfw-$(date +%s)"
printf "ONOSFW ONOS version is $ONOSVERSION. \n\n"
fi
else
if ask "There looks to be a previous build. Would you like us to re-build ONOS?"; then
if [ -d $PATCHES/onos ]; then
if ask "Would you like to apply ONOSFW unique patches?"; then
cd $PATCHES
files=$(find . ! -path . -type f | grep -v 0) # Checks for any files in patches directory
if [ $"files" > 0 ]; then
for file in $files; do
FILEPATH=$(dirname $file) #isolate just the relative path so we can re-create it
if [ ! -d "$BUILDROOT/$FILEPATH" ]; then
mkdir -p $BUILDROOT/$FILEPATH #recreate the relative path
fi
cp -v $file $BUILDROOT/$FILEPATH/. #copy all files to proper location(s)
done
fi
cd $GERRITROOT
fi
fi
fi
cd $ONOSROOT
ln -sf $KARAF_ROOT/apache-karaf-$KARAF_VERSION apache-karaf-$KARAF_VERSION
mvn clean install
if [ -f "$ONOSROOT/tools/build/envDefaults" ]; then
export ONOSVERSION="`cat $ONOSROOT/tools/build/envDefaults | grep "export ONOS_POM_VERSION" \
| awk -F "=" {'print $2'} | sed -e 's/^"//' -e 's/"$//' | awk -F "-" {'print $1'}`-onosfw-$(date +%s)"
printf "ONOSFW ONOS version is $ONOSVERSION. \n\n"
fi
fi
fi
}
##### End Build ONOS #####
##### Check for RPMBUILD tools #####
checkforRPMBUILD() # Checks whether RPMBUILD is installed
{
if [ -z "$(command -v rpmbuild)" ]; then
printf "RPM Development support is not installed. We need it to build the RPM packages. \n"
if ask "May we install it?"; then
if [ "$OS" = "centos" ]; then
sudo yum -y install rpm-build
sudo yum -y install rpm-devel
elif [ "$OS" = "suse" ]; then
sudo zypper --non-interactive install rpm-build
sudo zypper --non-interactive install rpm-devel
elif [ "$OS" = "ubuntu" ]; then
sudo apt-get -y install rpm
fi
fi
fi
}
##### End Check for RPMBUILD tools #####
##### Update Suricata #####
# This function will pull the Suricata upstream project and then update the
# repository in this project with just the diffs.
updateSuricata()
{
if [ "$MODE" != "auto" ]; then
printf "NOTE: Updating upstream src is a PTL function. Please use this function locally, only. \n"
printf "If you need the main repo updated to pick up ONOS upstream features, please email \n"
printf "me at ashlee AT onosfw.com. \n\n"
printf "Thanks! \n\n"
if ask "Do you still wish to update your local Suricata source tree?"; then
freshSuricata
printf "\n"
cd $BUILDROOT
git clone $SURICATAURL suricataproject
rsync -arvP --delete --exclude=.git --exclude=.gitignore --exclude=.gitreview suricataproject/ ../src/suricata/
cd suricataproject
git log > ../suricata_update.$(date +%s)
cd ../
rm -rf suricataproject
cd $GERRITROOT
# End applying patches
fi
fi
printf "\n"
printf "Build Mode is set to $MODE\n\n"
}
##### End Update Suricata #####
##### Delete Suricata Build #####
freshSuricata()
{
if [ -d $SURICATAROOT ]; then
printf "Suricata has previously been built.\n"
if ask "Would you like to build fresh? This involves deleting the old build."; then
rm -rf $SURICATAROOT
fi
fi
}
##### End Delete Suricata Build #####
##### Check for libnet #####
checkforlibNet() # Checks whether RPMBUILD is installed
{
if [ -n "$(rpm -qa | grep libnet-devel)" ]; then
if [ "$OS" = "centos" ]; then
sudo yum -y install libnet-devel
elif [ "$OS" = "suse" ]; then
sudo zypper --non-interactive install libnet-devel
elif [ "$OS" = "ubuntu" ]; then
sudo apt-get -y install libnet-devel
fi
fi
}
##### End Check for libnet #####
##### Check for libpcap #####
checkforlibpcap() # Checks whether RPMBUILD is installed
{
if [ -n "$(rpm -qa | grep libpcap-devel)" ]; then
if [ "$OS" = "centos" ]; then
sudo yum -y install libpcap-devel
elif [ "$OS" = "suse" ]; then
sudo zypper --non-interactive install libpcap-devel
elif [ "$OS" = "ubuntu" ]; then
sudo apt-get -y install libpcap-devel
fi
fi
}
##### End Check for libpcap #####
##### Build Suricata #####
buildSuricata()
{
if ask "Would you like to build Suricata for DPI capabilities?"; then
updateSuricata
freshSuricata
checkforlibNet
checkforlibpcap
if [ ! -d $SURICATAROOT ]; then
if ask "May we proceed to build Suricata?"; then
clear
mkdir -p $SURICATAROOT
cp -rv $SURICATASRC/* $SURICATAROOT/
if [ -d $PATCHES/suricata ]; then
if ask "Would you like to apply ONOSFW unique patches?"; then
cd $PATCHES
files=$(find . ! -path . -type f | grep -v 0) # Checks for any files in patches directory
if [ $"files" > 0 ]; then
for file in $files; do
FILEPATH=$(dirname $file) #isolate just the relative path so we can re-create it
if [ ! -d "$BUILDROOT/$FILEPATH" ]; then
mkdir -p $BUILDROOT/$FILEPATH #recreate the relative path
fi
cp -v $file $BUILDROOT/$FILEPATH/. #copy all files to proper location(s)
done
fi
cd $GERRITROOT
fi
fi
cd $SURICATAROOT
./autogen.sh
./configure
make
cd $GERRITROOT
fi
else
if ask "Would you like us to re-run building Suricata?"; then
if [ -d $PATCHES/suricata ]; then
if ask "Would you like to apply ONOSFW unique patches?"; then
cd $PATCHES
files=$(find . ! -path . -type f | grep -v 0) # Checks for any files in patches directory
if [ $"files" > 0 ]; then
for file in $files; do
FILEPATH=$(dirname $file) #isolate just the relative path so we can re-create it
if [ ! -d "$BUILDROOT/$FILEPATH" ]; then
mkdir -p $BUILDROOT/$FILEPATH #recreate the relative path
fi
cp -v $file $BUILDROOT/$FILEPATH/. #copy all files to proper location(s)
done
fi
cd $GERRITROOT
fi
fi
cd $SURICATAROOT
./autogen.sh
./configure
make
cd $GERRITROOT
fi
fi
fi
}
##### End Build Suricata #####
##### Execution order #####
main()
{
displayVersion
detectOS
buildONOS
buildSuricata
checkforRPMBUILD
}
##### End Execution order #####
main # Launches the build process
|