build_helper 21.6 KB
Newer Older
1 2 3 4 5
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements.  See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
6
# * the OAI Public License, Version 1.1  (the "License"); you may not use this file
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# *      http://www.openairinterface.org/?page_id=698
# *
# * 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.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# *      contact@openairinterface.org
# */

22
# file build_helper
thomasl's avatar
thomasl committed
23
# brief
24
# authors Laurent Thomas, Lionel GAUTHIER
thomasl's avatar
thomasl committed
25 26
#
#######################################
27 28 29 30 31 32 33
if [ ! -f /etc/os-release ]; then
  echo "No /etc/os-release file found. You're likely on an unsupported distro."
  exit -1
fi
OS_DISTRO=$(grep "^ID=" /etc/os-release | sed "s/ID=//" | sed "s/\"//g")
OS_RELEASE=$(grep "^VERSION_ID=" /etc/os-release | sed "s/VERSION_ID=//" | sed "s/\"//g")
case "$OS_DISTRO" in
34 35 36 37 38
  fedora) OS_BASEDISTRO="fedora"; INSTALLER="dnf"; CMAKE="cmake" ;;
  rhel)   OS_BASEDISTRO="fedora"; INSTALLER="yum"; CMAKE="cmake3" ;;
  centos) OS_BASEDISTRO="fedora"; INSTALLER="yum"; CMAKE="cmake3" ;;
  debian) OS_BASEDISTRO="debian"; INSTALLER="apt-get"; CMAKE="cmake" ;;
  ubuntu) OS_BASEDISTRO="debian"; INSTALLER="apt-get"; CMAKE="cmake" ;;
39 40 41 42
esac
KERNEL_VERSION=$(uname -r | cut -d '.' -f1)
KERNEL_MAJOR=$(uname -r | cut -d '.' -f2)

43
SUDO='sudo -E'
thomasl's avatar
thomasl committed
44

45 46 47 48 49 50 51
###############################
## echo and  family
###############################
black='\E[30m'
red='\E[31m'
green='\E[32m'
yellow='\E[33m'
52
blue='\E[1;34m'
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
magenta='\E[35m'
cyan='\E[36m'
white='\E[37m'
reset_color='\E[00m'
COLORIZE=1

cecho()  {  
    # Color-echo
    # arg1 = message
    # arg2 = color
    local default_msg="No Message."
    message=${1:-$default_msg}
    color=${2:-$green}
    [ "$COLORIZE" = "1" ] && message="$color$message$reset_color"
    echo -e "$message"
    return
}

echo_error()   { cecho "$*" $red          ;}
echo_fatal()   { cecho "$*" $red; exit -1 ;}
echo_warning() { cecho "$*" $yellow       ;}
echo_success() { cecho "$*" $green        ;}
echo_info()    { cecho "$*" $blue         ;}

77 78 79
########################
# distribution helpers #
########################
80

81 82 83 84
# This function return a string to identify the distribution we are running
# If we can't check the distribution, it returns "Unknown"
# This function return always true as exit code by design
# Examples:
85 86
#   ubuntu16.04
#   debian8.5
87
get_distribution_release() {
88 89
    if [[ ! -z "$OS_DISTRO$OS_RELEASE" ]]; then
        echo "$OS_DISTRO$OS_RELEASE"
90 91 92 93
    else
        echo Unknown
    fi
}
94

95 96 97
check_supported_distribution() {
    local distribution=$(get_distribution_release)
    case "$distribution" in
98 99
        "ubuntu17.10") return 0 ;;
        "ubuntu17.04") return 0 ;;
100 101 102 103 104
        "ubuntu16.04") return 0 ;;
        "ubuntu14.04") return 0 ;;
        "fedora24")    return 0 ;;
        "rhel7")       return 0 ;;
        "centos7")     return 0 ;;
105 106 107
    esac
    return 1
}
108

109 110 111 112 113 114 115 116 117 118 119
##################
# Error handlers #
##################

handler_EXIT() {
	local exit_code=$?
    [ "$exit_code" -eq 0 ] || echo_error "build have failed"
	exit $exit_code
}

trap handler_EXIT EXIT
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

###########################
# Cleaners
###########################

clean_kernel() {
    $SUDO modprobe ip_tables
    $SUDO modprobe x_tables
    $SUDO iptables -P INPUT ACCEPT
    $SUDO iptables -F INPUT
    $SUDO iptables -P OUTPUT ACCEPT
    $SUDO iptables -F OUTPUT
    $SUDO iptables -P FORWARD ACCEPT
    $SUDO iptables -F FORWARD
    $SUDO iptables -t nat -F
    $SUDO iptables -t mangle -F
    $SUDO iptables -t filter -F
    $SUDO iptables -t raw -F
    echo_info "Flushed iptables"
    $SUDO rmmod nasmesh > /dev/null 2>&1
    $SUDO rmmod oai_nw_drv  > /dev/null 2>&1
    $SUDO rmmod openair_rf > /dev/null 2>&1
    $SUDO rmmod ue_ip > /dev/null 2>&1
    echo_info "removed drivers from kernel"
}

clean_all_files() {
147
 set_openair_env
148
 dir=$OPENAIR_DIR/cmake_targets
149
 rm -rf $dir/log $OPENAIR_DIR/targets/bin/* 
150 151 152
 rm -rf $dir/lte_build_oai $dir/lte-simulators/build
 rm -rf $dir/oaisim_build_oai/build $dir/oaisim_build_oai/CMakeLists.txt
 rm -rf $dir/autotests/bin $dir/autotests/log $dir/autotests/*/build 
153 154 155 156 157 158
}

###################################
# Compilers
###################################

159 160 161 162 163 164 165 166 167 168 169 170 171 172
#check_warnings:
#    print error message if the compilation had warnings
#argument:
#    $1: log file
check_warnings() {
  #we look for 'warning:' in the compilation log file
  #this is how gcc starts a warning
  #this is not perfect, we may get false positive
  warning_count=`grep "warning:" "$1"|wc -l`
  if [ $warning_count -gt 0 ]; then
    echo_error "WARNING: $warning_count warnings. See $1"
  fi
}

thomasl's avatar
thomasl committed
173
compilations() {
thomasl's avatar
thomasl committed
174
  cd $OPENAIR_DIR/cmake_targets/$1/build
175
  set +e
thomasl's avatar
thomasl committed
176 177
  {
    rm -f $3
178 179 180 181 182 183
    if [ "$VERBOSE_COMPILE" == "1" ]; then
       make -j`nproc` $2 VERBOSE=$VERBOSE_COMPILE
    else
       make -j`nproc` $2
    fi

thomasl's avatar
thomasl committed
184
  } > $dlog/$2.$REL.txt 2>&1
185
  set -e
186
  echo_info "Log file for compilation has been written to: $dlog/$2.$REL.txt"
thomasl's avatar
thomasl committed
187
  if [ -s $3 ] ; then
188
     cp $3 $4
thomasl's avatar
thomasl committed
189
     echo_success "$2 compiled"
190
     check_warnings "$dlog/$2.$REL.txt"
thomasl's avatar
thomasl committed
191
  else
thomasl's avatar
thomasl committed
192
     echo_error "$2 compilation failed"
193
     exit 1
thomasl's avatar
thomasl committed
194 195 196
  fi
}

197 198 199 200
############################################
# External packages installers
############################################

201
install_protobuf_from_source(){
202 203 204
    protobuf_install_log=$OPENAIR_DIR/cmake_targets/log/protobuf_install_log.txt
    echo_info "\nInstalling Google Protobuf from sources. The log file for Protobuf installation is here: $protobuf_install_log "
    (
205 206
    cd /tmp
    echo "Downloading protobuf"
207 208 209 210 211 212 213 214
    #rm -rf /tmp/protobuf-2.6.1.tar.gz* /tmp/protobuf-2.6.1
    #wget https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
    #tar -xzvf protobuf-2.6.1.tar.gz --owner $USER --group $USER --no-same-owner
    #cd protobuf-2.6.1/
    rm -rf /tmp/protobuf-cpp-3.3.0.tar.gz* /tmp/protobuf-3.3.0
    wget https://github.com/google/protobuf/releases/download/v3.3.0/protobuf-cpp-3.3.0.tar.gz
    tar -xzvf protobuf-cpp-3.3.0.tar.gz --owner $USER --group $USER --no-same-owner
    cd protobuf-3.3.0/
215 216 217 218 219
    ./configure
    echo "Compiling protobuf"
    make -j`nproc`
    $SUDO make install
    $SUDO ldconfig
220
    ) >& $protobuf_install_log
221 222 223
}

install_protobuf_c_from_source(){
224 225 226
    protobuf_c_install_log=$OPENAIR_DIR/cmake_targets/log/protobuf_c_install_log.txt
    echo_info "\nInstalling Google Protobuf_C from sources. The log file for Protobuf_C installation is here: $protobuf_c_install_log "
    (
227 228 229
    if [[ "$OS_DISTRO" == "rhel" ]] || [[ "$OS_DISTRO" == "centos" ]]; then
        export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
    fi
230 231 232 233 234
    cd /tmp
    echo "Downloading protobuf-c"
    rm -rf /tmp/protobuf-c
    git clone https://github.com/protobuf-c/protobuf-c.git
    cd protobuf-c
235
	git checkout 2a46af42784abf86804d536f6e0122d47cfeea45
236 237 238 239 240 241
    ./autogen.sh
    ./configure
    echo "Compiling protobuf-c"
    make -j`nproc`
    $SUDO make install
    $SUDO ldconfig
242
    ) >& $protobuf_c_install_log
243 244
}

245 246 247 248 249 250 251
install_usrp_uhd_driver_from_source(){
    uhd_install_log=$OPENAIR_DIR/cmake_targets/log/uhd_install_log.txt
    echo_info "\nInstalling UHD driver from sources. The log file for UHD driver installation is here: $uhd_install_log "
    (
    cd /tmp
    echo "Downloading UHD driver"
    rm -rf /tmp/uhd
Cedric Roux's avatar
Cedric Roux committed
252
    git clone https://github.com/EttusResearch/uhd.git
253 254 255 256 257 258
    cd uhd
    git checkout tags/release_003_010_001_001
    mkdir -p host/build
    cd host/build
    $CMAKE ../
    echo "Compiling UHD"
Cedric Roux's avatar
Cedric Roux committed
259
    make -j`nproc`
260 261 262 263 264 265
    make test
    $SUDO make install
    $SUDO ldconfig
    ) >& $uhd_install_log
}

thomasl's avatar
thomasl committed
266
check_install_usrp_uhd_driver(){
267
    if [[ "$OS_DISTRO" == "ubuntu" ]]; then
268
        #first we remove old installation
269 270
        $SUDO apt-get remove -y uhd || true
        $SUDO apt-get remove libuhd-dev libuhd003 uhd-host -y
thomasl's avatar
thomasl committed
271
        v=$(lsb_release -cs)
272 273 274
        $SUDO apt-add-repository --remove "deb http://files.ettus.com/binaries/uhd/repo/uhd/ubuntu/$v $v main"
        #The new USRP repository
        $SUDO add-apt-repository ppa:ettusresearch/uhd -y
thomasl's avatar
thomasl committed
275
        $SUDO apt-get update
276 277
        $SUDO apt-get -y --allow-unauthenticated install  python python-tk libboost-all-dev libusb-1.0-0-dev
        $SUDO apt-get -y --allow-unauthenticated install libuhd-dev libuhd003 uhd-host
278
    elif [[ "$OS_BASEDISTRO" == "fedora" ]]; then
279
        $SUDO $INSTALLER -y install python boost libusb-devel libusbx-devel boost-devel python-mako python-docutils cmake
Cedric Roux's avatar
Cedric Roux committed
280
        $SUDO pip install requests
281 282 283
        if [[ "$OS_DISTRO" == "rhel" ]] || [[ "$OS_DISTRO" == "centos" ]]; then
            # until EPEL repo hasn't bumped UHD driver to >=3.10 in EPEL, build driver from source
            $SUDO $INSTALLER -y remove uhd uhd-devel uhd-firmware
Cedric Roux's avatar
Cedric Roux committed
284
            install_usrp_uhd_driver_from_source
285 286 287
        else
            $SUDO $INSTALLER -y install uhd uhd-devel uhd-firmware
        fi
288
    fi
289 290 291
}

install_usrp_uhd_driver() {
292
    if [[ "$OS_DISTRO" == "ubuntu" ]]; then
293 294 295
        # We move uhd-host apart because it depends on linux kernel version
        # On newer kernels, it fails to install
        $SUDO apt-get -y install uhd-host
296 297 298 299 300 301
    fi
    if [ -z $1 ]; then
      $SUDO uhd_images_downloader
    else
      $SUDO uhd_images_downloader -i $1
    fi
thomasl's avatar
thomasl committed
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
install_bladerf_driver_from_source(){
    bladerf_install_log=$OPENAIR_DIR/cmake_targets/log/bladerf_install_log.txt
    echo_info "\nInstalling BladeRF driver from sources. The log file for BladeRF driver installation is here: $bladerf_install_log "
    (
    cd /tmp
    echo "Downloading BladeRF driver"
    rm -rf /tmp/bladeRF
    git clone https://github.com/Nuand/bladeRF.git
    cd bladeRF
    git checkout tags/2016.06
    mkdir -p build
    cd build
    $CMAKE ../
    echo "Compiling BladeRF driver"
    make
    $SUDO make install
    $SUDO ldconfig
    echo "Downloading FPGA and firmware images"
    cd /tmp/bladeRF
    wget https://www.nuand.com/fx3/bladeRF_fw_latest.img
    wget https://www.nuand.com/fpga/hostedx40-latest.rbf
    sudo mkdir -p /usr/share/Nuand/bladeRF
    sudo mv bladeRF_fw_latest.img /usr/share/Nuand/bladeRF/bladeRF_fw.img
    sudo mv hostedx40-latest.rbf /usr/share/Nuand/bladeRF/hostedx40.rbf
    ) >& $bladerf_install_log
}

331
check_install_bladerf_driver(){
332 333 334 335 336 337 338 339
    if [[ "$OS_DISTRO" == "ubuntu" ]]; then
        if [ "$(get_distribution_release)" == "ubuntu14.04" ] ; then
            $SUDO add-apt-repository -y ppa:bladerf/bladerf
            $SUDO apt-get update
        fi
        $SUDO apt-get install -y --allow-unauthenticated  bladerf libbladerf-dev
        $SUDO apt-get install -y --allow-unauthenticated bladerf-firmware-fx3
        $SUDO apt-get install -y --allow-unauthenticated bladerf-fpga-hostedx40	
340 341
   elif [[ "$OS_BASEDISTRO" == "fedora" ]]; then
        install_bladerf_driver_from_source
342 343 344
   else
        echo_error "BladeRF Installer for OAI does not support automatic build. Install BladeRF compiling sources manually from BladeRF website"
   fi
345 346 347 348
}

flash_firmware_bladerf() {
	$SUDO bladeRF-cli --flash-firmware /usr/share/Nuand/bladeRF/bladeRF_fw.img
349
}
thomasl's avatar
thomasl committed
350

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
check_install_lmssdr_driver(){
	if ( [ -d "/usr/local/include/lime" ] &&
             [ -f "/usr/local/include/lime/LimeSuite.h" ] )
	then
  		echo_success "Found lmssdr drivers and tools installed from source"
        else
                echo_error "lmssdr support implies installing lmssdr drivers and tools" \
                           " from sources. check:"
                echo_info "https://open-cells.com/index.php/2017/05/10/limesdr-installation/"
                echo_fatal "Cannot compile lmssdr device" 
	fi


}

thomasl's avatar
thomasl committed
366
check_install_additional_tools (){
367 368
  $SUDO $INSTALLER update -y
  if [[ "$OS_DISTRO" == "ubuntu" ]]; then
369
    PACKAGE_LIST="\
thomasl's avatar
thomasl committed
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
	check \
	dialog \
	dkms \
	gawk \
	libboost-all-dev \
	libpthread-stubs0-dev \
	openvpn \
	pkg-config \
	python-dev  \
	python-pexpect \
	sshfs \
	swig  \
	tshark \
	uml-utilities \
	unzip  \
	valgrind  \
386
	vlan	  \
387
	ctags \
388 389
        ntpdate \
        iperf3 \
Rohit Gupta's avatar
Rohit Gupta committed
390 391 392
        android-tools-adb \
	wvdial \
        python-numpy \
393 394 395 396 397
        sshpass \
        nscd \
        bc \
        ntp \
        python-scipy \
398
        python-matplotlib"
399
  elif [[ "$OS_DISTRO" == "rhel" ]] || [[ "$OS_DISTRO" == "centos" ]]; then
400
    PACKAGE_LIST="\
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
      check \
      dialog \
      dkms \
      gawk \
      boost-devel \
      openvpn \
      pkgconfig \
      pexpect \
      sshfs \
      swig  \
      wireshark \
      unzip  \
      valgrind  \
      vconfig	  \
      ctags \
      ntpdate \
      iperf3 \
      wvdial \
      numpy \
      sshpass \
      nscd \
      python2-paramiko \
      python-pyroute2 \
424 425 426
      python-netifaces \
      scipy \
      python-matplotlib"
427
  elif [[ "$OS_DISTRO" == "fedora" ]]; then
428
    PACKAGE_LIST=" \
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
      check \
      dialog \
      dkms \
      gawk \
      boost-devel \
      openvpn \
      pkgconfig \
      python-pexpect \
      sshfs \
      swig  \
      wireshark \
      unzip  \
      valgrind  \
      vconfig	  \
      ctags \
      ntpdate \
      iperf3 \
      wvdial \
      python-numpy \
      sshpass \
      nscd \
      python2-paramiko \
      python-pyroute2 \
452 453 454 455 456 457
      python-netifaces \
      python2-scipy \
      python2-matplotlib"
  fi
    $SUDO $INSTALLER install -y $PACKAGE_LIST
    
458
    $SUDO rm -fr /opt/ssh
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
    $SUDO GIT_SSL_NO_VERIFY=true git clone https://gitlab.eurecom.fr/oai/ssh.git /opt/ssh

  #The packages below are already installed for Redhat distros (RHEL, CentOS, Fedora)
  if [[ "$OS_DISTRO" == "ubuntu" ]]; then
    $SUDO pip install paramiko
    $SUDO pip install pyroute2 colorama
    log_netiface=$OPENAIR_DIR/cmake_targets/log/netiface_install_log.txt
    echo_info "Installing Netinterfaces package. The logfile for installation is in $log_netiface"
    (
    $SUDO rm -fr /tmp/netifaces-0.10.4.tar.gz /tmp/netifaces
    wget -P /tmp  https://pypi.python.org/packages/18/fa/dd13d4910aea339c0bb87d2b3838d8fd923c11869b1f6e741dbd0ff3bc00/netifaces-0.10.4.tar.gz
    tar -xzvf /tmp/netifaces-0.10.4.tar.gz -C /tmp
    cd /tmp/netifaces-0.10.4
    $SUDO python setup.py install
    cd -
    ) >& $log_netiface
475
  fi
thomasl's avatar
thomasl committed
476 477 478
}

check_install_oai_software() {
479
    local specific_packages=""
480 481 482 483
    if ! check_supported_distribution; then
        echo_error "Your distribution $(get_distribution_release) is not supported by oai !"
        exit 1
    fi
484 485
    $SUDO $INSTALLER update -y
  if [[ "$OS_DISTRO" == "ubuntu" ]]; then
486 487
    local LAPACK_LIBNAME="liblapack.so"
    local LAPACK_TARGET="/usr/lib/atlas-base/atlas/liblapack.so"
488
    $SUDO apt install -y software-properties-common
489
    case "$(get_distribution_release)" in
490
        "ubuntu14.04")
491
            specific_packages="libtasn1-3-dev gccxml libgnutls-dev libatlas-dev"
492 493 494
            # For iperf3
            $SUDO add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty-backports universe"
            $SUDO apt-get update
495
            ;;
496
        "ubuntu16.04")
497 498 499 500 501 502 503 504 505
            specific_packages="libtasn1-6-dev gccxml libgnutls-dev libatlas-dev"
            ;;
        "ubuntu17.04")
            specific_packages="libtasn1-6-dev castxml libgnutls28-dev libatlas-dev"
            ;;
        "ubuntu17.10")
            specific_packages="libtasn1-6-dev castxml libgnutls28-dev"
            LAPACK_LIBNAME="liblapack.so-x86_64-linux-gnu"
            LAPACK_TARGET="/usr/lib/x86_64-linux-gnu/atlas/liblapack.so"
506
            ;;
507
    esac
508
    $SUDO apt-get install -y \
509
    $specific_packages \
510
	autoconf  \
thomasl's avatar
thomasl committed
511 512 513 514 515 516
	automake  \
	bison  \
	build-essential \
	cmake \
	cmake-curses-gui  \
	doxygen \
517 518
	doxygen-gui \
	texlive-latex-base \
thomasl's avatar
thomasl committed
519 520
	ethtool \
	flex  \
521 522
	gdb  \
	git \
thomasl's avatar
thomasl committed
523 524 525 526 527 528 529 530 531 532
	graphviz \
	gtkwave \
	guile-2.0-dev  \
	iperf \
	iproute \
	iptables \
	iptables-dev \
	libatlas-base-dev \
	libblas-dev \
	libconfig8-dev \
533
	libffi-dev \
thomasl's avatar
thomasl committed
534 535 536 537 538 539
	libforms-bin \
	libforms-dev \
	libgcrypt11-dev \
	libgmp-dev \
	libgtk-3-dev \
	libidn2-0-dev  \
540
	libidn11-dev \
thomasl's avatar
thomasl committed
541
	libmysqlclient-dev  \
542
	liboctave-dev \
thomasl's avatar
thomasl committed
543
	libpgm-dev \
544
	libpython2.7-dev \
thomasl's avatar
thomasl committed
545 546 547 548 549 550 551
	libsctp1  \
	libsctp-dev  \
	libssl-dev  \
	libtool  \
	libusb-1.0-0-dev \
	libxml2 \
	libxml2-dev  \
552
	libxslt1-dev \
553 554 555
	mscgen  \
	octave \
	octave-signal \
thomasl's avatar
thomasl committed
556 557 558 559
	openssh-client \
	openssh-server \
	openssl \
	python  \
560
	subversion \
561 562 563
	xmlstarlet \
	python-pip \
	pydb \
564
	libyaml-dev \
565 566
	wget \
	libxpm-dev
Rohit Gupta's avatar
Rohit Gupta committed
567

568
    $SUDO update-alternatives --set "$LAPACK_LIBNAME" "$LAPACK_TARGET"
569

570
    $SUDO apt-get install -y nettle-dev nettle-bin
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585
  elif [[ "$OS_BASEDISTRO" == "fedora" ]]; then
    if [[ "$OS_DISTRO" == "rhel" ]] || [[ "$OS_DISTRO" == "centos" ]]; then
      if rpm -q epel-release > /dev/null; then
        echo "EPEL repos already present. Good."
      else
        echo "EPEL repos not present. Installing them."
        $SUDO $INSTALLER install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
      fi
      $SUDO $INSTALLER install -y python-epdb
      $SUDO $INSTALLER install -y gccxml
    else
      $SUDO $INSTALLER install -y mscgen pydb
      # Fedora repos already contain gccxml's successor castxml.
      $SUDO $INSTALLER install -y castxml
    fi
586
    
587 588 589
    $SUDO $INSTALLER install -y \
      autoconf \
      automake \
590
      bc \
591
      bison \
592
      $CMAKE \
593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
      doxygen \
      ethtool \
      flex \
      gdb \
      git \
      graphviz \
      gtkwave \
      guile-devel \
      iperf \
      iproute \
      iptables \
      iptables-devel \
      atlas-devel \
      blas-devel \
      libconfig-devel \
      libffi-devel \
      xforms \
      xforms-devel \
      libgcrypt-devel \
      gmp-devel \
      gtk3-devel \
      libidn2-devel  \
      libidn-devel \
      mariadb-devel \
      octave-devel \
      openpgm-devel \
      lksctp-tools \
      lksctp-tools-devel \
      openssl-devel \
      libtasn1 \
      libtool \
      libusb-devel \
      libxml2 \
      libxml2-devel \
      libxslt-devel \
      octave \
      octave-signal \
      openssh-clients \
      openssh-server \
      openssl \
633 634
      patch \
      psmisc \
635 636 637 638 639 640
      python \
      subversion \
      xmlstarlet \
      python-pip \
      wget \
      kernel-headers \
641
      kernel-devel \
642
      nettle-devel \
643 644 645 646 647
      gnutls-devel \
      libXpm-devel \
      lapack \
      lapack-devel \
      blas \
Cedric Roux's avatar
Cedric Roux committed
648 649
      blas-devel \
      libyaml-devel
650 651
  fi

thomasl's avatar
thomasl committed
652
    install_asn1c_from_source
653 654
    $SUDO rm -fr /opt/ssh
    $SUDO git clone https://gist.github.com/2190472.git /opt/ssh
thomasl's avatar
thomasl committed
655 656
}

thomasl's avatar
thomasl committed
657
install_asn1c_from_source(){
658 659
    asn1_install_log=$OPENAIR_DIR/cmake_targets/log/asn1c_install_log.txt
    echo_info "\nInstalling ASN1. The log file for ASN1 installation is here: $asn1_install_log "
660
    (
661
    $SUDO rm -rf /tmp/asn1c
662
    GIT_SSL_NO_VERIFY=true git clone https://gitlab.eurecom.fr/oai/asn1c.git /tmp/asn1c
663
    cd /tmp/asn1c
thomasl's avatar
thomasl committed
664
    ./configure
665
    make -j`nproc`
666
    $SUDO make install
Rohit Gupta's avatar
Rohit Gupta committed
667
    cd -
668
    $SUDO ldconfig
669
    ) > $asn1_install_log 2>&1
thomasl's avatar
thomasl committed
670 671 672 673 674
}

#################################################
# 2. compile 
################################################
thomasl's avatar
thomasl committed
675

thomasl's avatar
thomasl committed
676
install_nas_tools() {
677
  if [ ! -f .ue.nvram0 ]; then
Lionel Gauthier's avatar
Lionel Gauthier committed
678
    echo_success "generate .ue_emm.nvram .ue.nvram"
679
    ./nvram --gen -c $1 -o $2
Lionel Gauthier's avatar
Lionel Gauthier committed
680
  else
681
    [ ./nvram -nt .ue.nvram0 -o ./nvram -nt .ue_emm.nvram0 ] && ./nvram --gen -c $1 -o $2
Lionel Gauthier's avatar
Lionel Gauthier committed
682
  fi
thomasl's avatar
thomasl committed
683

684
  if [ ! -f .usim.nvram0 ]; then
Lionel Gauthier's avatar
Lionel Gauthier committed
685
    echo_success "generate .usim.nvram"
686
    ./usim --gen -c $1 -o $2
Lionel Gauthier's avatar
Lionel Gauthier committed
687
  else
688
    [ ./usim -nt .usim.nvram0 ] && ./usim --gen -c $1 -o $2
Lionel Gauthier's avatar
Lionel Gauthier committed
689
  fi
thomasl's avatar
thomasl committed
690 691

}
692

thomasl's avatar
thomasl committed
693 694 695 696 697 698 699 700 701

################################
# set_openair_env
###############################
set_openair_env(){
    fullpath=`readlink -f $BASH_SOURCE`
    [ -f "/.$fullpath" ] || fullpath=`readlink -f $PWD/$fullpath`
    openair_path=${fullpath%/cmake_targets/*}
    openair_path=${openair_path%/targets/*}
thomasl's avatar
thomasl committed
702
    openair_path=${openair_path%/openair[123]/*}    
thomasl's avatar
thomasl committed
703 704 705 706 707 708 709
    export OPENAIR_DIR=$openair_path
    export OPENAIR1_DIR=$openair_path/openair1
    export OPENAIR2_DIR=$openair_path/openair2
    export OPENAIR3_DIR=$openair_path/openair3
    export OPENAIR_TARGETS=$openair_path/targets
}

710 711 712 713 714 715 716 717
################################
# Function to killall the subprocesses when Ctrl-C Key is hit
###############################
function handle_ctrl_c(){
CURPID=$$
ppid=$$
arraycounter=1
echo_info "** Trapped CTRL-C. Killing all subprocesses now..."
718 719
echo_info "** Calling sync now..."
sync 
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
while true
do
        FORLOOP=FALSE
        # Get all the child process id
        for i in `ps -ef| awk '$3 == '$ppid' { print $2 }'`
        do
                if [ $i -ne $CURPID ] ; then
                        procid[$arraycounter]=$i
                        arraycounter=`expr $arraycounter + 1`
                        ppid=$i
                        FORLOOP=TRUE
                fi
        done
        if [ "$FORLOOP" = "FALSE" ] ; then
           arraycounter=`expr $arraycounter - 1`
           ## We want to kill child process id first and then parent id's
           while [ $arraycounter -ne 0 ]
737 738 739 740 741
           do  
             echo "first we send ctrl-c to program"
             $SUDO kill -INT "${procid[$arraycounter]}"
             sleep 5
             echo "Now we force kill if that didn't work"
742 743 744 745 746 747 748 749 750
             $SUDO kill -9 "${procid[$arraycounter]}" >/dev/null
             arraycounter=`expr $arraycounter - 1`
           done
         exit
        fi
done
}


751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
# get from http://www.linuxjournal.com/content/validating-ip-address-bash-script
validate_ip() {

local  ip=$1
local  stat=1

if [[ $ip =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
    OIFS=$IFS
    IFS='.'
    ip=($ip)
    IFS=$OIFS
    [[ ${ip[0]} -le 255 && ${ip[1]} -le 255 \
        && ${ip[2]} -le 255 && ${ip[3]} -le 255 ]]
    stat=$?
fi

return $stat
Rohit Gupta's avatar
Rohit Gupta committed
768
}