2016-01-15 21:22:14 +00:00
#!/bin/bash
#####################################################################################
2016-02-18 15:41:39 +00:00
# ADS-B RECEIVER #
2016-01-15 21:22:14 +00:00
#####################################################################################
# #
# This script is not meant to be executed directly. #
# Instead execute install.sh to begin the installation process. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
2016-09-02 19:17:31 +00:00
# Copyright (c) 2015-2016 Joseph A. Prochazka #
2016-01-15 21:22:14 +00:00
# #
# Permission is hereby granted, free of charge, to any person obtaining a copy #
# of this software and associated documentation files (the "Software"), to deal #
# in the Software without restriction, including without limitation the rights #
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell #
# copies of the Software, and to permit persons to whom the Software is #
# furnished to do so, subject to the following conditions: #
# #
# The above copyright notice and this permission notice shall be included in all #
# copies or substantial portions of the Software. #
# #
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE #
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, #
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE #
# SOFTWARE. #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
2016-09-02 19:17:31 +00:00
### VARIABLES
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
PROJECTROOTDIRECTORY = " $PWD "
BASHDIRECTORY = " $PROJECTROOTDIRECTORY /bash "
BUILDDIRECTORY = " $PROJECTROOTDIRECTORY /build "
DUMP978BUILDDIRECTORY = " $BUILDDIRECTORY /dump978 "
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
### INCLUDE EXTERNAL SCRIPTS
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
source $BASHDIRECTORY /variables.sh
source $BASHDIRECTORY /functions.sh
### BEGIN SETUP
clear
2016-09-13 18:39:47 +00:00
echo -e " \n\e[91m $ADSB_PROJECTTITLE "
2016-01-20 20:37:02 +00:00
echo ""
2016-09-02 19:17:31 +00:00
echo -e "\e[92m Setting up dump978..."
echo -e "\e[93m----------------------------------------------------------------------------------------------------\e[96m"
2016-01-20 20:37:02 +00:00
echo ""
2016-09-13 18:39:47 +00:00
whiptail --backtitle " $ADSB_PROJECTTITLE " --title "Dump1090-mutability Setup" --yesno "Dump978 is an experimental demodulator/decoder for 978MHz UAT signals.\n\n https://github.com/mutability/dump978\n\nWould you like to continue setup by installing dump978?" 9 78
2016-09-02 19:17:31 +00:00
CONTINUESETUP = $?
if [ $CONTINUESETUP = 1 ] ; then
# Setup has been halted by the user.
echo -e "\e[91m \e[5mINSTALLATION HALTED!\e[25m"
echo -e " Setup has been halted at the request of the user."
echo ""
echo -e "\e[93m-------------------------------------------------------------------------------------------------------"
echo -e "\e[92m Dump978 setup halted.\e[39m"
echo ""
read -p "Press enter to continue..." CONTINUE
exit 1
fi
2016-01-15 21:22:14 +00:00
## CHECK FOR PREREQUISITE PACKAGES
2016-09-02 19:17:31 +00:00
echo -e "\e[95m Installing packages needed to build and fulfill dependencies...\e[97m"
echo ""
2016-01-15 21:22:14 +00:00
CheckPackage git
CheckPackage make
CheckPackage rtl-sdr
CheckPackage librtlsdr-dev
CheckPackage libusb-1.0-0-dev
CheckPackage gcc
2016-01-24 05:10:30 +00:00
CheckPackage netcat
2016-09-02 19:17:31 +00:00
CheckPackage lighttpd
## DOWNLOAD THE DUMP978 SOURCE CODE
echo ""
echo -e "\e[95m Preparing the dump978 Git repository...\e[97m"
echo ""
# Remove the existing dumpp978 build directory if it exists.
if [ -d $DUMP978BUILDDIRECTORY ] ; then
# Delete the current dump978 build directory if it already exists.
2016-09-02 20:47:46 +00:00
echo -e "\e[94m Deleting the existing dump978 Git repository directory...\e[97m"
2016-09-02 19:17:31 +00:00
rm -rf $DUMP978BUILDDIRECTORY
fi
# Clone the dump978 Git repository.
echo -e "\e[94m Entering the ADS-B Receiver Project build directory...\e[97m"
cd $BUILDDIRECTORY
2016-09-02 20:47:46 +00:00
echo -e "\e[94m Cloning the dump978 Git repository locally...\e[97m"
2016-09-02 19:17:31 +00:00
echo ""
git clone https://github.com/mutability/dump978.git
## BUILD THE DUMP978 BINARIES
echo ""
echo -e "\e[95m Building the dump978 binaries...\e[97m"
echo ""
if [ ! $PWD = $DUMP978BUILDDIRECTORY ] ; then
2016-09-02 20:47:46 +00:00
echo -e "\e[94m Entering the dump978 Git repository directory...\e[97m"
2016-09-02 19:17:31 +00:00
cd $DUMP978BUILDDIRECTORY
fi
2016-09-02 20:47:46 +00:00
echo -e "\e[94m Building the dump978 binaries...\e[97m"
2016-09-02 19:17:31 +00:00
echo ""
make all
echo ""
# Check that the dump978 binaries were built.
echo -e "\e[94m Checking that the dump978 binaries were built...\e[97m"
if [ ! -f $DUMP978BUILDDIRECTORY /dump978 ] || [ ! -f $DUMP978BUILDDIRECTORY /uat2esnt ] || [ ! -f $DUMP978BUILDDIRECTORY /uat2json ] || [ ! -f $DUMP978BUILDDIRECTORY /uat2text ] ; then
# If the dump978 binaries could not be found halt setup.
echo ""
echo -e "\e[91m \e[5mINSTALLATION HALTED!\e[25m"
echo -e " UNABLE TO LOCATE THE DUMP978 BINARIES."
echo -e " SETUP HAS BEEN TERMINATED!"
echo ""
echo -e "\e[93mThe dump978 binaries appear to have not been built successfully..\e[39m"
echo ""
echo -e "\e[93m-------------------------------------------------------------------------------------------------------"
echo -e "\e[92m Dump978 setup halted.\e[39m"
echo ""
read -p "Press enter to continue..." CONTINUE
exit 1
fi
## SETUP AND CONFIGURE THE DEVICE TO UTILIZE THE DDUMP978 BINARIES
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
echo ""
echo -e "\e[95m Configuring the device to utilize the dump978 binaries...\e[97m"
echo ""
2016-01-27 04:32:29 +00:00
2016-09-02 19:17:31 +00:00
# Create an RTL-SDR blacklist file so the device does not claim SDR's for other purposes.
echo -e "\e[94m Creating an RTL-SDR kernel module blacklist file...\e[97m"
2016-01-27 05:30:20 +00:00
sudo tee /etc/modprobe.d/rtlsdr-blacklist.conf > /dev/null <<EOF
2016-01-27 04:32:29 +00:00
blacklist dvb_usb_rtl28xxu
blacklist dvb_usb_v2
blacklist rtl_2830
blacklist rtl_2832
blacklist r820t
EOF
2016-09-02 19:17:31 +00:00
echo -e "\e[94m Removing the kernel module dvb_usb_rtl28xxu...\e[97m"
echo ""
2016-01-27 04:32:29 +00:00
sudo rmmod dvb_usb_rtl28xxu
2016-09-02 19:17:31 +00:00
echo ""
2016-01-15 21:22:14 +00:00
# Check if the dump1090-mutability package is installed.
2016-09-02 19:17:31 +00:00
echo -e "\e[94m Checking if the dump1090-mutability package is installed...\e[97m"
2016-01-15 21:22:14 +00:00
if [ $( dpkg-query -W -f= '${STATUS}' dump1090-mutability 2>/dev/null | grep -c "ok installed" ) -eq 1 ] ; then
# The dump1090-mutability package appear to be installed.
2016-09-13 18:39:47 +00:00
whiptail --backtitle " $ADSB_PROJECTTITLE " --title "RTL-SDR Dongle Assignments" --msgbox "It appears the dump1090-mutability package is installed on this device. In order to run dump978 in tandem with dump1090-mutability you will need to specifiy which RTL-SDR dongle each decoder is to use.\n\nKeep in mind in order to run both decoders on a single device you will need to have two separate RTL-SDR devices connected to your device." 12 78
2016-09-02 19:17:31 +00:00
DUMP1090DEVICE_TITLE = "Dump1090 RTL-SDR Dongle"
while [ [ -z $DUMP1090DEVICE ] ] ; do
2016-09-13 18:39:47 +00:00
DUMP1090DEVICE = $( whiptail --backtitle " $ADSB_PROJECTTITLE " --title " $DUMP1090DEVICE_TITLE " --nocancel --inputbox "\nEnter the ID for your dump1090 RTL-SDR dongle." 8 78 3>& 1 1>& 2 2>& 3)
2016-09-02 19:17:31 +00:00
DUMP1090DEVICE_TITLE = "Dump1090 RTL-SDR Dongle (REQUIRED)"
done
DUMP978DEVICE_TITLE = "Dump978 RTL-SDR Dongle"
while [ [ -z $DUMP978DEVICE ] ] ; do
2016-09-13 18:39:47 +00:00
DUMP978DEVICE = $( whiptail --backtitle " $ADSB_PROJECTTITLE " --title " $DUMP978DEVICE_TITLE " --nocancel --inputbox "\nEnter the ID for your dump978 RTL-SDR dongle." 8 78 3>& 1 1>& 2 2>& 3)
2016-09-02 19:17:31 +00:00
DUMP978DEVICE_TITLE = "Dump978 RTL-SDR Dongle (REQUIRED)"
done
# Assign the specified RTL-SDR dongle to dump1090-mutability.
echo -e " \e[94m Assigning RTL-SDR dongle \" $DUMP1090DEVICE \" to dump1090-mutability...\e[97m "
2016-01-20 22:54:36 +00:00
ChangeConfig "DEVICE" $DUMP1090DEVICE "/etc/default/dump1090-mutability"
2016-09-02 19:17:31 +00:00
echo -e "\e[94m Restarting dump1090-mutability...\e[97m"
echo ""
2016-01-15 21:22:14 +00:00
sudo /etc/init.d/dump1090-mutability restart
2016-09-02 19:17:31 +00:00
echo ""
2016-01-15 21:22:14 +00:00
fi
2016-09-02 19:17:31 +00:00
# If a device has not yet been assigned to dump978 assign the first available.
if [ -z $DUMP978DEVICE ] ; then
echo -e "\e[94m Assigning RTL-SDR dongle \"0\" to dump978...\e[97m"
DUMP978DEVICE = "0"
fi
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
# Create the dump978 JSON directory in Lighttpd's document root.
echo -e "\e[94m Getting the path to Lighttpd's document root...\e[97m"
LIGHTTPDDOCUMENTROOTSETTING = ` /usr/sbin/lighttpd -f /etc/lighttpd/lighttpd.conf -p | grep server.document-root`
LIGHTTPDDOCUMENTROOTDIRECTORY = ` sed 's/.*"\(.*\)"[^"]*$/\1/' <<< $LIGHTTPDDOCUMENTROOTSETTING `
echo -e "\e[94m Creating the dump978 JSON data directory within Lighttpd's document root...\e[97m"
sudo mkdir -p $LIGHTTPDDOCUMENTROOTDIRECTORY /dump978/data
echo -e "\e[94m Setting permissions for the dump978 JSON data directory within Lighttpd's document root...\e[97m"
sudo chmod +w $LIGHTTPDDOCUMENTROOTDIRECTORY /dump978/data
# Create the dump978 maintenance script.
echo -e "\e[94m Creating the dump978 maintenance script...\e[97m"
tee $DUMP978BUILDDIRECTORY /dump978-maint.sh > /dev/null <<EOF
2016-01-15 21:22:14 +00:00
#! /bin/sh
2016-01-18 20:50:19 +00:00
2016-09-02 19:17:31 +00:00
# Start dump978 without logging.
2016-01-22 18:39:38 +00:00
while true; do
2016-09-02 19:17:31 +00:00
rtl_sdr -d $DUMP978DEVICE -f 978000000 -s 2083334 -g 48 - | $DUMP978BUILDDIRECTORY /dump978 | $DUMP978BUILDDIRECTORY /uat2json $LIGHTTPDDOCUMENTROOTDIRECTORY /dump978/data | $DUMP978BUILDDIRECTORY /uat2esnt | /bin/nc -q1 127.0.0.1 30001 &
2016-01-27 03:34:43 +00:00
sleep 15
2016-01-22 18:39:38 +00:00
done
2016-01-15 21:22:14 +00:00
EOF
2016-09-02 19:17:31 +00:00
echo -e "\e[94m Setting permissions on the dump978 maintenance script...\e[97m"
chmod +x $DUMP978BUILDDIRECTORY /dump978-maint.sh
# Add the dump978 maintenance script to /etc/rc.local.
echo -e "\e[94m Checking if the file /etc/rc.local is already set to execute the dump978 maintenance script...\e[97m"
if ! grep -Fxq " $DUMP978BUILDDIRECTORY /dump978-maint.sh & " /etc/rc.local; then
echo -e "\e[94m Adding a line to execute the dump978 maintenance script to the file /etc/rc.local...\e[97m"
LINENUMBER = ( $( sed -n '/exit 0/=' /etc/rc.local) )
( ( LINENUMBER>0) ) && sudo sed -i " ${ LINENUMBER [ $(( ${# LINENUMBER [@] } - 1 )) ] } i ${ DUMP978BUILDDIRECTORY } /dump978-maint.sh &\n " /etc/rc.local
2016-01-27 01:00:42 +00:00
fi
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
exit 0
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
## EXECUTE THE MAINTAINANCE SCRIPT TO START DUMP978
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
echo ""
echo -e "\e[95m Starting dump978...\e[97m"
echo ""
echo -e "\e[94m Starting dump978 by executing the dump978 maintenance script...\e[97m"
sudo $DUMP978BUILDDIRECTORY /dump978-maint.sh > /dev/null &
## DUMP978 SETUP COMPLETE
# Enter into the project root directory.
echo -e "\e[94m Entering the ADS-B Receiver Project root directory...\e[97m"
cd $PROJECTROOTDIRECTORY
2016-01-15 21:22:14 +00:00
2016-09-02 19:17:31 +00:00
echo ""
echo -e "\e[93m-------------------------------------------------------------------------------------------------------"
echo -e "\e[92m Dump978 setup is complete.\e[39m"
echo ""
2016-01-15 21:22:14 +00:00
read -p "Press enter to continue..." CONTINUE
2016-09-02 19:17:31 +00:00
exit 0