This file is indexed.

/usr/bin/modes_rx is in gr-air-modes 0.0.0.e47992d-5.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  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
#!/usr/bin/python
#!/usr/bin/env python
# Copyright 2010, 2013 Nick Foster
# 
# This file is part of gr-air-modes
# 
# gr-air-modes is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# 
# gr-air-modes is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with gr-air-modes; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
# 

from gnuradio.eng_option import eng_option
from gnuradio.gr.pubsub import pubsub
from optparse import OptionParser
import time, os, sys, threading, math
from string import split, join
import air_modes
from air_modes.types import *
from air_modes.exceptions import *
import zmq

#todo: maybe move plugins to separate programs (flightgear, SBS1, etc.)
def main():
  my_position = None
  usage = "%prog: [options]"
  optparser = OptionParser(option_class=eng_option, usage=usage)
  air_modes.modes_radio.add_radio_options(optparser)

  optparser.add_option("-l","--location", type="string", default=None,
                       help="GPS coordinates of receiving station in format xx.xxxxx,xx.xxxxx")
  #data source options
  optparser.add_option("-a","--remote", type="string", default=None,
                       help="specify additional servers from which to take data in format tcp://x.x.x.x:y,tcp://....")
  optparser.add_option("-n","--no-print", action="store_true", default=False,
                       help="disable printing decoded packets to stdout")
  #output plugins
  optparser.add_option("-K","--kml", type="string", default=None,
                       help="filename for Google Earth KML output")
  optparser.add_option("-P","--sbs1", action="store_true", default=False,
                       help="open an SBS-1-compatible server on port 30003")
  optparser.add_option("-m","--multiplayer", type="string", default=None,
                       help="FlightGear server to send aircraft data, in format host:port")

  (options, args) = optparser.parse_args()

  #construct the radio
  context = zmq.Context(1)
  tb = air_modes.modes_radio(options, context)
  servers = ["inproc://modes-radio-pub"]
  if options.remote is not None:
    servers += options.remote.split(",")
  relay = air_modes.zmq_pubsub_iface(context, subaddr=servers, pubaddr=None)
  publisher = pubsub()
  relay.subscribe("dl_data", air_modes.make_parser(publisher))

  if options.location is not None:
    my_position = [float(n) for n in options.location.split(",")]

  #CPR decoder obj to handle getting position from BDS0,5 and BDS0,6 pkts
  cpr_dec = air_modes.cpr_decoder(my_position)

  if options.kml is not None:
    dbname = 'adsb.db'
    lock = threading.Lock()
    sqldb = air_modes.output_sql(cpr_dec, dbname, lock, publisher) #input into the db
    kmlgen = air_modes.output_kml(options.kml, dbname, my_position, lock) #create a KML generating thread to read from the db

  if options.no_print is not True:
    printer = air_modes.output_print(cpr_dec, publisher)

  if options.multiplayer is not None:
    [fghost, fgport] = options.multiplayer.split(':')
    fgout = air_modes.output_flightgear(cpr_dec, fghost, int(fgport), publisher)

  if options.sbs1 is True:
    sbs1port = air_modes.output_sbs1(cpr_dec, 30003, publisher)

  tb.run()
  time.sleep(0.2)
  tb.close()
  time.sleep(0.2)
  relay.close()

  if options.kml is not None:
    kmlgen.close()
    

if __name__ == '__main__':
  main()