NON-WORKING
This commit is contained in:
parent
23354574d1
commit
0622f8a9bf
58
bridge.py
58
bridge.py
@ -46,19 +46,16 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from twisted.internet import reactor
|
from twisted.internet import reactor
|
||||||
from twisted.internet import task
|
from twisted.internet import task
|
||||||
from binascii import b2a_hex as h
|
from binascii import b2a_hex as ahex
|
||||||
from time import time
|
from time import time
|
||||||
|
|
||||||
# For debugging
|
|
||||||
from pprint import pprint
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from dmrlink import IPSC, systems, reporting_loop, dmr_nat, logger, hex_str_3, hex_str_4, int_id
|
|
||||||
from dmrlink import CONFIG
|
from dmr_utils.utils import hex_str_3, hex_str_4, int_id
|
||||||
|
|
||||||
|
from dmrlink import IPSC, systems
|
||||||
from ipsc.ipsc_const import BURST_DATA_TYPE
|
from ipsc.ipsc_const import BURST_DATA_TYPE
|
||||||
|
|
||||||
#NETWORKS = CONFIG['SYSTEMS']
|
|
||||||
#REPORTS = CONFIG['REPORTS']
|
|
||||||
|
|
||||||
__author__ = 'Cortney T. Buffington, N0MJS'
|
__author__ = 'Cortney T. Buffington, N0MJS'
|
||||||
__copyright__ = 'Copyright (c) 2013 - 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
__copyright__ = 'Copyright (c) 2013 - 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
||||||
@ -430,16 +427,53 @@ class bridgeIPSC(IPSC):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
||||||
|
# Change the current directory to the location of the application
|
||||||
|
os.chdir(os.path.dirname(os.path.realpath(sys.argv[0])))
|
||||||
|
|
||||||
|
# CLI argument parser - handles picking up the config file from the command line, and sending a "help" message
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument('-c', '--config', action='store', dest='CFG_FILE', help='/full/path/to/config.file (usually dmrlink.cfg)')
|
||||||
|
cli_args = parser.parse_args()
|
||||||
|
|
||||||
|
if not cli_args.CFG_FILE:
|
||||||
|
cli_args.CFG_FILE = os.path.dirname(os.path.abspath(__file__))+'/dmrlink.cfg'
|
||||||
|
|
||||||
|
# Call the external routine to build the configuration dictionary
|
||||||
|
CONFIG = build_config(cli_args.CFG_FILE)
|
||||||
|
|
||||||
|
# Call the external routing to start the system logger
|
||||||
|
logger = config_logging(CONFIG['LOGGER'])
|
||||||
|
|
||||||
|
config_reports(CONFIG)
|
||||||
|
|
||||||
|
|
||||||
logger.info('DMRlink \'bridge.py\' (c) 2013-2015 N0MJS & the K0USY Group - SYSTEM STARTING...')
|
logger.info('DMRlink \'bridge.py\' (c) 2013-2015 N0MJS & the K0USY Group - SYSTEM STARTING...')
|
||||||
|
|
||||||
|
# Shut ourselves down gracefully with the IPSC peers.
|
||||||
|
def sig_handler(_signal, _frame):
|
||||||
|
logger.info('*** DMRLINK IS TERMINATING WITH SIGNAL %s ***', str(_signal))
|
||||||
|
|
||||||
|
for system in systems:
|
||||||
|
this_ipsc = systems[system]
|
||||||
|
logger.info('De-Registering from IPSC %s', system)
|
||||||
|
de_reg_req_pkt = this_ipsc.hashed_packet(this_ipsc._local['AUTH_KEY'], this_ipsc.DE_REG_REQ_PKT)
|
||||||
|
this_ipsc.send_to_ipsc(de_reg_req_pkt)
|
||||||
|
reactor.stop()
|
||||||
|
|
||||||
|
# Set signal handers so that we can gracefully exit if need be
|
||||||
|
for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGQUIT]:
|
||||||
|
signal.signal(sig, sig_handler)
|
||||||
|
|
||||||
# INITIALIZE AN IPSC OBJECT (SELF SUSTAINING) FOR EACH CONFIGUED IPSC
|
# INITIALIZE AN IPSC OBJECT (SELF SUSTAINING) FOR EACH CONFIGUED IPSC
|
||||||
for ipsc_network in CONFIG['SYSTEMS']:
|
for system in CONFIG['SYSTEMS']:
|
||||||
if CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['ENABLED']:
|
if CONFIG['SYSTEMS'][system]['LOCAL']['ENABLED']:
|
||||||
systems[ipsc_network] = bridgeIPSC(ipsc_network)
|
systems[system] = IPSC(system, CONFIG, logger)
|
||||||
reactor.listenUDP(CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['PORT'], systems[ipsc_network], interface=CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['IP'])
|
reactor.listenUDP(CONFIG['SYSTEMS'][system]['LOCAL']['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['LOCAL']['IP'])
|
||||||
|
|
||||||
# INITIALIZE THE REPORTING LOOP IF CONFIGURED
|
# INITIALIZE THE REPORTING LOOP IF CONFIGURED
|
||||||
if CONFIG['REPORTS']['REPORT_NETWORKS']:
|
if CONFIG['REPORTS']['REPORT_NETWORKS']:
|
||||||
|
config_reporting_loop(CONFIG['REPORTS']['REPORT_NETWORKS'])
|
||||||
reporting = task.LoopingCall(reporting_loop)
|
reporting = task.LoopingCall(reporting_loop)
|
||||||
reporting.start(CONFIG['REPORTS']['REPORT_INTERVAL'])
|
reporting.start(CONFIG['REPORTS']['REPORT_INTERVAL'])
|
||||||
|
|
||||||
|
114
dmr_utils.py
114
dmr_utils.py
@ -1,114 +0,0 @@
|
|||||||
#!/usr/bin/env python
|
|
||||||
#
|
|
||||||
###############################################################################
|
|
||||||
# Copyright (C) 2016 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
|
||||||
#
|
|
||||||
# This program 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 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# This program 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 this program; if not, write to the Free Software Foundation,
|
|
||||||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
###############################################################################
|
|
||||||
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
import os
|
|
||||||
|
|
||||||
from time import time
|
|
||||||
from urllib import URLopener
|
|
||||||
from csv import reader as csv_reader
|
|
||||||
from binascii import b2a_hex as ahex
|
|
||||||
|
|
||||||
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
|
|
||||||
__author__ = 'Cortney T. Buffington, N0MJS'
|
|
||||||
__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
|
||||||
__credits__ = 'Colin Durbridge, G4EML, Steve Zingman, N4IRS; Mike Zingman'
|
|
||||||
__license__ = 'GNU GPLv3'
|
|
||||||
__maintainer__ = 'Cort Buffington, N0MJS'
|
|
||||||
__email__ = 'n0mjs@me.com'
|
|
||||||
|
|
||||||
#************************************************
|
|
||||||
# STRING UTILITY FUNCTIONS
|
|
||||||
#************************************************
|
|
||||||
|
|
||||||
# Create a 2 byte hex string from an integer
|
|
||||||
def hex_str_2(_int_id):
|
|
||||||
try:
|
|
||||||
return format(_int_id,'x').rjust(4,'0').decode('hex')
|
|
||||||
except TypeError:
|
|
||||||
raise
|
|
||||||
|
|
||||||
# Create a 3 byte hex string from an integer
|
|
||||||
def hex_str_3(_int_id):
|
|
||||||
try:
|
|
||||||
return format(_int_id,'x').rjust(6,'0').decode('hex')
|
|
||||||
except TypeError:
|
|
||||||
raise
|
|
||||||
|
|
||||||
# Create a 4 byte hex string from an integer
|
|
||||||
def hex_str_4(_int_id):
|
|
||||||
try:
|
|
||||||
return format(_int_id,'x').rjust(8,'0').decode('hex')
|
|
||||||
except TypeError:
|
|
||||||
raise
|
|
||||||
|
|
||||||
# Convert a hex string to an int (radio ID, etc.)
|
|
||||||
def int_id(_hex_string):
|
|
||||||
return int(ahex(_hex_string), 16)
|
|
||||||
|
|
||||||
|
|
||||||
#************************************************
|
|
||||||
# ID ALIAS FUNCTIONS
|
|
||||||
#************************************************
|
|
||||||
|
|
||||||
# Download and build dictionaries for mapping number to aliases
|
|
||||||
# Used by applications. These lookups take time, please do not shove them
|
|
||||||
# into this file everywhere and send a pull request!!!
|
|
||||||
# Download a new file if it doesn't exist, or is older than the stale time
|
|
||||||
def try_download(_path, _file, _url, _stale,):
|
|
||||||
now = time()
|
|
||||||
url = URLopener()
|
|
||||||
file_exists = os.path.isfile(_path+_file) == True
|
|
||||||
if file_exists:
|
|
||||||
file_old = (os.path.getmtime(_path+_file) + _stale) < now
|
|
||||||
if not file_exists or (file_exists and file_old):
|
|
||||||
try:
|
|
||||||
url.retrieve(_url, _path+_file)
|
|
||||||
result = 'ID ALIAS MAPPER: \'{}\' successfully downloaded'.format(_file)
|
|
||||||
except IOError:
|
|
||||||
result = 'ID ALIAS MAPPER: \'{}\' could not be downloaded'.format(_file)
|
|
||||||
else:
|
|
||||||
result = 'ID ALIAS MAPPER: \'{}\' is current, not downloaded'.format(_file)
|
|
||||||
url.close()
|
|
||||||
return result
|
|
||||||
|
|
||||||
def mk_id_dict(_path, _file):
|
|
||||||
dict = {}
|
|
||||||
try:
|
|
||||||
with open(_path+_file, 'rU') as _handle:
|
|
||||||
ids = csv_reader(_handle, dialect='excel', delimiter=',')
|
|
||||||
for row in ids:
|
|
||||||
dict[int(row[0])] = (row[1])
|
|
||||||
_handle.close
|
|
||||||
return dict
|
|
||||||
except IOError:
|
|
||||||
return dict
|
|
||||||
|
|
||||||
def get_info(_id, _dict):
|
|
||||||
if _id in _dict:
|
|
||||||
return _dict[_id]
|
|
||||||
return _id
|
|
||||||
|
|
||||||
def get_alias(_id, _dict):
|
|
||||||
_int_id = int_id(_id)
|
|
||||||
if _int_id in _dict:
|
|
||||||
return _dict[_int_id]
|
|
||||||
return _int_id
|
|
262
dmrlink.py
262
dmrlink.py
@ -42,22 +42,17 @@ from socket import inet_ntoa as IPAddr
|
|||||||
from socket import inet_aton as IPHexStr
|
from socket import inet_aton as IPHexStr
|
||||||
from time import time
|
from time import time
|
||||||
from cPickle import dump as pickle_dump
|
from cPickle import dump as pickle_dump
|
||||||
from dmr_utils.utils import int_id
|
|
||||||
|
|
||||||
from twisted.internet.protocol import DatagramProtocol
|
from twisted.internet.protocol import DatagramProtocol
|
||||||
from twisted.internet import reactor
|
from twisted.internet import reactor
|
||||||
from twisted.internet import task
|
from twisted.internet import task
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
from ipsc.ipsc_const import *
|
from ipsc.ipsc_const import *
|
||||||
from ipsc.ipsc_mask import *
|
from ipsc.ipsc_mask import *
|
||||||
from dmrlink_config import build_config
|
from dmrlink_config import build_config
|
||||||
from dmrlink_log import config_logging
|
from dmrlink_log import config_logging
|
||||||
|
from dmr_utils.utils import hex_str_2, hex_str_3, hex_str_4, int_id
|
||||||
|
|
||||||
=======
|
|
||||||
from dmr_utils import hex_str_2, hex_str_3, hex_str_4, int_id
|
|
||||||
from dmrlink_config import build_config
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
|
|
||||||
__author__ = 'Cortney T. Buffington, N0MJS'
|
__author__ = 'Cortney T. Buffington, N0MJS'
|
||||||
__copyright__ = 'Copyright (c) 2013 - 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
__copyright__ = 'Copyright (c) 2013 - 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
||||||
@ -66,7 +61,7 @@ __license__ = 'GNU GPLv3'
|
|||||||
__maintainer__ = 'Cort Buffington, N0MJS'
|
__maintainer__ = 'Cort Buffington, N0MJS'
|
||||||
__email__ = 'n0mjs@me.com'
|
__email__ = 'n0mjs@me.com'
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
# Global variables used whether we are a module or __main__
|
# Global variables used whether we are a module or __main__
|
||||||
systems = {}
|
systems = {}
|
||||||
|
|
||||||
@ -98,95 +93,6 @@ def config_reporting_loop(_type):
|
|||||||
def reporting_loop():
|
def reporting_loop():
|
||||||
logger.debug('Periodic Reporting Loop Started (NULL)')
|
logger.debug('Periodic Reporting Loop Started (NULL)')
|
||||||
|
|
||||||
=======
|
|
||||||
# Global variables for all class instances
|
|
||||||
systems = {}
|
|
||||||
|
|
||||||
#************************************************
|
|
||||||
# CONFIGURE THE SYSTEM LOGGER
|
|
||||||
#************************************************
|
|
||||||
|
|
||||||
def config_logging(_logger):
|
|
||||||
dictConfig({
|
|
||||||
'version': 1,
|
|
||||||
'disable_existing_loggers': False,
|
|
||||||
'filters': {
|
|
||||||
},
|
|
||||||
'formatters': {
|
|
||||||
'verbose': {
|
|
||||||
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
|
|
||||||
},
|
|
||||||
'timed': {
|
|
||||||
'format': '%(levelname)s %(asctime)s %(message)s'
|
|
||||||
},
|
|
||||||
'simple': {
|
|
||||||
'format': '%(levelname)s %(message)s'
|
|
||||||
},
|
|
||||||
'syslog': {
|
|
||||||
'format': '%(name)s (%(process)d): %(levelname)s %(message)s'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'handlers': {
|
|
||||||
'null': {
|
|
||||||
'class': 'logging.NullHandler'
|
|
||||||
},
|
|
||||||
'console': {
|
|
||||||
'class': 'logging.StreamHandler',
|
|
||||||
'formatter': 'simple'
|
|
||||||
},
|
|
||||||
'console-timed': {
|
|
||||||
'class': 'logging.StreamHandler',
|
|
||||||
'formatter': 'timed'
|
|
||||||
},
|
|
||||||
'file': {
|
|
||||||
'class': 'logging.FileHandler',
|
|
||||||
'formatter': 'simple',
|
|
||||||
'filename': _logger['LOG_FILE'],
|
|
||||||
},
|
|
||||||
'file-timed': {
|
|
||||||
'class': 'logging.FileHandler',
|
|
||||||
'formatter': 'timed',
|
|
||||||
'filename': _logger['LOG_FILE'],
|
|
||||||
},
|
|
||||||
'syslog': {
|
|
||||||
'class': 'logging.handlers.SysLogHandler',
|
|
||||||
'formatter': 'syslog',
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'loggers': {
|
|
||||||
_logger['LOG_NAME']: {
|
|
||||||
'handlers': _logger['LOG_HANDLERS'].split(','),
|
|
||||||
'level': _logger['LOG_LEVEL'],
|
|
||||||
'propagate': True,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
return logging.getLogger(_logger['LOG_NAME'])
|
|
||||||
|
|
||||||
|
|
||||||
#************************************************
|
|
||||||
# IMPORTING OTHER FILES - '#include'
|
|
||||||
#************************************************
|
|
||||||
|
|
||||||
# Import IPSC message types and version information
|
|
||||||
#
|
|
||||||
try:
|
|
||||||
from ipsc.ipsc_const import *
|
|
||||||
except ImportError:
|
|
||||||
sys.exit('IPSC message types file not found or invalid')
|
|
||||||
|
|
||||||
# Import IPSC flag mask values
|
|
||||||
#
|
|
||||||
try:
|
|
||||||
from ipsc.ipsc_mask import *
|
|
||||||
except ImportError:
|
|
||||||
sys.exit('IPSC mask values file not found or invalid')
|
|
||||||
|
|
||||||
|
|
||||||
#************************************************
|
|
||||||
# UTILITY FUNCTIONS FOR INTERNAL USE
|
|
||||||
#************************************************
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
|
|
||||||
# Determine if the provided peer ID is valid for the provided network
|
# Determine if the provided peer ID is valid for the provided network
|
||||||
#
|
#
|
||||||
@ -416,8 +322,6 @@ def print_master(_network):
|
|||||||
print('\t\tStatus: {}, KeepAlives Sent: {}, KeepAlives Outstanding: {}, KeepAlives Missed: {}' .format(_master['STATUS']['CONNECTED'], _master['STATUS']['KEEP_ALIVES_SENT'], _master['STATUS']['KEEP_ALIVES_OUTSTANDING'], _master['STATUS']['KEEP_ALIVES_MISSED']))
|
print('\t\tStatus: {}, KeepAlives Sent: {}, KeepAlives Outstanding: {}, KeepAlives Missed: {}' .format(_master['STATUS']['CONNECTED'], _master['STATUS']['KEEP_ALIVES_SENT'], _master['STATUS']['KEEP_ALIVES_OUTSTANDING'], _master['STATUS']['KEEP_ALIVES_MISSED']))
|
||||||
print('\t\t KeepAlives Received: {}, Last KeepAlive Received at: {}' .format(_master['STATUS']['KEEP_ALIVES_RECEIVED'], _master['STATUS']['KEEP_ALIVE_RX_TIME']))
|
print('\t\t KeepAlives Received: {}, Last KeepAlive Received at: {}' .format(_master['STATUS']['KEEP_ALIVES_RECEIVED'], _master['STATUS']['KEEP_ALIVE_RX_TIME']))
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
=======
|
|
||||||
|
|
||||||
# Timed loop used for reporting IPSC status
|
# Timed loop used for reporting IPSC status
|
||||||
#
|
#
|
||||||
@ -447,40 +351,22 @@ def config_reports(_config):
|
|||||||
logger.debug('Periodic Reporting Loop Started (NULL)')
|
logger.debug('Periodic Reporting Loop Started (NULL)')
|
||||||
|
|
||||||
|
|
||||||
# Shut ourselves down gracefully with the IPSC peers.
|
|
||||||
#
|
|
||||||
def handler(_signal, _frame):
|
|
||||||
logger.info('*** DMRLINK IS TERMINATING WITH SIGNAL %s ***', str(_signal))
|
|
||||||
|
|
||||||
for system in systems:
|
|
||||||
this_ipsc = systems[system]
|
|
||||||
logger.info('De-Registering from IPSC %s', system)
|
|
||||||
de_reg_req_pkt = this_ipsc.hashed_packet(this_ipsc._local['AUTH_KEY'], this_ipsc.DE_REG_REQ_PKT)
|
|
||||||
this_ipsc.send_to_ipsc(de_reg_req_pkt)
|
|
||||||
|
|
||||||
reactor.stop()
|
|
||||||
|
|
||||||
# Set signal handers so that we can gracefully exit if need be
|
|
||||||
for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGQUIT]:
|
|
||||||
signal.signal(sig, handler)
|
|
||||||
|
|
||||||
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
|
|
||||||
#************************************************
|
#************************************************
|
||||||
# IPSC CLASS
|
# IPSC CLASS
|
||||||
#************************************************
|
#************************************************
|
||||||
|
|
||||||
class IPSC(DatagramProtocol):
|
class IPSC(DatagramProtocol):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, _name, _config, _logger):
|
||||||
if len(args) == 1:
|
|
||||||
# Housekeeping: create references to the configuration and status data for this IPSC instance.
|
# Housekeeping: create references to the configuration and status data for this IPSC instance.
|
||||||
# Some configuration objects that are used frequently and have lengthy names are shortened
|
# Some configuration objects that are used frequently and have lengthy names are shortened
|
||||||
# such as (self._master_sock) expands to (self._config['MASTER']['IP'], self._config['MASTER']['PORT']).
|
# such as (self._master_sock) expands to (self._config['MASTER']['IP'], self._config['MASTER']['PORT']).
|
||||||
# Note that many of them reference each other... this is the Pythonic way.
|
# Note that many of them reference each other... this is the Pythonic way.
|
||||||
#
|
#
|
||||||
self._network = args[0]
|
self._system = _name
|
||||||
self._config = CONFIG['SYSTEMS'][self._network]
|
self._CONFIG = _config
|
||||||
|
self._logger = _logger
|
||||||
|
self._config = self._CONFIG['SYSTEMS'][self._system]
|
||||||
#
|
#
|
||||||
self._local = self._config['LOCAL']
|
self._local = self._config['LOCAL']
|
||||||
self._local_id = self._local['RADIO_ID']
|
self._local_id = self._local['RADIO_ID']
|
||||||
@ -521,12 +407,7 @@ class IPSC(DatagramProtocol):
|
|||||||
self.DE_REG_REQ_PKT = (DE_REG_REQ + self._local_id)
|
self.DE_REG_REQ_PKT = (DE_REG_REQ + self._local_id)
|
||||||
self.DE_REG_REPLY_PKT = (DE_REG_REPLY + self._local_id)
|
self.DE_REG_REPLY_PKT = (DE_REG_REPLY + self._local_id)
|
||||||
#
|
#
|
||||||
logger.info('(%s) IPSC Instance Created: %s, %s:%s', self._network, int_id(self._local['RADIO_ID']), self._local['IP'], self._local['PORT'])
|
logger.info('(%s) IPSC Instance Created: %s, %s:%s', self._system, int_id(self._local['RADIO_ID']), self._local['IP'], self._local['PORT'])
|
||||||
else:
|
|
||||||
# If we didn't get called correctly, log it!
|
|
||||||
#
|
|
||||||
logger.error('(%s) IPSC Instance Could Not be Created... Exiting', self._network)
|
|
||||||
sys.exit()
|
|
||||||
|
|
||||||
|
|
||||||
#************************************************
|
#************************************************
|
||||||
@ -576,7 +457,7 @@ class IPSC(DatagramProtocol):
|
|||||||
_packet = _packet + _hash
|
_packet = _packet + _hash
|
||||||
self.transport.write(_packet, (_host, _port))
|
self.transport.write(_packet, (_host, _port))
|
||||||
# USE THE FOLLOWING ONLY UNDER DIRE CIRCUMSTANCES -- PERFORMANCE IS ADVERSLY AFFECTED!
|
# USE THE FOLLOWING ONLY UNDER DIRE CIRCUMSTANCES -- PERFORMANCE IS ADVERSLY AFFECTED!
|
||||||
#logger.debug('(%s) TX Packet to %s on port %s: %s', self._network, _host, _port, ahex(_packet))
|
#logger.debug('(%s) TX Packet to %s on port %s: %s', self._system, _host, _port, ahex(_packet))
|
||||||
|
|
||||||
# Accept a complete packet, ready to be sent, and send it to all active peers + master in an IPSC
|
# Accept a complete packet, ready to be sent, and send it to all active peers + master in an IPSC
|
||||||
#
|
#
|
||||||
@ -608,12 +489,12 @@ class IPSC(DatagramProtocol):
|
|||||||
self._peers[_peerid]['FLAGS_DECODE'] = _decoded_flags
|
self._peers[_peerid]['FLAGS_DECODE'] = _decoded_flags
|
||||||
self.send_packet(self.PEER_ALIVE_REPLY_PKT, (_host, _port))
|
self.send_packet(self.PEER_ALIVE_REPLY_PKT, (_host, _port))
|
||||||
self.reset_keep_alive(_peerid) # Might as well reset our own counter, we know it's out there...
|
self.reset_keep_alive(_peerid) # Might as well reset our own counter, we know it's out there...
|
||||||
logger.debug('(%s) Keep-Alive reply sent to Peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
|
logger.debug('(%s) Keep-Alive reply sent to Peer %s, %s:%s', self._system, int_id(_peerid), _host, _port)
|
||||||
|
|
||||||
# SOMEONE WANTS TO REGISTER WITH US - WE'RE COOL WITH THAT
|
# SOMEONE WANTS TO REGISTER WITH US - WE'RE COOL WITH THAT
|
||||||
def peer_reg_req(self, _peerid, _host, _port):
|
def peer_reg_req(self, _peerid, _host, _port):
|
||||||
self.send_packet(self.PEER_REG_REPLY_PKT, (_host, _port))
|
self.send_packet(self.PEER_REG_REPLY_PKT, (_host, _port))
|
||||||
logger.info('(%s) Peer Registration Request From: %s, %s:%s', self._network, int_id(_peerid), _host, _port)
|
logger.info('(%s) Peer Registration Request From: %s, %s:%s', self._system, int_id(_peerid), _host, _port)
|
||||||
|
|
||||||
|
|
||||||
# SOMEONE HAS ANSWERED OUR KEEP-ALIVE REQUEST - KEEP TRACK OF IT
|
# SOMEONE HAS ANSWERED OUR KEEP-ALIVE REQUEST - KEEP TRACK OF IT
|
||||||
@ -621,27 +502,27 @@ class IPSC(DatagramProtocol):
|
|||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self._peers[_peerid]['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
self._peers[_peerid]['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
||||||
self._peers[_peerid]['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
self._peers[_peerid]['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
||||||
logger.debug('(%s) Keep-Alive Reply (we sent the request) Received from Peer %s, %s:%s', self._network, int_id(_peerid), self._peers[_peerid]['IP'], self._peers[_peerid]['PORT'])
|
logger.debug('(%s) Keep-Alive Reply (we sent the request) Received from Peer %s, %s:%s', self._system, int_id(_peerid), self._peers[_peerid]['IP'], self._peers[_peerid]['PORT'])
|
||||||
|
|
||||||
# SOMEONE HAS ANSWERED OUR REQEST TO REGISTER WITH THEM - KEEP TRACK OF IT
|
# SOMEONE HAS ANSWERED OUR REQEST TO REGISTER WITH THEM - KEEP TRACK OF IT
|
||||||
def peer_reg_reply(self, _peerid):
|
def peer_reg_reply(self, _peerid):
|
||||||
if _peerid in self._peers.keys():
|
if _peerid in self._peers.keys():
|
||||||
self._peers[_peerid]['STATUS']['CONNECTED'] = True
|
self._peers[_peerid]['STATUS']['CONNECTED'] = True
|
||||||
logger.info('(%s) Registration Reply From: %s, %s:%s', self._network, int_id(_peerid), self._peers[_peerid]['IP'], self._peers[_peerid]['PORT'])
|
logger.info('(%s) Registration Reply From: %s, %s:%s', self._system, int_id(_peerid), self._peers[_peerid]['IP'], self._peers[_peerid]['PORT'])
|
||||||
|
|
||||||
# OUR MASTER HAS ANSWERED OUR KEEP-ALIVE REQUEST - KEEP TRACK OF IT
|
# OUR MASTER HAS ANSWERED OUR KEEP-ALIVE REQUEST - KEEP TRACK OF IT
|
||||||
def master_alive_reply(self, _peerid):
|
def master_alive_reply(self, _peerid):
|
||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self._master['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
self._master['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
||||||
self._master['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
self._master['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
||||||
logger.debug('(%s) Keep-Alive Reply (we sent the request) Received from the Master %s, %s:%s', self._network, int_id(_peerid), self._master['IP'], self._master['PORT'])
|
logger.debug('(%s) Keep-Alive Reply (we sent the request) Received from the Master %s, %s:%s', self._system, int_id(_peerid), self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# OUR MASTER HAS SENT US A PEER LIST - PROCESS IT
|
# OUR MASTER HAS SENT US A PEER LIST - PROCESS IT
|
||||||
def peer_list_reply(self, _data, _peerid):
|
def peer_list_reply(self, _data, _peerid):
|
||||||
CONFIG['SYSTEMS'][self._network]['MASTER']['STATUS']['PEER_LIST'] = True
|
CONFIG['SYSTEMS'][self._system]['MASTER']['STATUS']['PEER_LIST'] = True
|
||||||
if len(_data) > 18:
|
if len(_data) > 18:
|
||||||
process_peer_list(_data, self._network)
|
process_peer_list(_data, self._system)
|
||||||
logger.debug('(%s) Peer List Reply Received From Master %s, %s:%s', self._network, int_id(_peerid), self._master['IP'], self._master['PORT'])
|
logger.debug('(%s) Peer List Reply Received From Master %s, %s:%s', self._system, int_id(_peerid), self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# OUR MASTER HAS ANSWERED OUR REQUEST TO REGISTER - LOTS OF INFORMATION TO TRACK
|
# OUR MASTER HAS ANSWERED OUR REQUEST TO REGISTER - LOTS OF INFORMATION TO TRACK
|
||||||
def master_reg_reply(self, _data, _peerid):
|
def master_reg_reply(self, _data, _peerid):
|
||||||
@ -659,7 +540,7 @@ class IPSC(DatagramProtocol):
|
|||||||
self._master['FLAGS_DECODE'] = _decoded_flags
|
self._master['FLAGS_DECODE'] = _decoded_flags
|
||||||
self._master_stat['CONNECTED'] = True
|
self._master_stat['CONNECTED'] = True
|
||||||
self._master_stat['KEEP_ALIVES_OUTSTANDING'] = 0
|
self._master_stat['KEEP_ALIVES_OUTSTANDING'] = 0
|
||||||
logger.warning('(%s) Registration response (we requested reg) from the Master: %s, %s:%s (%s peers)', self._network, int_id(_peerid), self._master['IP'], self._master['PORT'], self._local['NUM_PEERS'])
|
logger.warning('(%s) Registration response (we requested reg) from the Master: %s, %s:%s (%s peers)', self._system, int_id(_peerid), self._master['IP'], self._master['PORT'], self._local['NUM_PEERS'])
|
||||||
|
|
||||||
# WE ARE MASTER AND SOMEONE HAS REQUESTED REGISTRATION FROM US - ANSWER IT
|
# WE ARE MASTER AND SOMEONE HAS REQUESTED REGISTRATION FROM US - ANSWER IT
|
||||||
def master_reg_req(self, _data, _peerid, _host, _port):
|
def master_reg_req(self, _data, _peerid, _host, _port):
|
||||||
@ -672,7 +553,7 @@ class IPSC(DatagramProtocol):
|
|||||||
|
|
||||||
self.MASTER_REG_REPLY_PKT = (MASTER_REG_REPLY + self._local_id + self.TS_FLAGS + hex_str_2(self._local['NUM_PEERS']) + IPSC_VER)
|
self.MASTER_REG_REPLY_PKT = (MASTER_REG_REPLY + self._local_id + self.TS_FLAGS + hex_str_2(self._local['NUM_PEERS']) + IPSC_VER)
|
||||||
self.send_packet(self.MASTER_REG_REPLY_PKT, (_host, _port))
|
self.send_packet(self.MASTER_REG_REPLY_PKT, (_host, _port))
|
||||||
logger.info('(%s) Master Registration Packet Received from peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
|
logger.info('(%s) Master Registration Packet Received from peer %s, %s:%s', self._system, int_id(_peerid), _host, _port)
|
||||||
|
|
||||||
# If this entry was NOT already in our list, add it.
|
# If this entry was NOT already in our list, add it.
|
||||||
if _peerid not in self._peers.keys():
|
if _peerid not in self._peers.keys():
|
||||||
@ -693,7 +574,7 @@ class IPSC(DatagramProtocol):
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
self._local['NUM_PEERS'] = len(self._peers)
|
self._local['NUM_PEERS'] = len(self._peers)
|
||||||
logger.debug('(%s) Peer Added To Peer List: %s, %s:%s (IPSC now has %s Peers)', self._network, self._peers[_peerid], _host, _port, self._local['NUM_PEERS'])
|
logger.debug('(%s) Peer Added To Peer List: %s, %s:%s (IPSC now has %s Peers)', self._system, self._peers[_peerid], _host, _port, self._local['NUM_PEERS'])
|
||||||
|
|
||||||
# WE ARE MASTER AND SOEMONE SENT US A KEEP-ALIVE - ANSWER IT, TRACK IT
|
# WE ARE MASTER AND SOEMONE SENT US A KEEP-ALIVE - ANSWER IT, TRACK IT
|
||||||
def master_alive_req(self, _peerid, _host, _port):
|
def master_alive_req(self, _peerid, _host, _port):
|
||||||
@ -701,17 +582,17 @@ class IPSC(DatagramProtocol):
|
|||||||
self._peers[_peerid]['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
self._peers[_peerid]['STATUS']['KEEP_ALIVES_RECEIVED'] += 1
|
||||||
self._peers[_peerid]['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
self._peers[_peerid]['STATUS']['KEEP_ALIVE_RX_TIME'] = int(time())
|
||||||
self.send_packet(self.MASTER_ALIVE_REPLY_PKT, (_host, _port))
|
self.send_packet(self.MASTER_ALIVE_REPLY_PKT, (_host, _port))
|
||||||
logger.debug('(%s) Master Keep-Alive Request Received from peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
|
logger.debug('(%s) Master Keep-Alive Request Received from peer %s, %s:%s', self._system, int_id(_peerid), _host, _port)
|
||||||
else:
|
else:
|
||||||
logger.warning('(%s) Master Keep-Alive Request Received from *UNREGISTERED* peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
|
logger.warning('(%s) Master Keep-Alive Request Received from *UNREGISTERED* peer %s, %s:%s', self._system, int_id(_peerid), _host, _port)
|
||||||
|
|
||||||
# WE ARE MASTER AND A PEER HAS REQUESTED A PEER LIST - SEND THEM ONE
|
# WE ARE MASTER AND A PEER HAS REQUESTED A PEER LIST - SEND THEM ONE
|
||||||
def peer_list_req(self, _peerid):
|
def peer_list_req(self, _peerid):
|
||||||
if _peerid in self._peers.keys():
|
if _peerid in self._peers.keys():
|
||||||
logger.debug('(%s) Peer List Request from peer %s', self._network, int_id(_peerid))
|
logger.debug('(%s) Peer List Request from peer %s', self._system, int_id(_peerid))
|
||||||
self.send_to_ipsc(self.PEER_LIST_REPLY_PKT + build_peer_list(self._peers))
|
self.send_to_ipsc(self.PEER_LIST_REPLY_PKT + build_peer_list(self._peers))
|
||||||
else:
|
else:
|
||||||
logger.warning('(%s) Peer List Request Received from *UNREGISTERED* peer %s', self._network, int_id(_peerid))
|
logger.warning('(%s) Peer List Request Received from *UNREGISTERED* peer %s', self._system, int_id(_peerid))
|
||||||
|
|
||||||
|
|
||||||
# Reset the outstanding keep-alive counter for _peerid...
|
# Reset the outstanding keep-alive counter for _peerid...
|
||||||
@ -780,45 +661,45 @@ class IPSC(DatagramProtocol):
|
|||||||
# Timed loop used for IPSC connection Maintenance when we are the MASTER
|
# Timed loop used for IPSC connection Maintenance when we are the MASTER
|
||||||
#
|
#
|
||||||
def master_maintenance_loop(self):
|
def master_maintenance_loop(self):
|
||||||
logger.debug('(%s) MASTER Connection Maintenance Loop Started', self._network)
|
logger.debug('(%s) MASTER Connection Maintenance Loop Started', self._system)
|
||||||
update_time = int(time())
|
update_time = int(time())
|
||||||
|
|
||||||
for peer in self._peers.keys():
|
for peer in self._peers.keys():
|
||||||
keep_alive_delta = update_time - self._peers[peer]['STATUS']['KEEP_ALIVE_RX_TIME']
|
keep_alive_delta = update_time - self._peers[peer]['STATUS']['KEEP_ALIVE_RX_TIME']
|
||||||
logger.debug('(%s) Time Since Last KeepAlive Request from Peer %s: %s seconds', self._network, int_id(peer), keep_alive_delta)
|
logger.debug('(%s) Time Since Last KeepAlive Request from Peer %s: %s seconds', self._system, int_id(peer), keep_alive_delta)
|
||||||
|
|
||||||
if keep_alive_delta > 120:
|
if keep_alive_delta > 120:
|
||||||
de_register_peer(self._network, peer)
|
de_register_peer(self._system, peer)
|
||||||
self.send_to_ipsc(self.PEER_LIST_REPLY_PKT + build_peer_list(self._peers))
|
self.send_to_ipsc(self.PEER_LIST_REPLY_PKT + build_peer_list(self._peers))
|
||||||
logger.warning('(%s) Timeout Exceeded for Peer %s, De-registering', self._network, int_id(peer))
|
logger.warning('(%s) Timeout Exceeded for Peer %s, De-registering', self._system, int_id(peer))
|
||||||
|
|
||||||
# Timed loop used for IPSC connection Maintenance when we are a PEER
|
# Timed loop used for IPSC connection Maintenance when we are a PEER
|
||||||
#
|
#
|
||||||
def peer_maintenance_loop(self):
|
def peer_maintenance_loop(self):
|
||||||
logger.debug('(%s) PEER Connection Maintenance Loop Started', self._network)
|
logger.debug('(%s) PEER Connection Maintenance Loop Started', self._system)
|
||||||
|
|
||||||
# If the master isn't connected, we have to do that before we can do anything else!
|
# If the master isn't connected, we have to do that before we can do anything else!
|
||||||
#
|
#
|
||||||
if not self._master_stat['CONNECTED']:
|
if not self._master_stat['CONNECTED']:
|
||||||
self.send_packet(self.MASTER_REG_REQ_PKT, self._master_sock)
|
self.send_packet(self.MASTER_REG_REQ_PKT, self._master_sock)
|
||||||
logger.info('(%s) Registering with the Master: %s:%s', self._network, self._master['IP'], self._master['PORT'])
|
logger.info('(%s) Registering with the Master: %s:%s', self._system, self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# Once the master is connected, we have to send keep-alives.. and make sure we get them back
|
# Once the master is connected, we have to send keep-alives.. and make sure we get them back
|
||||||
elif self._master_stat['CONNECTED']:
|
elif self._master_stat['CONNECTED']:
|
||||||
# Send keep-alive to the master
|
# Send keep-alive to the master
|
||||||
self.send_packet(self.MASTER_ALIVE_PKT, self._master_sock)
|
self.send_packet(self.MASTER_ALIVE_PKT, self._master_sock)
|
||||||
logger.debug('(%s) Keep Alive Sent to the Master: %s, %s:%s', self._network, int_id(self._master['RADIO_ID']) ,self._master['IP'], self._master['PORT'])
|
logger.debug('(%s) Keep Alive Sent to the Master: %s, %s:%s', self._system, int_id(self._master['RADIO_ID']) ,self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# If we had a keep-alive outstanding by the time we send another, mark it missed.
|
# If we had a keep-alive outstanding by the time we send another, mark it missed.
|
||||||
if (self._master_stat['KEEP_ALIVES_OUTSTANDING']) > 0:
|
if (self._master_stat['KEEP_ALIVES_OUTSTANDING']) > 0:
|
||||||
self._master_stat['KEEP_ALIVES_MISSED'] += 1
|
self._master_stat['KEEP_ALIVES_MISSED'] += 1
|
||||||
logger.info('(%s) Master Keep-Alive Missed: %s:%s', self._network, self._master['IP'], self._master['PORT'])
|
logger.info('(%s) Master Keep-Alive Missed: %s:%s', self._system, self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# If we have missed too many keep-alives, de-register the master and start over.
|
# If we have missed too many keep-alives, de-register the master and start over.
|
||||||
if self._master_stat['KEEP_ALIVES_OUTSTANDING'] >= self._local['MAX_MISSED']:
|
if self._master_stat['KEEP_ALIVES_OUTSTANDING'] >= self._local['MAX_MISSED']:
|
||||||
self._master_stat['CONNECTED'] = False
|
self._master_stat['CONNECTED'] = False
|
||||||
self._master_stat['KEEP_ALIVES_OUTSTANDING'] = 0
|
self._master_stat['KEEP_ALIVES_OUTSTANDING'] = 0
|
||||||
logger.error('(%s) Maximum Master Keep-Alives Missed -- De-registering the Master: %s:%s', self._network, self._master['IP'], self._master['PORT'])
|
logger.error('(%s) Maximum Master Keep-Alives Missed -- De-registering the Master: %s:%s', self._system, self._master['IP'], self._master['PORT'])
|
||||||
|
|
||||||
# Update our stats before we move on...
|
# Update our stats before we move on...
|
||||||
self._master_stat['KEEP_ALIVES_SENT'] += 1
|
self._master_stat['KEEP_ALIVES_SENT'] += 1
|
||||||
@ -826,7 +707,7 @@ class IPSC(DatagramProtocol):
|
|||||||
|
|
||||||
else:
|
else:
|
||||||
# This is bad. If we get this message, we need to reset the state and try again
|
# This is bad. If we get this message, we need to reset the state and try again
|
||||||
logger.error('->> (%s) Master in UNKOWN STATE: %s:%s', self._network, self._master_sock)
|
logger.error('->> (%s) Master in UNKOWN STATE: %s:%s', self._system, self._master_sock)
|
||||||
self._master_stat['CONNECTED'] = False
|
self._master_stat['CONNECTED'] = False
|
||||||
|
|
||||||
|
|
||||||
@ -836,10 +717,10 @@ class IPSC(DatagramProtocol):
|
|||||||
# Ask the master for a peer-list
|
# Ask the master for a peer-list
|
||||||
if self._local['NUM_PEERS']:
|
if self._local['NUM_PEERS']:
|
||||||
self.send_packet(self.PEER_LIST_REQ_PKT, self._master_sock)
|
self.send_packet(self.PEER_LIST_REQ_PKT, self._master_sock)
|
||||||
logger.info('(%s), No Peer List - Requesting One From the Master', self._network)
|
logger.info('(%s), No Peer List - Requesting One From the Master', self._system)
|
||||||
else:
|
else:
|
||||||
self._master_stat['PEER_LIST'] = True
|
self._master_stat['PEER_LIST'] = True
|
||||||
logger.debug('(%s), Skip asking for a Peer List, we are the only Peer', self._network)
|
logger.debug('(%s), Skip asking for a Peer List, we are the only Peer', self._system)
|
||||||
|
|
||||||
|
|
||||||
# If we do have a peer-list, we need to register with the peers and send keep-alives...
|
# If we do have a peer-list, we need to register with the peers and send keep-alives...
|
||||||
@ -855,23 +736,23 @@ class IPSC(DatagramProtocol):
|
|||||||
# If we haven't registered to a peer, send a registration
|
# If we haven't registered to a peer, send a registration
|
||||||
if not self._peers[peer]['STATUS']['CONNECTED']:
|
if not self._peers[peer]['STATUS']['CONNECTED']:
|
||||||
self.send_packet(self.PEER_REG_REQ_PKT, (self._peers[peer]['IP'], self._peers[peer]['PORT']))
|
self.send_packet(self.PEER_REG_REQ_PKT, (self._peers[peer]['IP'], self._peers[peer]['PORT']))
|
||||||
logger.info('(%s) Registering with Peer %s, %s:%s', self._network, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
logger.info('(%s) Registering with Peer %s, %s:%s', self._system, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
||||||
|
|
||||||
# If we have registered with the peer, then send a keep-alive
|
# If we have registered with the peer, then send a keep-alive
|
||||||
elif self._peers[peer]['STATUS']['CONNECTED']:
|
elif self._peers[peer]['STATUS']['CONNECTED']:
|
||||||
self.send_packet(self.PEER_ALIVE_REQ_PKT, (self._peers[peer]['IP'], self._peers[peer]['PORT']))
|
self.send_packet(self.PEER_ALIVE_REQ_PKT, (self._peers[peer]['IP'], self._peers[peer]['PORT']))
|
||||||
logger.debug('(%s) Keep-Alive Sent to the Peer %s, %s:%s', self._network, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
logger.debug('(%s) Keep-Alive Sent to the Peer %s, %s:%s', self._system, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
||||||
|
|
||||||
# If we have a keep-alive outstanding by the time we send another, mark it missed.
|
# If we have a keep-alive outstanding by the time we send another, mark it missed.
|
||||||
if self._peers[peer]['STATUS']['KEEP_ALIVES_OUTSTANDING'] > 0:
|
if self._peers[peer]['STATUS']['KEEP_ALIVES_OUTSTANDING'] > 0:
|
||||||
self._peers[peer]['STATUS']['KEEP_ALIVES_MISSED'] += 1
|
self._peers[peer]['STATUS']['KEEP_ALIVES_MISSED'] += 1
|
||||||
logger.info('(%s) Peer Keep-Alive Missed for %s, %s:%s', self._network, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
logger.info('(%s) Peer Keep-Alive Missed for %s, %s:%s', self._system, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
||||||
|
|
||||||
# If we have missed too many keep-alives, de-register the peer and start over.
|
# If we have missed too many keep-alives, de-register the peer and start over.
|
||||||
if self._peers[peer]['STATUS']['KEEP_ALIVES_OUTSTANDING'] >= self._local['MAX_MISSED']:
|
if self._peers[peer]['STATUS']['KEEP_ALIVES_OUTSTANDING'] >= self._local['MAX_MISSED']:
|
||||||
self._peers[peer]['STATUS']['CONNECTED'] = False
|
self._peers[peer]['STATUS']['CONNECTED'] = False
|
||||||
#del peer # Becuase once it's out of the dictionary, you can't use it for anything else.
|
#del peer # Becuase once it's out of the dictionary, you can't use it for anything else.
|
||||||
logger.warning('(%s) Maximum Peer Keep-Alives Missed -- De-registering the Peer: %s, %s:%s', self._network, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
logger.warning('(%s) Maximum Peer Keep-Alives Missed -- De-registering the Peer: %s, %s:%s', self._system, int_id(peer), self._peers[peer]['IP'], self._peers[peer]['PORT'])
|
||||||
|
|
||||||
# Update our stats before moving on...
|
# Update our stats before moving on...
|
||||||
self._peers[peer]['STATUS']['KEEP_ALIVES_SENT'] += 1
|
self._peers[peer]['STATUS']['KEEP_ALIVES_SENT'] += 1
|
||||||
@ -900,7 +781,7 @@ class IPSC(DatagramProtocol):
|
|||||||
# AUTHENTICATE THE PACKET
|
# AUTHENTICATE THE PACKET
|
||||||
if self._local['AUTH_ENABLED']:
|
if self._local['AUTH_ENABLED']:
|
||||||
if not self.validate_auth(self._local['AUTH_KEY'], data):
|
if not self.validate_auth(self._local['AUTH_KEY'], data):
|
||||||
logger.warning('(%s) AuthError: IPSC packet failed authentication. Type %s: Peer: %s, %s:%s', self._network, ahex(_packettype), int_id(_peerid), host, port)
|
logger.warning('(%s) AuthError: IPSC packet failed authentication. Type %s: Peer: %s, %s:%s', self._system, ahex(_packettype), int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
# REMOVE SHA-1 AUTHENTICATION HASH: WE NO LONGER NEED IT
|
# REMOVE SHA-1 AUTHENTICATION HASH: WE NO LONGER NEED IT
|
||||||
@ -909,8 +790,8 @@ class IPSC(DatagramProtocol):
|
|||||||
|
|
||||||
# PACKETS THAT WE RECEIVE FROM ANY VALID PEER OR VALID MASTER
|
# PACKETS THAT WE RECEIVE FROM ANY VALID PEER OR VALID MASTER
|
||||||
if _packettype in ANY_PEER_REQUIRED:
|
if _packettype in ANY_PEER_REQUIRED:
|
||||||
if not(valid_master(self._network, _peerid) == False or valid_peer(self._peers.keys(), _peerid) == False):
|
if not(valid_master(self._system, _peerid) == False or valid_peer(self._peers.keys(), _peerid) == False):
|
||||||
logger.warning('(%s) PeerError: Peer not in peer-list: %s, %s:%s', self._network, int_id(_peerid), host, port)
|
logger.warning('(%s) PeerError: Peer not in peer-list: %s, %s:%s', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
# ORIGINATED BY SUBSCRIBER UNITS - a.k.a someone transmitted
|
# ORIGINATED BY SUBSCRIBER UNITS - a.k.a someone transmitted
|
||||||
@ -942,59 +823,59 @@ class IPSC(DatagramProtocol):
|
|||||||
# User Voice and Data Call Types:
|
# User Voice and Data Call Types:
|
||||||
if _packettype == GROUP_VOICE:
|
if _packettype == GROUP_VOICE:
|
||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self.group_voice(self._network, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
self.group_voice(self._system, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == PVT_VOICE:
|
elif _packettype == PVT_VOICE:
|
||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self.private_voice(self._network, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
self.private_voice(self._system, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == GROUP_DATA:
|
elif _packettype == GROUP_DATA:
|
||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self.group_data(self._network, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
self.group_data(self._system, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == PVT_DATA:
|
elif _packettype == PVT_DATA:
|
||||||
self.reset_keep_alive(_peerid)
|
self.reset_keep_alive(_peerid)
|
||||||
self.private_data(self._network, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
self.private_data(self._system, _src_sub, _dst_sub, _ts, _end, _peerid, data)
|
||||||
return
|
return
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
# MOTOROLA XCMP/XNL CONTROL PROTOCOL: We don't process these (yet)
|
# MOTOROLA XCMP/XNL CONTROL PROTOCOL: We don't process these (yet)
|
||||||
elif _packettype == XCMP_XNL:
|
elif _packettype == XCMP_XNL:
|
||||||
self.xcmp_xnl(self._network, data)
|
self.xcmp_xnl(self._system, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
# ORIGINATED BY PEERS, NOT IPSC MAINTENANCE: Call monitoring is all we've found here so far
|
# ORIGINATED BY PEERS, NOT IPSC MAINTENANCE: Call monitoring is all we've found here so far
|
||||||
elif _packettype == CALL_MON_STATUS:
|
elif _packettype == CALL_MON_STATUS:
|
||||||
self.call_mon_status(self._network, data)
|
self.call_mon_status(self._system, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == CALL_MON_RPT:
|
elif _packettype == CALL_MON_RPT:
|
||||||
self.call_mon_rpt(self._network, data)
|
self.call_mon_rpt(self._system, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == CALL_MON_NACK:
|
elif _packettype == CALL_MON_NACK:
|
||||||
self.call_mon_nack(self._network, data)
|
self.call_mon_nack(self._system, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
# IPSC CONNECTION MAINTENANCE MESSAGES
|
# IPSC CONNECTION MAINTENANCE MESSAGES
|
||||||
elif _packettype == DE_REG_REQ:
|
elif _packettype == DE_REG_REQ:
|
||||||
de_register_peer(self._network, _peerid)
|
de_register_peer(self._system, _peerid)
|
||||||
logger.warning('(%s) Peer De-Registration Request From: %s, %s:%s', self._network, int_id(_peerid), host, port)
|
logger.warning('(%s) Peer De-Registration Request From: %s, %s:%s', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == DE_REG_REPLY:
|
elif _packettype == DE_REG_REPLY:
|
||||||
logger.warning('(%s) Peer De-Registration Reply From: %s, %s:%s', self._network, int_id(_peerid), host, port)
|
logger.warning('(%s) Peer De-Registration Reply From: %s, %s:%s', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
elif _packettype == RPT_WAKE_UP:
|
elif _packettype == RPT_WAKE_UP:
|
||||||
self.repeater_wake_up(self._network, data)
|
self.repeater_wake_up(self._system, data)
|
||||||
logger.debug('(%s) Repeater Wake-Up Packet From: %s, %s:%s', self._network, int_id(_peerid), host, port)
|
logger.debug('(%s) Repeater Wake-Up Packet From: %s, %s:%s', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -1004,7 +885,7 @@ class IPSC(DatagramProtocol):
|
|||||||
# ONLY ACCEPT FROM A PREVIOUSLY VALIDATED PEER
|
# ONLY ACCEPT FROM A PREVIOUSLY VALIDATED PEER
|
||||||
if _packettype in PEER_REQUIRED:
|
if _packettype in PEER_REQUIRED:
|
||||||
if not valid_peer(self._peers.keys(), _peerid):
|
if not valid_peer(self._peers.keys(), _peerid):
|
||||||
logger.warning('(%s) PeerError: Peer not in peer-list: %s, %s:%s', self._network, int_id(_peerid), host, port)
|
logger.warning('(%s) PeerError: Peer not in peer-list: %s, %s:%s', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
# REQUESTS FROM PEERS: WE MUST REPLY IMMEDIATELY FOR IPSC MAINTENANCE
|
# REQUESTS FROM PEERS: WE MUST REPLY IMMEDIATELY FOR IPSC MAINTENANCE
|
||||||
@ -1031,8 +912,8 @@ class IPSC(DatagramProtocol):
|
|||||||
|
|
||||||
# PACKETS WE ONLY ACCEPT IF WE HAVE FINISHED REGISTERING WITH OUR MASTER
|
# PACKETS WE ONLY ACCEPT IF WE HAVE FINISHED REGISTERING WITH OUR MASTER
|
||||||
if _packettype in MASTER_REQUIRED:
|
if _packettype in MASTER_REQUIRED:
|
||||||
if not valid_master(self._network, _peerid):
|
if not valid_master(self._system, _peerid):
|
||||||
logger.warning('(%s) MasterError: %s, %s:%s is not the master peer', self._network, int_id(_peerid), host, port)
|
logger.warning('(%s) MasterError: %s, %s:%s is not the master peer', self._system, int_id(_peerid), host, port)
|
||||||
return
|
return
|
||||||
|
|
||||||
# ANSWERS FROM REQUESTS WE SENT TO THE MASTER: WE DO NOT REPLY
|
# ANSWERS FROM REQUESTS WE SENT TO THE MASTER: WE DO NOT REPLY
|
||||||
@ -1069,13 +950,9 @@ class IPSC(DatagramProtocol):
|
|||||||
self.peer_list_req(_peerid)
|
self.peer_list_req(_peerid)
|
||||||
return
|
return
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
=======
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
# PACKET IS OF AN UNKNOWN TYPE. LOG IT AND IDENTTIFY IT!
|
# PACKET IS OF AN UNKNOWN TYPE. LOG IT AND IDENTTIFY IT!
|
||||||
else:
|
else:
|
||||||
self.unknown_message(self._network, _packettype, _peerid, data)
|
self.unknown_message(self._system, _packettype, _peerid, data)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
@ -1097,24 +974,19 @@ if __name__ == '__main__':
|
|||||||
if not cli_args.CFG_FILE:
|
if not cli_args.CFG_FILE:
|
||||||
cli_args.CFG_FILE = os.path.dirname(os.path.abspath(__file__))+'/dmrlink.cfg'
|
cli_args.CFG_FILE = os.path.dirname(os.path.abspath(__file__))+'/dmrlink.cfg'
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
# Call the external routine to build the configuration dictionary
|
# Call the external routine to build the configuration dictionary
|
||||||
CONFIG = build_config(cli_args.CFG_FILE)
|
CONFIG = build_config(cli_args.CFG_FILE)
|
||||||
|
|
||||||
# Call the external routing to start the system logger
|
# Call the external routing to start the system logger
|
||||||
logger = config_logging(CONFIG['LOGGER'])
|
logger = config_logging(CONFIG['LOGGER'])
|
||||||
=======
|
|
||||||
|
|
||||||
CONFIG = build_config(cli_args.CFG_FILE)
|
|
||||||
logger = config_logging(CONFIG['LOGGER'])
|
|
||||||
config_reports(CONFIG)
|
config_reports(CONFIG)
|
||||||
|
|
||||||
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
logger.info('DMRlink \'dmrlink.py\' (c) 2013 - 2015 N0MJS & the K0USY Group - SYSTEM STARTING...')
|
logger.info('DMRlink \'dmrlink.py\' (c) 2013 - 2015 N0MJS & the K0USY Group - SYSTEM STARTING...')
|
||||||
|
|
||||||
# Shut ourselves down gracefully with the IPSC peers.
|
# Shut ourselves down gracefully with the IPSC peers.
|
||||||
def handler(_signal, _frame):
|
def sig_handler(_signal, _frame):
|
||||||
logger.info('*** DMRLINK IS TERMINATING WITH SIGNAL %s ***', str(_signal))
|
logger.info('*** DMRLINK IS TERMINATING WITH SIGNAL %s ***', str(_signal))
|
||||||
|
|
||||||
for system in systems:
|
for system in systems:
|
||||||
@ -1126,13 +998,13 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
# Set signal handers so that we can gracefully exit if need be
|
# Set signal handers so that we can gracefully exit if need be
|
||||||
for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGQUIT]:
|
for sig in [signal.SIGTERM, signal.SIGINT, signal.SIGQUIT]:
|
||||||
signal.signal(sig, handler)
|
signal.signal(sig, sig_handler)
|
||||||
|
|
||||||
# INITIALIZE AN IPSC OBJECT (SELF SUSTAINING) FOR EACH CONFIGUED IPSC
|
# INITIALIZE AN IPSC OBJECT (SELF SUSTAINING) FOR EACH CONFIGUED IPSC
|
||||||
for ipsc_network in CONFIG['SYSTEMS']:
|
for system in CONFIG['SYSTEMS']:
|
||||||
if CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['ENABLED']:
|
if CONFIG['SYSTEMS'][system]['LOCAL']['ENABLED']:
|
||||||
systems[ipsc_network] = IPSC(ipsc_network)
|
systems[system] = IPSC(system, CONFIG, logger)
|
||||||
reactor.listenUDP(CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['PORT'], systems[ipsc_network], interface=CONFIG['SYSTEMS'][ipsc_network]['LOCAL']['IP'])
|
reactor.listenUDP(CONFIG['SYSTEMS'][system]['LOCAL']['PORT'], systems[system], interface=CONFIG['SYSTEMS'][system]['LOCAL']['IP'])
|
||||||
|
|
||||||
# INITIALIZE THE REPORTING LOOP IF CONFIGURED
|
# INITIALIZE THE REPORTING LOOP IF CONFIGURED
|
||||||
if CONFIG['REPORTS']['REPORT_NETWORKS']:
|
if CONFIG['REPORTS']['REPORT_NETWORKS']:
|
||||||
|
@ -23,7 +23,6 @@ import sys
|
|||||||
|
|
||||||
from socket import gethostbyname
|
from socket import gethostbyname
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
|
# Does anybody read this stuff? There's a PEP somewhere that says I should do this.
|
||||||
__author__ = 'Cortney T. Buffington, N0MJS'
|
__author__ = 'Cortney T. Buffington, N0MJS'
|
||||||
__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
||||||
@ -31,14 +30,6 @@ __license__ = 'GNU GPLv3'
|
|||||||
__maintainer__ = 'Cort Buffington, N0MJS'
|
__maintainer__ = 'Cort Buffington, N0MJS'
|
||||||
__email__ = 'n0mjs@me.com'
|
__email__ = 'n0mjs@me.com'
|
||||||
|
|
||||||
=======
|
|
||||||
__author__ = 'Cortney T. Buffington, N0MJS'
|
|
||||||
__copyright__ = 'Copyright (c) 2016 Cortney T. Buffington, N0MJS and the K0USY Group'
|
|
||||||
__credits__ = 'Adam Fast, KC0YLK; Dave Kierzkowski, KD8EYF; Steve Zingman, N4IRS; Mike Zingman, N4IRR'
|
|
||||||
__license__ = 'GNU GPLv3'
|
|
||||||
__maintainer__ = 'Cort Buffington, N0MJS'
|
|
||||||
__email__ = 'n0mjs@me.com'
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
|
|
||||||
def build_config(_config_file):
|
def build_config(_config_file):
|
||||||
config = ConfigParser.ConfigParser()
|
config = ConfigParser.ConfigParser()
|
||||||
@ -187,7 +178,6 @@ def build_config(_config_file):
|
|||||||
return CONFIG
|
return CONFIG
|
||||||
|
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
# Used to run this file direclty and print the config,
|
# Used to run this file direclty and print the config,
|
||||||
# which might be useful for debugging
|
# which might be useful for debugging
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
@ -211,7 +201,3 @@ if __name__ == '__main__':
|
|||||||
|
|
||||||
|
|
||||||
pprint(build_config(cli_args.CONFIG_FILE))
|
pprint(build_config(cli_args.CONFIG_FILE))
|
||||||
=======
|
|
||||||
if __name__ == '__main__':
|
|
||||||
pass
|
|
||||||
>>>>>>> origin/modularization
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user