2016-07-31 10:42:11 -04:00
#!/usr/bin/env python
#
2016-11-21 20:13:32 -05:00
###############################################################################
# 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
###############################################################################
2016-07-31 10:42:11 -04:00
from __future__ import print_function
# Python modules we need
import sys
2016-10-10 21:49:51 -04:00
from bitarray import bitarray
2016-11-01 20:49:13 -04:00
from time import time
2016-11-23 17:37:53 -05:00
from importlib import import_module
2016-07-31 10:42:11 -04:00
# Twisted is pretty important, so I keep it separate
from twisted . internet . protocol import DatagramProtocol
from twisted . internet import reactor
from twisted . internet import task
# Things we import from the main hblink module
2016-11-23 16:01:05 -05:00
from hblink import HBSYSTEM , systems , int_id , hblink_handler
2016-11-26 15:59:38 -05:00
from dmr_utils import hex_str_3 , int_id , get_alias
2016-10-23 12:07:16 -04:00
import dec_dmr
2016-11-15 21:35:08 -05:00
import bptc
2016-11-23 16:01:05 -05:00
import hb_config
import hb_log
import dmr_const
import hb_const
# 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, N4IRR; Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT '
__license__ = ' GNU GPLv3 '
__maintainer__ = ' Cort Buffington, N0MJS '
__email__ = ' n0mjs@me.com '
__status__ = ' pre-alpha '
# Module gobal varaibles
2016-07-31 10:42:11 -04:00
# Import Bridging rules
# Note: A stanza *must* exist for any MASTER or CLIENT configured in the main
# configuration file and listed as "active". It can be empty,
# but it has to exist.
2016-11-23 17:37:53 -05:00
def make_rules ( _hb_routing_rules ) :
2016-11-23 16:01:05 -05:00
try :
2016-11-23 17:37:53 -05:00
rule_file = import_module ( _hb_routing_rules )
2016-11-23 16:01:05 -05:00
logger . info ( ' Routing rules file found and rules imported ' )
except ImportError :
sys . exit ( ' Routing rules file not found or invalid ' )
2016-07-31 10:42:11 -04:00
2016-11-23 16:01:05 -05:00
# Convert integer GROUP ID numbers from the config into hex strings
# we need to send in the actual data packets.
2016-11-23 17:37:53 -05:00
for _system in rule_file . RULES :
for _rule in rule_file . RULES [ _system ] [ ' GROUP_VOICE ' ] :
2016-11-23 16:01:05 -05:00
_rule [ ' SRC_GROUP ' ] = hex_str_3 ( _rule [ ' SRC_GROUP ' ] )
_rule [ ' DST_GROUP ' ] = hex_str_3 ( _rule [ ' DST_GROUP ' ] )
_rule [ ' SRC_TS ' ] = _rule [ ' SRC_TS ' ]
_rule [ ' DST_TS ' ] = _rule [ ' DST_TS ' ]
for i , e in enumerate ( _rule [ ' ON ' ] ) :
_rule [ ' ON ' ] [ i ] = hex_str_3 ( _rule [ ' ON ' ] [ i ] )
for i , e in enumerate ( _rule [ ' OFF ' ] ) :
_rule [ ' OFF ' ] [ i ] = hex_str_3 ( _rule [ ' OFF ' ] [ i ] )
_rule [ ' TIMEOUT ' ] = _rule [ ' TIMEOUT ' ] * 60
_rule [ ' TIMER ' ] = time ( ) + _rule [ ' TIMEOUT ' ]
if _system not in CONFIG [ ' SYSTEMS ' ] :
sys . exit ( ' ERROR: Routing rules found for system not configured main configuration ' )
for _system in CONFIG [ ' SYSTEMS ' ] :
2016-11-23 17:37:53 -05:00
if _system not in rule_file . RULES :
2016-11-23 16:01:05 -05:00
sys . exit ( ' ERROR: Routing rules not found for all systems configured ' )
2016-11-23 17:37:53 -05:00
return rule_file . RULES
2016-07-31 10:42:11 -04:00
2016-11-19 09:43:37 -05:00
# Import subscriber ACL
# ACL may be a single list of subscriber IDs
# Global action is to allow or deny them. Multiple lists with different actions and ranges
# are not yet implemented.
2016-11-26 15:59:38 -05:00
def build_acl ( _sub_acl ) :
2016-11-23 16:01:05 -05:00
try :
2016-11-26 15:59:38 -05:00
acl_file = import_module ( _sub_acl )
for i , e in enumerate ( acl_file . ACL ) :
acl_file . ACL [ i ] = hex_str_3 ( acl_file . ACL [ i ] )
logger . info ( ' ACL file found and ACL entries imported ' )
2016-11-23 16:01:05 -05:00
except ImportError :
2016-11-26 15:59:38 -05:00
logger . info ( ' ACL file not found or invalid - all subscriber IDs are valid ' )
2016-11-23 16:01:05 -05:00
ACL_ACTION = ' NONE '
2016-11-19 09:43:37 -05:00
2016-11-23 16:01:05 -05:00
# Depending on which type of ACL is used (PERMIT, DENY... or there isn't one)
# define a differnet function to be used to check the ACL
2016-11-25 09:14:36 -05:00
global allow_sub
2016-11-26 15:59:38 -05:00
if acl_file . ACL_ACTION == ' PERMIT ' :
2016-11-23 16:01:05 -05:00
def allow_sub ( _sub ) :
if _sub in ACL :
return True
else :
return False
2016-11-26 15:59:38 -05:00
elif acl_file . ACL_ACTION == ' DENY ' :
2016-11-23 16:01:05 -05:00
def allow_sub ( _sub ) :
if _sub not in ACL :
return True
else :
return False
else :
def allow_sub ( _sub ) :
2016-11-19 09:43:37 -05:00
return True
2016-11-26 15:59:38 -05:00
return acl_file . ACL
2016-07-31 10:42:11 -04:00
2016-11-17 07:24:28 -05:00
# Run this every minute for rule timer updates
def rule_timer_loop ( ) :
2016-11-18 15:53:36 -05:00
logger . info ( ' (ALL HBSYSTEMS) Rule timer loop started ' )
2016-11-17 07:24:28 -05:00
_now = time ( )
for _system in RULES :
for _rule in RULES [ _system ] [ ' GROUP_VOICE ' ] :
if _rule [ ' TO_TYPE ' ] == ' ON ' :
if _rule [ ' ACTIVE ' ] == True :
if _rule [ ' TIMER ' ] < _now :
_rule [ ' ACTIVE ' ] = False
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) Rule timout DEACTIVATE: Rule name: %s , Target HBSystem: %s , TS: %s , TGID: %s ' , _system , _rule [ ' NAME ' ] , _rule [ ' DST_NET ' ] , _rule [ ' DST_TS ' ] , int_id ( _rule [ ' DST_GROUP ' ] ) )
2016-11-17 07:24:28 -05:00
else :
timeout_in = _rule [ ' TIMER ' ] - _now
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) Rule ACTIVE with ON timer running: Timeout eligible in: %d s, Rule name: %s , Target HBSystem: %s , TS: %s , TGID: %s ' , _system , timeout_in , _rule [ ' NAME ' ] , _rule [ ' DST_NET ' ] , _rule [ ' DST_TS ' ] , int_id ( _rule [ ' DST_GROUP ' ] ) )
2016-11-17 07:24:28 -05:00
elif _rule [ ' TO_TYPE ' ] == ' OFF ' :
if _rule [ ' ACTIVE ' ] == False :
if _rule [ ' TIMER ' ] < _now :
_rule [ ' ACTIVE ' ] = True
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) Rule timout ACTIVATE: Rule name: %s , Target HBSystem: %s , TS: %s , TGID: %s ' , _system , _rule [ ' NAME ' ] , _rule [ ' DST_NET ' ] , _rule [ ' DST_TS ' ] , int_id ( _rule [ ' DST_GROUP ' ] ) )
2016-11-17 07:24:28 -05:00
else :
timeout_in = _rule [ ' TIMER ' ] - _now
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) Rule DEACTIVE with OFF timer running: Timeout eligible in: %d s, Rule name: %s , Target HBSystem: %s , TS: %s , TGID: %s ' , _system , timeout_in , _rule [ ' NAME ' ] , _rule [ ' DST_NET ' ] , _rule [ ' DST_TS ' ] , int_id ( _rule [ ' DST_GROUP ' ] ) )
2016-11-17 07:24:28 -05:00
else :
logger . debug ( ' Rule timer loop made no rule changes ' )
2016-11-16 12:05:01 -05:00
class routerSYSTEM ( HBSYSTEM ) :
2016-10-10 21:49:51 -04:00
2016-11-23 16:01:05 -05:00
def __init__ ( self , _name , _config , _logger ) :
HBSYSTEM . __init__ ( self , _name , _config , _logger )
2016-11-01 20:49:13 -04:00
2016-11-08 17:16:22 -05:00
# Status information for the system, TS1 & TS2
# 1 & 2 are "timeslot"
# In TX_EMB_LC, 2-5 are burst B-E
self . STATUS = {
1 : {
2016-11-18 18:10:48 -05:00
' RX_START ' : time ( ) ,
' RX_SEQ ' : ' \x00 ' ,
2016-11-17 17:37:43 -05:00
' RX_RFS ' : ' \x00 ' ,
' TX_RFS ' : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
' RX_STREAM_ID ' : ' \x00 ' ,
' TX_STREAM_ID ' : ' \x00 ' ,
2016-11-17 17:37:43 -05:00
' RX_TGID ' : ' \x00 \x00 \x00 ' ,
' TX_TGID ' : ' \x00 \x00 \x00 ' ,
' RX_TIME ' : time ( ) ,
' TX_TIME ' : time ( ) ,
2016-11-23 16:01:05 -05:00
' RX_TYPE ' : hb_const . HBPF_SLT_VTERM ,
2016-11-17 17:37:43 -05:00
' RX_LC ' : ' \x00 ' ,
' TX_H_LC ' : ' \x00 ' ,
' TX_T_LC ' : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
' TX_EMB_LC ' : {
2016-11-16 15:48:40 -05:00
1 : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
2 : ' \x00 ' ,
3 : ' \x00 ' ,
4 : ' \x00 ' ,
}
} ,
2 : {
2016-11-18 18:10:48 -05:00
' RX_START ' : time ( ) ,
' RX_SEQ ' : ' \x00 ' ,
2016-11-17 17:37:43 -05:00
' RX_RFS ' : ' \x00 ' ,
' TX_RFS ' : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
' RX_STREAM_ID ' : ' \x00 ' ,
' TX_STREAM_ID ' : ' \x00 ' ,
2016-11-17 17:37:43 -05:00
' RX_TGID ' : ' \x00 \x00 \x00 ' ,
' TX_TGID ' : ' \x00 \x00 \x00 ' ,
' RX_TIME ' : time ( ) ,
' TX_TIME ' : time ( ) ,
2016-11-23 16:01:05 -05:00
' RX_TYPE ' : hb_const . HBPF_SLT_VTERM ,
2016-11-17 17:37:43 -05:00
' RX_LC ' : ' \x00 ' ,
' TX_H_LC ' : ' \x00 ' ,
' TX_T_LC ' : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
' TX_EMB_LC ' : {
2016-11-16 15:48:40 -05:00
1 : ' \x00 ' ,
2016-11-08 17:16:22 -05:00
2 : ' \x00 ' ,
3 : ' \x00 ' ,
4 : ' \x00 ' ,
}
}
}
2016-08-26 22:33:35 -04:00
2016-09-22 10:12:38 -04:00
def dmrd_received ( self , _radio_id , _rf_src , _dst_id , _seq , _slot , _call_type , _frame_type , _dtype_vseq , _stream_id , _data ) :
2016-11-01 20:49:13 -04:00
pkt_time = time ( )
2016-11-16 15:48:40 -05:00
dmrpkt = _data [ 20 : 53 ]
2016-11-01 21:54:43 -04:00
_bits = int_id ( _data [ 15 ] )
if _call_type == ' group ' :
2016-11-01 20:49:13 -04:00
2016-11-19 09:43:37 -05:00
# Check for ACL match, and return if the subscriber is not allowed
if allow_sub ( _rf_src ) == False :
logger . warning ( ' ( %s ) Group Voice Packet ***REJECTED BY ACL*** From: %s , HBP Peer %s , Destination TGID %s ' , self . _system , int_id ( _rf_src ) , int_id ( _radio_id ) , int_id ( _dst_id ) )
return
2016-11-01 21:54:43 -04:00
# Is this a new call stream?
2016-11-08 17:16:22 -05:00
if ( _stream_id != self . STATUS [ _slot ] [ ' RX_STREAM_ID ' ] ) :
2016-11-23 16:01:05 -05:00
if ( self . STATUS [ _slot ] [ ' RX_TYPE ' ] != hb_const . HBPF_SLT_VTERM ) and ( pkt_time < ( self . STATUS [ _slot ] [ ' RX_TIME ' ] + hb_const . STREAM_TO ) ) and ( _rf_src != self . STATUS [ _slot ] [ ' RX_RFS ' ] ) :
2016-11-16 12:05:01 -05:00
logger . warning ( ' ( %s ) Packet received with STREAM ID: %s <FROM> SUB: %s REPEATER: %s <TO> TGID %s , SLOT %s collided with existing call ' , self . _system , int_id ( _stream_id ) , int_id ( _rf_src ) , int_id ( _radio_id ) , int_id ( _dst_id ) , _slot )
2016-11-01 21:54:43 -04:00
return
2016-11-08 15:56:11 -05:00
2016-11-08 17:16:22 -05:00
# This is a new call stream
2016-11-18 18:10:48 -05:00
self . STATUS [ ' RX_START ' ] = pkt_time
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) *CALL START* STREAM ID: %s SUB: %s ( %s ) REPEATER: %s ( %s ) TGID %s ( %s ), TS %s ' , \
self . _system , int_id ( _stream_id ) , get_alias ( _rf_src , subscriber_ids ) , int_id ( _rf_src ) , get_alias ( _radio_id , peer_ids ) , int_id ( _radio_id ) , get_alias ( _dst_id , talkgroup_ids ) , int_id ( _dst_id ) , _slot )
2016-10-23 12:07:16 -04:00
2016-11-01 21:54:43 -04:00
# If we can, use the LC from the voice header as to keep all options intact
2016-11-23 16:01:05 -05:00
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-01 21:54:43 -04:00
decoded = dec_dmr . voice_head_term ( dmrpkt )
2016-11-08 17:16:22 -05:00
self . STATUS [ _slot ] [ ' RX_LC ' ] = decoded [ ' LC ' ]
2016-11-01 21:54:43 -04:00
# If we don't have a voice header then don't wait to decode it from the Embedded LC
2016-11-14 08:27:44 -05:00
# just make a new one from the HBP header. This is good enough, and it saves lots of time
2016-11-01 21:54:43 -04:00
else :
2016-11-23 16:01:05 -05:00
self . STATUS [ _slot ] [ ' RX_LC ' ] = dmr_const . LC_OPT + _dst_id + _rf_src
2016-11-17 07:24:28 -05:00
2016-11-16 12:05:01 -05:00
for rule in RULES [ self . _system ] [ ' GROUP_VOICE ' ] :
2016-08-01 22:31:28 -04:00
_target = rule [ ' DST_NET ' ]
2016-11-15 15:50:09 -05:00
_target_status = systems [ _target ] . STATUS
2016-08-26 22:33:35 -04:00
if ( rule [ ' SRC_GROUP ' ] == _dst_id and rule [ ' SRC_TS ' ] == _slot and rule [ ' ACTIVE ' ] == True ) :
2016-11-15 15:50:09 -05:00
# BEGIN CONTENTION HANDLING
#
# The rules for each of the 4 "ifs" below are listed here for readability. The Frame To Send is:
2016-11-18 18:10:48 -05:00
# From a different group than last RX from this HBSystem, but it has been less than Group Hangtime
# From a different group than last TX to this HBSystem, but it has been less than Group Hangtime
# From the same group as the last RX from this HBSystem, but from a different subscriber, and it has been less than stream timeout
# From the same group as the last TX to this HBSystem, but from a different subscriber, and it has been less than stream timeout
2016-11-15 15:50:09 -05:00
# The "continue" at the end of each means the next iteration of the for loop that tests for matching rules
#
2016-11-19 07:32:00 -05:00
if ( ( rule [ ' DST_GROUP ' ] != _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TGID ' ] ) and ( ( pkt_time - _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TIME ' ] ) < RULES [ _target ] [ ' GROUP_HANGTIME ' ] ) ) :
2016-11-23 16:01:05 -05:00
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-19 11:52:41 -05:00
logger . info ( ' ( %s ) Call not routed to TGID %s , target active or in group hangtime: HBSystem: %s , TS: %s , TGID: %s ' , self . _system , int_id ( rule [ ' DST_GROUP ' ] ) , _target , rule [ ' DST_TS ' ] , int_id ( _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TGID ' ] ) )
2016-11-18 18:10:48 -05:00
continue
2016-11-19 07:32:00 -05:00
if ( ( rule [ ' DST_GROUP ' ] != _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] ) and ( ( pkt_time - _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TIME ' ] ) < RULES [ _target ] [ ' GROUP_HANGTIME ' ] ) ) :
2016-11-23 16:01:05 -05:00
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-19 11:52:41 -05:00
logger . info ( ' ( %s ) Call not routed to TGID %s , target in group hangtime: HBSystem: %s , TS: %s , TGID: %s ' , self . _system , int_id ( rule [ ' DST_GROUP ' ] ) , _target , rule [ ' DST_TS ' ] , int_id ( _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] ) )
2016-11-18 18:10:48 -05:00
continue
2016-11-23 16:01:05 -05:00
if ( rule [ ' DST_GROUP ' ] == _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TGID ' ] ) and ( ( pkt_time - _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TIME ' ] ) < hb_const . STREAM_TO ) :
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-19 11:37:09 -05:00
logger . info ( ' ( %s ) Call not routed to TGID %s , matching call already active on target: HBSystem: %s , TS: %s , TGID: %s ' , self . _system , int_id ( rule [ ' DST_GROUP ' ] ) , _target , rule [ ' DST_TS ' ] , int_id ( _target_status [ rule [ ' DST_TS ' ] ] [ ' RX_TGID ' ] ) )
2016-11-18 18:10:48 -05:00
continue
2016-11-23 16:01:05 -05:00
if ( rule [ ' DST_GROUP ' ] == _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] ) and ( _rf_src != _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_RFS ' ] ) and ( ( pkt_time - _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TIME ' ] ) < hb_const . STREAM_TO ) :
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-19 11:52:41 -05:00
logger . info ( ' ( %s ) Call not routed for subscriber %s , call route in progress on target: HBSystem: %s , TS: %s , TGID: %s , SUB: %s ' , self . _system , int_id ( _rf_src ) , _target , rule [ ' DST_TS ' ] , int_id ( _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] ) , _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_RFS ' ] )
2016-11-18 18:10:48 -05:00
continue
2016-11-19 09:33:47 -05:00
2016-11-15 15:50:09 -05:00
# Set values for the contention handler to test next time there is a frame to forward
2016-11-19 07:32:00 -05:00
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TIME ' ] = pkt_time
2016-11-15 15:50:09 -05:00
2016-11-19 11:02:06 -05:00
if ( _stream_id != self . STATUS [ _slot ] [ ' RX_STREAM_ID ' ] ) or ( _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_RFS ' ] != _rf_src ) or ( _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] != rule [ ' DST_GROUP ' ] ) :
2016-11-16 12:32:58 -05:00
# Record the DST TGID and Stream ID
2016-11-19 07:32:00 -05:00
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_TGID ' ] = rule [ ' DST_GROUP ' ]
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_STREAM_ID ' ] = _stream_id
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_RFS ' ] = _rf_src
2016-11-16 12:32:58 -05:00
# Generate LCs (full and EMB) for the TX stream
2016-11-18 18:10:48 -05:00
# if _dst_id != rule['DST_GROUP']:
dst_lc = self . STATUS [ _slot ] [ ' RX_LC ' ] [ 0 : 3 ] + rule [ ' DST_GROUP ' ] + _rf_src
2016-11-19 07:32:00 -05:00
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_H_LC ' ] = bptc . encode_header_lc ( dst_lc )
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_T_LC ' ] = bptc . encode_terminator_lc ( dst_lc )
_target_status [ rule [ ' DST_TS ' ] ] [ ' TX_EMB_LC ' ] = bptc . encode_emblc ( dst_lc )
2016-11-18 18:10:48 -05:00
logger . debug ( ' ( %s ) Packet DST TGID ( %s ) does not match SRC TGID( %s ) - Generating FULL and EMB LCs ' , self . _system , int_id ( rule [ ' DST_GROUP ' ] ) , int_id ( _dst_id ) )
2016-11-15 15:50:09 -05:00
# Handle any necessary re-writes for the destination
2016-08-26 23:43:51 -04:00
if rule [ ' SRC_TS ' ] != rule [ ' DST_TS ' ] :
2016-08-26 22:33:35 -04:00
_tmp_bits = _bits ^ 1 << 7
2016-08-26 22:31:20 -04:00
else :
2016-08-26 22:33:35 -04:00
_tmp_bits = _bits
2016-11-15 15:50:09 -05:00
2016-11-16 12:32:58 -05:00
# Assemble transmit HBP packet header
_tmp_data = _data [ : 8 ] + rule [ ' DST_GROUP ' ] + _data [ 11 : 15 ] + chr ( _tmp_bits ) + _data [ 16 : 20 ]
2016-11-15 15:50:09 -05:00
# MUST TEST FOR NEW STREAM AND IF SO, RE-WRITE THE LC FOR THE TARGET
# MUST RE-WRITE DESTINATION TGID IF DIFFERENT
2016-11-18 18:10:48 -05:00
# if _dst_id != rule['DST_GROUP']:
dmrbits = bitarray ( endian = ' big ' )
dmrbits . frombytes ( dmrpkt )
# Create a voice header packet (FULL LC)
2016-11-23 16:01:05 -05:00
if _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VHEAD :
2016-11-19 07:32:00 -05:00
dmrbits = _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_H_LC ' ] [ 0 : 98 ] + dmrbits [ 98 : 166 ] + _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_H_LC ' ] [ 98 : 197 ]
2016-11-18 18:10:48 -05:00
# Create a voice terminator packet (FULL LC)
2016-11-23 16:01:05 -05:00
elif _frame_type == hb_const . HBPF_DATA_SYNC and _dtype_vseq == hb_const . HBPF_SLT_VTERM :
2016-11-19 07:32:00 -05:00
dmrbits = _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_T_LC ' ] [ 0 : 98 ] + dmrbits [ 98 : 166 ] + _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_T_LC ' ] [ 98 : 197 ]
2016-11-18 18:10:48 -05:00
# Create a Burst B-E packet (Embedded LC)
elif _dtype_vseq in [ 1 , 2 , 3 , 4 ] :
2016-11-19 07:32:00 -05:00
dmrbits = dmrbits [ 0 : 116 ] + _target_status [ rule [ ' DST_TS ' ] ] [ ' TX_EMB_LC ' ] [ _dtype_vseq ] + dmrbits [ 148 : 264 ]
2016-11-18 18:10:48 -05:00
dmrpkt = dmrbits . tobytes ( )
2016-11-16 15:48:40 -05:00
_tmp_data = _tmp_data + dmrpkt + _data [ 53 : 55 ]
2016-11-15 15:50:09 -05:00
# Transmit the packet to the destination system
2016-08-26 22:33:35 -04:00
systems [ _target ] . send_system ( _tmp_data )
2016-11-21 20:54:23 -05:00
logger . debug ( ' ( %s ) Packet routed by rule: %s to %s system: %s ' , self . _system , rule [ ' NAME ' ] , self . _CONFIG [ ' SYSTEMS ' ] [ _target ] [ ' MODE ' ] , _target )
2016-11-08 17:16:22 -05:00
2016-11-01 21:54:43 -04:00
2016-11-15 15:50:09 -05:00
# Final actions - Is this a voice terminator?
2016-11-23 16:01:05 -05:00
if ( _frame_type == hb_const . HBPF_DATA_SYNC ) and ( _dtype_vseq == hb_const . HBPF_SLT_VTERM ) and ( self . STATUS [ _slot ] [ ' RX_TYPE ' ] != hb_const . HBPF_SLT_VTERM ) :
2016-11-18 18:10:48 -05:00
call_duration = pkt_time - self . STATUS [ ' RX_START ' ]
2016-11-26 15:59:38 -05:00
logger . info ( ' ( %s ) *CALL END* STREAM ID: %s SUB: %s ( %s ) REPEATER: %s ( %s ) TGID %s ( %s ), TS %s , Duration: %s ' , \
self . _system , int_id ( _stream_id ) , get_alias ( _rf_src , subscriber_ids ) , int_id ( _rf_src ) , get_alias ( _radio_id , peer_ids ) , int_id ( _radio_id ) , get_alias ( _dst_id , talkgroup_ids ) , int_id ( _dst_id ) , _slot , call_duration )
2016-11-16 16:02:56 -05:00
2016-11-19 09:33:47 -05:00
#
# Begin in-band signalling for call end. This has nothign to do with routing traffic directly.
#
# Iterate the rules dictionary
for rule in RULES [ self . _system ] [ ' GROUP_VOICE ' ] :
_target = rule [ ' DST_NET ' ]
# TGID matches a rule source, reset its timer
if _slot == rule [ ' SRC_TS ' ] and _dst_id == rule [ ' SRC_GROUP ' ] and ( ( rule [ ' TO_TYPE ' ] == ' ON ' and ( rule [ ' ACTIVE ' ] == True ) ) or ( rule [ ' TO_TYPE ' ] == ' OFF ' and rule [ ' ACTIVE ' ] == False ) ) :
rule [ ' TIMER ' ] = pkt_time + rule [ ' TIMEOUT ' ]
logger . info ( ' ( %s ) Source group transmission match for rule \" %s \" . Reset timeout to %s ' , self . _system , rule [ ' NAME ' ] , rule [ ' TIMER ' ] )
# Scan for reciprocal rules and reset their timers as well.
for target_rule in RULES [ _target ] [ ' GROUP_VOICE ' ] :
if target_rule [ ' NAME ' ] == rule [ ' NAME ' ] :
target_rule [ ' TIMER ' ] = pkt_time + target_rule [ ' TIMEOUT ' ]
logger . info ( ' ( %s ) Reciprocal group transmission match for rule \" %s \" on IPSC \" %s \" . Reset timeout to %s ' , self . _system , target_rule [ ' NAME ' ] , _target , rule [ ' TIMER ' ] )
# TGID matches an ACTIVATION trigger
if _dst_id in rule [ ' ON ' ] :
# Set the matching rule as ACTIVE
rule [ ' ACTIVE ' ] = True
rule [ ' TIMER ' ] = pkt_time + rule [ ' TIMEOUT ' ]
logger . info ( ' ( %s ) Primary routing Rule \" %s \" changed to state: %s ' , self . _system , rule [ ' NAME ' ] , rule [ ' ACTIVE ' ] )
# Set reciprocal rules for other IPSCs as ACTIVE
for target_rule in RULES [ _target ] [ ' GROUP_VOICE ' ] :
if target_rule [ ' NAME ' ] == rule [ ' NAME ' ] :
target_rule [ ' ACTIVE ' ] = True
target_rule [ ' TIMER ' ] = pkt_time + target_rule [ ' TIMEOUT ' ]
logger . info ( ' ( %s ) Reciprocal routing Rule \" %s \" in IPSC \" %s \" changed to state: %s ' , self . _system , target_rule [ ' NAME ' ] , _target , rule [ ' ACTIVE ' ] )
# TGID matches an DE-ACTIVATION trigger
if _dst_id in rule [ ' OFF ' ] :
# Set the matching rule as ACTIVE
rule [ ' ACTIVE ' ] = False
logger . info ( ' ( %s ) Routing Rule \" %s \" changed to state: %s ' , self . _system , rule [ ' NAME ' ] , rule [ ' ACTIVE ' ] )
# Set reciprocal rules for other IPSCs as ACTIVE
_target = rule [ ' DST_NET ' ]
for target_rule in RULES [ _target ] [ ' GROUP_VOICE ' ] :
if target_rule [ ' NAME ' ] == rule [ ' NAME ' ] :
target_rule [ ' ACTIVE ' ] = False
logger . info ( ' ( %s ) Reciprocal routing Rule \" %s \" in IPSC \" %s \" changed to state: %s ' , self . _system , target_rule [ ' NAME ' ] , _target , rule [ ' ACTIVE ' ] )
#
# END IN-BAND SIGNALLING
#
2016-11-15 15:50:09 -05:00
# Mark status variables for use later
2016-11-17 17:37:43 -05:00
self . STATUS [ _slot ] [ ' RX_RFS ' ] = _rf_src
2016-11-15 21:35:08 -05:00
self . STATUS [ _slot ] [ ' RX_TYPE ' ] = _dtype_vseq
self . STATUS [ _slot ] [ ' RX_TGID ' ] = _dst_id
self . STATUS [ _slot ] [ ' RX_TIME ' ] = pkt_time
self . STATUS [ _slot ] [ ' RX_STREAM_ID ' ] = _stream_id
2016-11-01 21:54:43 -04:00
2016-07-31 10:42:11 -04:00
#************************************************
# MAIN PROGRAM LOOP STARTS HERE
#************************************************
if __name__ == ' __main__ ' :
2016-11-23 16:01:05 -05:00
import argparse
import sys
import os
import signal
2016-11-25 09:14:36 -05:00
from dmr_utils import try_download , mk_id_dict
2016-11-23 16:01:05 -05:00
#
# Parse the command line and make adjustments
#
# 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 = ' CONFIG_FILE ' , help = ' /full/path/to/config.file (usually hblink.cfg) ' )
parser . add_argument ( ' -l ' , ' --logging ' , action = ' store ' , dest = ' LOG_LEVEL ' , help = ' Override config file logging level. ' )
cli_args = parser . parse_args ( )
# Ensure we have a path for the config file, if one wasn't specified, then use the default (top of file)
if not cli_args . CONFIG_FILE :
cli_args . CONFIG_FILE = os . path . dirname ( os . path . abspath ( __file__ ) ) + ' /hblink.cfg '
#
# Build the configuration file
#
# Call the external routine to build the configuration dictionary
CONFIG = hb_config . build_config ( cli_args . CONFIG_FILE )
#
# Start the system logger
#
if cli_args . LOG_LEVEL :
CONFIG [ ' LOGGER ' ] [ ' LOG_LEVEL ' ] = cli_args . LOG_LEVEL
logger = hb_log . config_logging ( CONFIG [ ' LOGGER ' ] )
logger . debug ( ' Logging system started, anything from here on gets logged ' )
#
# Set up the signal handler
#
def sig_handler ( _signal , _frame ) :
logger . info ( ' SHUTDOWN: HBROUTER IS TERMINATING WITH SIGNAL %s ' , str ( _signal ) )
hblink_handler ( _signal , _frame , logger )
logger . info ( ' SHUTDOWN: ALL SYSTEM HANDLERS EXECUTED - STOPPING REACTOR ' )
reactor . stop ( )
# Set signal handers so that we can gracefully exit if need be
for sig in [ signal . SIGTERM , signal . SIGINT ] :
signal . signal ( sig , sig_handler )
#
# ID ALIAS CREATION
#
# Download
if CONFIG [ ' ALIASES ' ] [ ' TRY_DOWNLOAD ' ] == True :
# Try updating peer aliases file
result = try_download ( CONFIG [ ' ALIASES ' ] [ ' PATH ' ] , CONFIG [ ' ALIASES ' ] [ ' PEER_FILE ' ] , CONFIG [ ' ALIASES ' ] [ ' PEER_URL ' ] , CONFIG [ ' ALIASES ' ] [ ' STALE_TIME ' ] )
logger . info ( result )
# Try updating subscriber aliases file
result = try_download ( CONFIG [ ' ALIASES ' ] [ ' PATH ' ] , CONFIG [ ' ALIASES ' ] [ ' SUBSCRIBER_FILE ' ] , CONFIG [ ' ALIASES ' ] [ ' SUBSCRIBER_URL ' ] , CONFIG [ ' ALIASES ' ] [ ' STALE_TIME ' ] )
logger . info ( result )
# Make Dictionaries
peer_ids = mk_id_dict ( CONFIG [ ' ALIASES ' ] [ ' PATH ' ] , CONFIG [ ' ALIASES ' ] [ ' PEER_FILE ' ] )
if peer_ids :
logger . info ( ' ID ALIAS MAPPER: peer_ids dictionary is available ' )
subscriber_ids = mk_id_dict ( CONFIG [ ' ALIASES ' ] [ ' PATH ' ] , CONFIG [ ' ALIASES ' ] [ ' SUBSCRIBER_FILE ' ] )
if subscriber_ids :
2016-11-25 09:39:14 -05:00
logger . info ( ' ID ALIAS MAPPER: subscriber_ids dictionary is available ' )
2016-11-23 16:01:05 -05:00
talkgroup_ids = mk_id_dict ( CONFIG [ ' ALIASES ' ] [ ' PATH ' ] , CONFIG [ ' ALIASES ' ] [ ' TGID_FILE ' ] )
if talkgroup_ids :
2016-11-25 09:39:14 -05:00
logger . info ( ' ID ALIAS MAPPER: talkgroup_ids dictionary is available ' )
2016-11-23 16:01:05 -05:00
#
# START HB_ROUTER
#
# Build the routing rules file
2016-11-23 17:37:53 -05:00
RULES = make_rules ( ' hb_routing_rules ' )
2016-11-23 16:01:05 -05:00
# Build the Access Control List
2016-11-26 15:59:38 -05:00
ACL = build_acl ( ' sub_acl ' )
2016-07-31 10:42:11 -04:00
2016-08-25 21:44:15 -04:00
# HBlink instance creation
2016-11-23 16:01:05 -05:00
logger . info ( ' HBlink \' hb_router.py \' (c) 2016 N0MJS & the K0USY Group - SYSTEM STARTING... ' )
2016-08-25 21:44:15 -04:00
for system in CONFIG [ ' SYSTEMS ' ] :
if CONFIG [ ' SYSTEMS ' ] [ system ] [ ' ENABLED ' ] :
2016-11-23 16:01:05 -05:00
systems [ system ] = routerSYSTEM ( system , CONFIG , logger )
2016-08-25 21:44:15 -04:00
reactor . listenUDP ( CONFIG [ ' SYSTEMS ' ] [ system ] [ ' PORT ' ] , systems [ system ] , interface = CONFIG [ ' SYSTEMS ' ] [ system ] [ ' IP ' ] )
logger . debug ( ' %s instance created: %s , %s ' , CONFIG [ ' SYSTEMS ' ] [ system ] [ ' MODE ' ] , system , systems [ system ] )
2016-11-17 07:24:28 -05:00
# Initialize the rule timer -- this if for user activated stuff
rule_timer = task . LoopingCall ( rule_timer_loop )
rule_timer . start ( 60 )
2016-07-31 10:42:11 -04:00
reactor . run ( )