You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* implement user-defined adj site mapping to allow fine grained control over neighboring site announcements;
* BUGFIX: patch issue where the FNE would not maintain the source peer ID for certain routing scenarios;
* fix typo in original implementation, peerId should be the peerId and ssrc should become the originating peer ID; remove peer check throwing a warning;
* log ssrc for various data points (the ssrc is the RTP originating sync source which would be the peer ID of the origination of a RTP packet);
* bump build number;
* add peer ID masking support (this is useful for FNEs that are "public" links where internal peer IDs don't need to be retained); more work for maintaining the originating stream sync source; refactor how the FNE handles peer network connections;
* throw a warning if the user configured more then 8 upstream peer connections (more than this number can cause performance problems);
* make non-peer-link peer ID masking optional;
* add checking for traffic repeat to verify we are not trying to send traffic back to the source;
* add checking for traffic repeat to verify we are not trying to send traffic back to an external source;
* convert peer network protocol packet processing to a threaded model;
* update copyright dates;
* implement REST API for manipulating adjacent site map entries;
* fix missed REST API initializer, need to pass the adj site map;
* add DFSI/V.24 full duplex option (this allows dvmhost to repeat incoming frames back out);
* Fix incorrect check of DFSI and FSC operating modes that resulted in a segfault (#92)
Co-authored-by: faulty <[email protected]>
* document p25CorrCount in depth more; set the default p25CorrCount to 2;
* properly call PacketBuffers clear() before leaving a scope to ensure contained buffers are deleted (otherwise we'll leak memory);
* skip the first 6 bits of the TIA-102 DFSI VHDR (this is very strange, and is probably not kosher);
* transparently pass voice frames with FID $20 (assumed to be Kenwood) when the PF flag is set (this allows Kenwoods flavor of encryption to pass);
* relabel FID_DMRA to FID_MOT (this feature ID is assigned to Motorola); handle more conditions for FID $20 (Kenwood) on voice frames;
* remove filterHeaders (this is deprecated, HDUs aren't sent over the network); perform frame length validation for P25 network frames (unlike DMR and NXDN P25 frames are variable length, requring length validation to prevent buffer under or overflows); fix issue with addr variable not being freed in InfluxDB handler;
* [EXPERIMENTAL] add very initial support for dvmpatch to talk to a MMDVM P25 Gateway in P25 mode;
* fixup dvmpatch support for talking to MMDVM P25 Gateway;
* fix up handling of MMDVM call termination;
* more work on better signalling end of call for MMDVM P25 gateway patches; better log traffic from MMDVM;
* correct some incorrect timing;
* add support for properly authorizing a peer to send Inhibit/Uninhibit commands; add some NXDN constants for remote control;
* add columns to main peered peer list to represent if a peer is allowed to inhibit;
* fixup informational logging;
* add auto generation of a peer password; slightly increase the dialog size of the peer edit window;
* fix TIA VHDR incorrect length; correct gatekeep accidentally setting TIA StartOfStream to 4 bytes instead of 3, because you know the TIA spec is incomprehensible with its bit alignment;
* add some permanent log trace for DFSI over UDP tracing; correct startOfStreamTIA incorrectly sending a LDU1 NID; correct some offsets;
* make sure we send out heartbeats *before* the heartbeat time;
* send Start of Stream with voice data;
* free memory in error case; remove unused variables;
* correct some buffer allocations; ensure the AES class is deleted after use;
* implement support for legacy radio affiliation (like P25) for DMR and NXDN (this fixes an issue where conventional DMR and NXDN systems would be unable to transmit onto affiliation only TGs); correct bad CSBK decoding in the FNE (forgot to check for dataSync);
* code cleanup to correct compiler warnings;
* add string file meta data info to Win32 EXEs; add icons to Win32 EXEs;
* migrate and condense analog audio helper and G.711 codec routines into a common class called AnalogAudio for easy reuse; stub network protocol entries to eventually handle analog audio;
* add support in the DVM network protocol for analog FM audio traffic; add support to the DVM FNE to properly switch analog FM audio traffic; bump revision from H to J;
* add analog enable flag to fne config YAML;
* prelim work to make dvmbridge pass analog audio directly into FNE network;
* handle locking inside deleteBuffers();
* refactor FrameQueue mutex handling; don't start and stop the thread pool when the peer network opens/closes;
* use unique_ptr for compression class instead of passing raw pointers;
* refactor FrameQueue from using a std::unordered_map to a simple fixed array that is directly controlled;
* refactor compression slightly;
* better handle multi-threaded problems;
* use a std::vector instead of a classical C allocated array for timestamp list; add error/logic checking for V.24/DFSI where the VHDR may send a TGID0 during a call causing a call rejection;
* make timestamps vector static;
* dump out of VHDR processing if call is in progress;
* bump tarball version build stamp;
* add option to forcibly allow TGID0 for badly behaved systems this will cause dvmhost to accept the call and not drop it, with the caveat that the TGID will be rewritten to TGID1, the network stack simply cannot service a TGID of 0 and as such we must rewrite the TGID a TIA-102 valid TGID;
* simplify late entry handling where V.24 may send a dstId of 0;
* whoops correct my own stupidity;
* whoops correct my own stupidity (again);
* add opcodes for Harris User Alias and GPS; add opcode for Motorola GPS on PTT; decode Harris User Alias in LDU LCs;
* attempt at decoding the LDU RS values for both V.24 and TIA DFSI, this does not abort decoding in the ModemV24 right now and will simply log an error if the RS values for the LDU1 or LDU2 are to badly invalid;
* alter field data based on recent testing; enhance and update debug log entries; add debug logging for Voice 1 and 10 start of voice frames for V.24;
* add missing tag information for V.24 PDU;
* fix incorrect handling of RFSS ID in host setup;
* experimental fix to ignore wildly illegal TGIDs in the HDU;
* simplify the V.24 HDU TGID logic, entirely ignore the TGID presented in the HDU and just wait for the LDU1 to set the rfLastDstId;
* add grantDemand documentation to dvmpatch;
* [EXPERIMENTAL] add experimental support for cross-encrypting patched P25 traffic;
* reset call algo when a P25 call ends;
* properly handle algo ID's for source and destinations;
* missed reverseCrypto check;
* [EXPERIMENTAL] for some configurations (**you know who you are god damn it**), allow dvmhost to be configured to "idle" on a non-zero TG when the RF talkgroup hangtimer stops, this effectively disables the promiscuous network Rx of the host for certain conventional operations, and requires RF-based TG steering to change the active talkgroup; cleanup the macros for DMR and NXDN that perform various repeated checks;
* major refactor for V.24 support;
* hide RSSI2 ICW errors; report on any voice frames reporting more then 0 errors;
* properly sent VHDR1 and VHDR2 with proper opcodes (whoops);
* add experimental support for TDULC over V.24; add some documentation for the V.24 and TIA voice header byte layout;
* experimental support for transporting V.24 over IP;
* initial super frame should start at 1; make sure to use proper constants instead of magic numbers;
* reorganize code slightly;
* cleanup format for, and make slightly more precise trace and error dumping log messaging;
* add option for the FNE to directly log traffic denials to the system log;
* centralize string for illegal RID access;
* log total voice frame errors for TIA/DFSI mode;
* minor PDU refactoring on when network PDU data is sent; correct issue with accepting a conventional data reg;
* disable allowExplicitSourceId by default (not all subscribers support this); correct some bad handling of LC data;
* log sysId and netId info for call start and end on the FNE log;
* add setting netId and sysId to dvmbridge and dvmpatch for future use;
* reorganize and expose decodeLC/encodeLC from LC; correct typo in TDULC headers; add explicit source id TDULC; add LC_GROUP explicit ID flag;
* use shorthand macros where able;
* enable or disable explicit source ID directly, don't require control to be enabled (important for trunked VC);
* minor correction to handling explicit source ID;
* properly set dummy SiteData for dvmbridge and dvmpatch (necessary to set the WACN and SysId);
* handle condition defaulting WACN and SysId if network data for WACN and SysId is 0;
* ensure unencrypted parameters if encryption is disabled;
* copy dvmbridge change to dvmpatch for: ensure unencrypted parameters if encryption is disabled;
* ignore extra ICW opcodes;
* use raw LDU values from the call data instead of processed values if the MFId on the LC isn't TIA standard;
* collate bit errors reported from V.24 or TIA;
* typos;
* allow a group affiliation on Conv+ (DVRS) to terminate a running TG hang timer;
* add missing stop to the timer;
* add WACN/SysId logging to SysView;
* add global to disable transmitting logging to the network (this is used when the UDP socket fails to send data to prevent a crash condition talking to a null socket); unify errno to string message processing for clearity in logs; refactor network reconnect and retry logic to better handle a full connection reset cycle (this is useful for conditions where the network loss isn't transient and is something like a Ethernet or WiFi link drop causing the entire interface to become down temporarily);
* remove unnecessary debug logging;
* allow encoding user alias at the LC level;
* see if we can calculate error percentages;
* get rid of magic numbers for properly defined constants;
* implement proper support for P25 LDU1 and LDU2 to pass call control bytes; allow a end-point to signal that a call is handing over/switching over from one stream ID/source ID to another; implement support on dvmbridge to properly handle stream/source ID switch over;
* log call source switch over events;
* whoops this should be a OR equals not equals;
* correct issue where network frames would be ignored during RF calls causing buffer overflows;
* cleanup and remove unnecessary and confusing C compiler macros;
* cleanup and unify design a bit, for P25 move traffic collision checking into separate function calls;
* add colorize-host.sh helper tool; update colorize-fne.sh tool for DMR and NXDN;
* store status data for a private call;
* during unit registration store the originating source peer ID for a given unit registration; use unit registration source ID to select the destination peer to send private call data to;
* initial experimental implementation of private call routing:
this introduces a new configuration flag "restrictPrivateCallToRegOnly", when set, this flag will influence how private calls are routed through the system
private calls using restrictPrivateCallToRegOnly require both the source and destination subscribers to be unit registered with the system, when a private call
occurs the system will utilize the source peer ID to restrict repeating the private call traffic only to the 2 peers involved in the private call
FNEs will *always* receive private call traffic
* rework stream validation for U2U calls slightly for P25; ensure P25 always sends the U2U control byte for private calls;
* enhance handling of NXDN LC on the FNE; fix issue where dvmhost would not process a network RCCH burst;
* refactor NXDN CC handling a bit;
* add support to translate a raw DENY/QUEUE/CAUSE/REASON value for DMR/P25/NXDN into a human readable string;
* whoops hastily missed std::string -> c_str conversion;
* ensure SSRC is maintained for unit registration announcements;
* more implementation for private call routing;
* add missing clear flag to DMR payload activate RPC;
* correct crash for fsc set to true when not using DFSI TIA-102/UDP;
* add support to disable a failed CRC-32 for P25 PDU data; ignore CRC-32 errors for AMBT PDUs;
* Add support in dvmbridge for a serial PTT activation switch. RTS is asserted on the serial port defined in bridge-config.yml for the duration of audio received, then is removed. (#102)
* P25 PDU packet handling refactor (for future use);
* remove test code;
* fix issue where PDU RSPs weren't being sent to the FNE; correct timing around ARP and packet retry when subscriber is not ready;
* add some more verbose logging;
* experimental changes to PDU data handling;
* correct CSV parsing for iden, peer list and RID lookup tables (we would skip parameters if they were empty); make the FNE P25 packet data handler operate in the TIA-102 asymmetric addressing mode (as would be required with FNE configurations);
---------
Co-authored-by: Jamie <[email protected]>
Co-authored-by: faulty <[email protected]>
Co-authored-by: Lorenzo L. Romero <[email protected]>
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "The DVM Host software provides the host computer implementation of a mixed-mode DMR, P25 and/or NXDN or dedicated-mode DMR, P25 or NXDN repeater system that talks to the actual modem hardware. The host software; is the portion of a complete Over-The-Air modem implementation that performs the data processing, decision making and FEC correction for a digital repeater.")
0 commit comments