blob: da63445acbd0676641c9032085f698a5ced1dbbb [file] [log] [blame]
Thomas Vachuska5630c612015-03-24 12:24:12 -07001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Downloads and sets-up Apache Karaf as a basis for running ONOS locally
4# as a single-instance.
Thomas Vachuskafcd61142015-04-23 13:59:08 -07005#
6# Note that this in no way impacts the method for running ONOS remotely.
7# For that, one should use onos-package and onos-install tools.
Thomas Vachuska5630c612015-03-24 12:24:12 -07008# -----------------------------------------------------------------------------
9
10[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
11. $ONOS_ROOT/tools/build/envDefaults
12
13# TODO: consider putting this under ~/Applications/onos/apache-karaf-...
14export KARAF_ROOT=${KARAF_ROOT:-~/Applications/apache-karaf-$KARAF_VERSION}
15export STAGE=$(dirname $KARAF_ROOT)
16
Thomas Vachuska60fc8422015-04-23 16:18:34 -070017# Validates the specified IP regular expression against existing adapters.
18# Excludes local-loopback.
19function validateIp {
Roan Huangddf315d2015-04-30 22:54:48 +080020 ifconfig | awk '{ print $2}' | grep -E -o "([0-9]{1,3}[\.]){3}[0-9]{1,3}" | grep -v "127\.0\.0\.1" | grep $1
Thomas Vachuska60fc8422015-04-23 16:18:34 -070021}
22
Thomas Vachuska5630c612015-03-24 12:24:12 -070023# Clean the previous Karaf directory if requested and if it exists.
24if [ "$1" = "clean" ]; then
25 shift
26 [ -d $KARAF_ROOT ] && rm -fr $KARAF_ROOT $STAGE/apps $STAGE/config
27fi
28
Thomas Vachuskafcd61142015-04-23 13:59:08 -070029IP="${1:-$ONOS_IP}"
30
31# If IP was not given, nor configured attempt to use ONOS_NIC env. variable
32if [ -z "$IP" -a -n "$ONOS_NIC" ]; then
Thomas Vachuska60fc8422015-04-23 16:18:34 -070033 IP=$(validateIp $ONOS_NIC)
Thomas Vachuskafcd61142015-04-23 13:59:08 -070034 [ -z "$IP" ] && echo "No adapter with IP matching $ONOS_NIC found!"
35else
36 # Otherwise, verify that the IP address given exists among the adapters.
37 saveIp=$IP
Thomas Vachuska60fc8422015-04-23 16:18:34 -070038 IP=$(validateIp $IP)
Thomas Vachuskafcd61142015-04-23 13:59:08 -070039 [ -z "$IP" ] && echo "No adapter with IP $saveIp found!"
40fi
41
42# If IP is still not surmised or if usage was requested, show usage and IPs.
43if [ -z "$IP" -o "$1" = "-?" -o "$1" = "-h" -o "$1" = "--help" ]; then
Thomas Vachuska5630c612015-03-24 12:24:12 -070044 echo "usage: $(basename $0) [clean] <ip-address>"
45 echo "Available IP addresses are:"
Thomas Vachuska60fc8422015-04-23 16:18:34 -070046 validateIp .
Thomas Vachuska5630c612015-03-24 12:24:12 -070047 exit 1
48fi
49
Thomas Vachuska5630c612015-03-24 12:24:12 -070050SUBNET="$(echo $IP | cut -d. -f1-3)"
51
52# Bail on any errors
53set -e
54
55# Check if Apache Karaf is already installed.
56if [ ! -d $KARAF_ROOT ]; then
57 # Check if Apache Karaf bits are available and if not, fetch them.
58 if [ ! -f $KARAF_TAR ]; then
59 echo "Downloading $KARAF_TAR..."
60 curl -sL http://downloads.onosproject.org/third-party/apache-karaf-$KARAF_VERSION.tar.gz > $KARAF_TAR
61 fi
62 [ ! -f $KARAF_ZIP -a ! -f $KARAF_TAR ] && \
63 echo "Apache Karaf bits $KARAF_ZIP or $KARAF_TAR not found" && exit 1
64
65 echo "Unpacking $KARAF_TAR to $STAGE..."
66 mkdir -p $STAGE
67 cd $STAGE
68 tar zxf $KARAF_TAR
69 rm -rf $KARAF_ROOT/demos
70fi
71
72if ! grep -q "/onos-features/" $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
73 # Patch the Apache Karaf distribution file to add ONOS features repository
74 echo "Adding ONOS feature repository..."
75 perl -pi.old -e "s|^(featuresRepositories=.*)|\1,mvn:org.onosproject/onos-features/$ONOS_POM_VERSION/xml/features|" \
76 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
77fi
78
79if ! grep -q ",onos-api," $KARAF_ROOT/etc/org.apache.karaf.features.cfg; then
80 # Patch the Apache Karaf distribution file to load default ONOS boot features
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070081 export BOOT_FEATURES="webconsole,onos-api,onos-core,onos-cli,onos-rest,onos-gui"
Thomas Vachuska5630c612015-03-24 12:24:12 -070082 echo "Adding ONOS boot features $BOOT_FEATURES..."
83 perl -pi.old -e "s|^(featuresBoot=.*)|\1,$BOOT_FEATURES|" \
84 $KARAF_ROOT/etc/org.apache.karaf.features.cfg
85fi
86
87if [ ! -f $KARAF_ROOT/lib/onos-branding-$ONOS_POM_VERSION.jar ]; then
88 # Patch the Apache Karaf distribution with ONOS branding bundle
89 echo "Branding as ONOS..."
90 rm -f $KARAF_ROOT/lib/onos-branding-*.jar
91 cp $M2_REPO/org/onosproject/onos-branding/$ONOS_POM_VERSION/onos-branding-$ONOS_POM_VERSION.jar \
92 $KARAF_ROOT/lib
93fi
94
Thomas Vachuska9b171c52015-04-28 12:01:07 -070095echo "Creating local cluster configs for IP $IP..."
96[ -d $STAGE/config ] || mkdir -p $STAGE/config
97cat > $STAGE/config/cluster.json <<EOF
Thomas Vachuska5630c612015-03-24 12:24:12 -070098 { "ipPrefix": "$SUBNET.*",
99 "nodes":[ { "id": "$IP", "ip": "$IP", "tcpPort": 9876 }]}
100EOF
101
Thomas Vachuska9b171c52015-04-28 12:01:07 -0700102cat > $STAGE/config/tablets.json <<EOF
Thomas Vachuska69bf7c12015-05-20 13:59:22 -0700103 { "nodes": [ { "ip": "$IP", "id": "$IP", "tcpPort": 9876 }],
104 "partitions": { "p1": [ { "ip": "$IP", "id": "$IP", "tcpPort": 9876 }]}}
Thomas Vachuska5630c612015-03-24 12:24:12 -0700105EOF
Thomas Vachuska5630c612015-03-24 12:24:12 -0700106
Thomas Vachuskafcd61142015-04-23 13:59:08 -0700107echo "Setting up hazelcast.xml for subnet $SUBNET.*..."
Thomas Vachuska5630c612015-03-24 12:24:12 -0700108cp $ONOS_ROOT/tools/package/etc/hazelcast.xml $KARAF_ROOT/etc/hazelcast.xml
109perl -pi.old -e "s/192.168.56/$SUBNET/" $KARAF_ROOT/etc/hazelcast.xml
110perl -pi.old -e "s/ <name>onos</ <name>$IP</" $KARAF_ROOT/etc/hazelcast.xml
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700111
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700112echo "Staging builtin apps..."
113rm -fr $STAGE/apps
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700114onos-stage-apps $STAGE/apps $KARAF_ROOT/system
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700115
Thomas Vachuskafcd61142015-04-23 13:59:08 -0700116ACTIVE_APPS=${ONOS_APPS:-drivers,openflow}
117echo "Customizing apps to be auto-activated: $ACTIVE_APPS..."
118for app in ${ACTIVE_APPS//,/ }; do
Thomas Vachuskac4cb1002015-03-29 10:28:26 -0700119 touch $STAGE/apps/org.onosproject.$app/active
120done