/* ============================================================================ Name : nxdn_element.c (formerly nxdn_lib) Author : Version : 1.0 Date : 2018 December 26 Copyright : No copyright Description : NXDN decoding source lib - modified from nxdn_lib Origin : Originally found at - https://github.com/LouisErigHerve/dsd ============================================================================ */ #include "dsd.h" void NXDN_SACCH_Full_decode(dsd_opts * opts, dsd_state * state) { uint8_t SACCH[400]; //72 uint32_t i; uint8_t CrcCorrect = 1; memset (SACCH, 0, sizeof (SACCH)); /* Consider all SACCH CRC parts as correct */ CrcCorrect = 1; /* Reconstitute the full 72 bits SACCH */ for(i = 0; i < 4; i++) { memcpy(&SACCH[i * 18], state->nxdn_sacch_frame_segment[i], 18); /* Check CRC */ if (state->nxdn_sacch_frame_segcrc[i] != 0) CrcCorrect = 0; } /* Decodes the element content */ // currently only going to run this if all four CRCs are good if (CrcCorrect == 1) NXDN_Elements_Content_decode(opts, state, CrcCorrect, SACCH); else if (opts->aggressive_framesync == 0) NXDN_Elements_Content_decode(opts, state, 0, SACCH); //reset the sacch field -- Github Issue #118 memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); } /* End NXDN_SACCH_Full_decode() */ void NXDN_Elements_Content_decode(dsd_opts * opts, dsd_state * state, uint8_t CrcCorrect, uint8_t * ElementsContent) { uint32_t i; uint8_t MessageType; uint64_t CurrentIV = 0; unsigned long long int FullMessage = 0; /* Get the "Message Type" field */ MessageType = (ElementsContent[2] & 1) << 5; MessageType |= (ElementsContent[3] & 1) << 4; MessageType |= (ElementsContent[4] & 1) << 3; MessageType |= (ElementsContent[5] & 1) << 2; MessageType |= (ElementsContent[6] & 1) << 1; MessageType |= (ElementsContent[7] & 1) << 0; /* Save the "F1" and "F2" flags */ state->NxdnElementsContent.F1 = ElementsContent[0]; state->NxdnElementsContent.F2 = ElementsContent[1]; /* Save the "Message Type" field */ state->NxdnElementsContent.MessageType = MessageType; /* Set the CRC state */ state->NxdnElementsContent.VCallCrcIsGood = CrcCorrect; /* Decode the right "Message Type" */ switch(MessageType) { //Debug: Disable DUP messages if they cause random issues with Type-C trunking (i.e. changing SRC ang TGT IDs, hopping in the middle of calls, etc) //VCALL_ASSGN_DUP case 0x05: //DCALL_ASSGN_DUP case 0x0D: //VCALL_ASSGN case 0x04: //DCALL_ASSGN case 0x0E: NXDN_decode_VCALL_ASSGN(opts, state, ElementsContent); break; //Alias 0x3F case 0x3F: NXDN_decode_Alias(opts, state, ElementsContent); break; //SRV_INFO case 0x19: state->nxdn_last_rid = 0; state->nxdn_last_tg = 0; NXDN_decode_srv_info(opts, state, ElementsContent); break; //CCH_INFO case 0x1A: NXDN_decode_cch_info(opts, state, ElementsContent); break; //SITE_INFO case 0x18: NXDN_decode_site_info(opts, state, ElementsContent); break; //ADJ_SITE_INFO case 0x1B: NXDN_decode_adj_site(opts, state, ElementsContent); break; //VCALL, TX_REL_EXT and TX_REL case 0x01: case 0x07: case 0x08: NXDN_decode_VCALL(opts, state, ElementsContent); break; //DISC case 0x11: NXDN_decode_VCALL(opts, state, ElementsContent); memset (state->nxdn_alias_block_segment, 0, sizeof(state->nxdn_alias_block_segment)); //tune back to CC here - save about 1-2 seconds if (opts->p25_trunk == 1 && state->p25_cc_freq != 0 && opts->p25_is_tuned == 1) { //rigctl if (opts->use_rigctl == 1) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); memset(state->active_channel, 0, sizeof(state->active_channel)); opts->p25_is_tuned = 0; if (opts->setmod_bw != 0 ) SetModulation(opts->rigctl_sockfd, opts->setmod_bw); SetFreq(opts->rigctl_sockfd, state->p25_cc_freq); } //rtl else if (opts->audio_in_type == 3) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); memset(state->active_channel, 0, sizeof(state->active_channel)); opts->p25_is_tuned = 0; rtl_dev_tune (opts, state->p25_cc_freq); } } break; //Idle case 0x10: break; //VCALL_IV case 0x03: NXDN_decode_VCALL_IV(opts, state, ElementsContent); break; /* Unknown Message Type */ default: { break; } } /* End switch(MessageType) */ nxdn_message_type (opts, state, MessageType); } /* End NXDN_Elements_Content_decode() */ //externalize multiple sub-element handlers void nxdn_location_id_handler (dsd_state * state, uint32_t location_id, uint8_t type) { //6.5.2 Location ID uint8_t category_bit = location_id >> 22; uint32_t sys_code = 0; uint16_t site_code = 0; char category[14]; //G, R, or L if (category_bit == 0) { sys_code = ( (location_id & 0x3FFFFF) >> 12); //10 bits site_code = location_id & 0x3FF; //12 bits sprintf (category, "%s", "Global"); } else if (category_bit == 2) { sys_code = ( (location_id & 0x3FFFFF) >> 8); //14 bits site_code = location_id & 0xFF; //8 bits sprintf (category, "%s", "Regional"); } else if (category_bit == 1) { sys_code = ( (location_id & 0x3FFFFF) >> 5); //17 bits site_code = location_id & 0x1F; //5 bits sprintf (category, "%s", "Local"); } else { //err, or we shouldn't ever get here sprintf (category, "%s", "Reserved/Err"); } //type 0 is for current site, type 1 is for adjacent sites if (type == 0) { state->nxdn_last_ran = site_code % 64; //Table 6.3-4 RAN for Trunked Radio Systems if (site_code != 0) state->nxdn_location_site_code = site_code; if (sys_code != 0) state->nxdn_location_sys_code = sys_code; sprintf (state->nxdn_location_category, "%s", category); } if (type == 0) fprintf (stderr, "\n Location Information - Cat: %s - Sys Code: %d - Site Code %d ", category, sys_code, site_code); else fprintf (stderr, "\n Adjacent Information - Cat: %s - Sys Code: %d - Site Code %d ", category, sys_code, site_code); } void nxdn_srv_info_handler (dsd_state * state, uint16_t svc_info) { //handle the service information elements //Part 1-A Common Air Interface Ver.2.0 //6.5.33. Service Information fprintf (stderr, "\n Services:"); //check each SIF 1-bit element if (svc_info & 0x8000) fprintf (stderr, " Multi-Site;"); if (svc_info & 0x4000) fprintf (stderr, " Multi-System;"); if (svc_info & 0x2000) fprintf (stderr, " Location Registration;"); if (svc_info & 0x1000) fprintf (stderr, " Group Registration;"); if (svc_info & 0x800) fprintf (stderr, " Authentication;"); if (svc_info & 0x400) fprintf (stderr, " Composite Control Channel;"); if (svc_info & 0x200) fprintf (stderr, " Voice Call;"); if (svc_info & 0x100) fprintf (stderr, " Data Call;"); if (svc_info & 0x80) fprintf (stderr, " Short Data Call;"); if (svc_info & 0x40) fprintf (stderr, " Status Call & Remote Control;"); if (svc_info & 0x20) fprintf (stderr, " PSTN Network Connection;"); if (svc_info & 0x10) fprintf (stderr, " IP Network Connection;"); //last 4-bits are spares } void nxdn_rst_info_handler (dsd_state * state, uint32_t rst_info) { //handle the restriction information elements //Part 1-A Common Air Interface Ver.2.0 //6.5.34. Restriction Information fprintf (stderr, "\n RST -"); //Mobile station operation information (Octet 0, Bits 7 to 4) fprintf (stderr, " MS:"); if (rst_info & 0x800000) fprintf (stderr, " Access Restriction;"); else if (rst_info & 0x400000) fprintf (stderr, " Maintenance Restriction;"); // else fprintf (stderr, " No Restriction;"); //Access cycle interval (Octet 0, Bits 3 to 0) fprintf (stderr, " ACI:"); uint8_t frames = (rst_info >> 16) & 0xF; if (frames) fprintf (stderr, " %d Frame Restriction;", frames * 20); // else fprintf (stderr, " No Restriction;"); //Restriction group specification (Octet 1, Bits 7 to 4) fprintf (stderr, " RGS:"); uint8_t uid = (rst_info >> 12) & 0x7; //MSB is a spare, so only evaluate 3-bits fprintf (stderr, " Lower 3 bits of Unit ID = %d %d %d", uid & 1, (uid >> 1) & 1, (uid >> 2) & 1); //Restriction Information (Octet 1, Bits 3 to 0) fprintf (stderr, " RI:"); if (rst_info & 0x800) fprintf (stderr, " Location Restriction;"); else if (rst_info & 0x400) fprintf (stderr, " Call Restriction;"); else if (rst_info & 0x200) fprintf (stderr, " Short Data Restriction;"); // else fprintf (stderr, " No Restriction;"); //Restriction group ratio specification (Octet 2, Bits 7 to 6) fprintf (stderr, " RT:"); uint8_t ratio = (rst_info >> 22) & 0x3; if (ratio == 1) fprintf (stderr, " 50 Restriction;"); else if (ratio == 2) fprintf (stderr, " 75 Restriction;"); else if (ratio == 3) fprintf (stderr, " 87.5 Restriction;"); // else fprintf (stderr, " No Restriction;"); //Delay time extension specification (Octet 2, Bits 5 to 4) fprintf (stderr, " DT:"); uint8_t dt = (rst_info >> 20) & 0x3; if (dt == 0) fprintf (stderr, " Timer T2 max x 1;"); else if (dt == 1) fprintf (stderr, " Timer T2 max x 2;"); else if (dt == 2) fprintf (stderr, " Timer T2 max x 3;"); else fprintf (stderr, " Timer T2 max x 4;"); //ISO Temporary Isolation Site -- This is valid only if the SIF 1 of Service Information is set to 1. if (rst_info & 0x0001) fprintf (stderr, " - Site Isolation;"); //what a pain... } void nxdn_ca_info_handler (dsd_state * state, uint32_t ca_info) { //handle the channel access info for channel or dfa //Part 1-A Common Air Interface Ver.2.0 //6.5.36. Channel Access Information //this element only seems to appear in the SITE_INFO message uint32_t RCN = ca_info >> 23; //Radio Channel Notation uint32_t step = (ca_info >> 21) & 0x3; //Stepping uint32_t base = (ca_info >> 18) & 0x7; //Base Frequency uint32_t spare = ca_info & 0x3FF; //set state variable here to tell us to use DFA or Channel Versions if (RCN == 1) { state->nxdn_rcn = RCN; state->nxdn_step = step; state->nxdn_base_freq = base; } } //end sub-element handlers void NXDN_decode_VCALL_ASSGN(dsd_opts * opts, dsd_state * state, uint8_t * Message) { //just using 'short form' M only data, not the optional data uint8_t CCOption = 0; uint8_t CallType = 0; uint8_t VoiceCallOption = 0; uint16_t SourceUnitID = 0; uint16_t DestinationID = 0; uint8_t CallTimer = 0; uint16_t Channel = 0; uint8_t LocationIDOption = 0; uint8_t DuplexMode[32] = {0}; uint8_t TransmissionMode[32] = {0}; uint8_t MessageType; /* Get the "Message Type" field */ MessageType = (Message[2] & 1) << 5; MessageType |= (Message[3] & 1) << 4; MessageType |= (Message[4] & 1) << 3; MessageType |= (Message[5] & 1) << 2; MessageType |= (Message[6] & 1) << 1; MessageType |= (Message[7] & 1) << 0; if (MessageType == 0x4) fprintf (stderr, "%s", KGRN); //VCALL_ASSGN else if (MessageType == 0x05) fprintf (stderr, "%s", KGRN); //VCALL_ASSGN_DUP else if (MessageType == 0x0E) fprintf (stderr, "%s", KCYN); //DCALL_ASSGN else if (MessageType == 0x0D) fprintf (stderr, "%s", KCYN); //DCALL_ASSGN_DUP //DFA specific variables uint8_t bw = 0; uint16_t OFN = 0; uint16_t IFN = 0; /* Decode "CC Option" */ CCOption = (uint8_t)ConvertBitIntoBytes(&Message[8], 8); state->NxdnElementsContent.CCOption = CCOption; /* Decode "Call Type" */ CallType = (uint8_t)ConvertBitIntoBytes(&Message[16], 3); state->NxdnElementsContent.CallType = CallType; /* Decode "Voice Call Option" */ VoiceCallOption = (uint8_t)ConvertBitIntoBytes(&Message[19], 5); state->NxdnElementsContent.VoiceCallOption = VoiceCallOption; /* Decode "Source Unit ID" */ SourceUnitID = (uint16_t)ConvertBitIntoBytes(&Message[24], 16); state->NxdnElementsContent.SourceUnitID = SourceUnitID; /* Decode "Destination ID" */ DestinationID = (uint16_t)ConvertBitIntoBytes(&Message[40], 16); state->NxdnElementsContent.DestinationID = DestinationID; /* Decode "Call Timer" */ //unsure of format of call timer, not required info for trunking CallTimer = (uint8_t)ConvertBitIntoBytes(&Message[56], 6); /* Decode "Channel" */ Channel = (uint16_t)ConvertBitIntoBytes(&Message[62], 10); /* Decode DFA-only variables*/ if (state->nxdn_rcn == 1) { bw = (uint8_t)ConvertBitIntoBytes(&Message[62], 2); OFN = (uint16_t)ConvertBitIntoBytes(&Message[64], 16); IFN = (uint16_t)ConvertBitIntoBytes(&Message[80], 16); } //Part 1-E Common Air Interface Ver.1.3 - 6.4.1.23. Voice Call Assignment (VCALL_ASSGN) //While I've only seen Busy Repeater Message on the SCCH message (different format) //The manual suggests this message exists on Type-D systems with this configuration //On Type-D systems, need to truncate to an 11-bit value //other 5-bits are repeater or prefix value // uint8_t idas = 0; // uint8_t rep1 = 0; // uint8_t rep2 = 0; // if (strcmp (state->nxdn_location_category, "Type-D") == 0) idas = 1; // if (idas) // { // rep1 = (SourceUnitID >> 11) & 0x1F; // rep2 = (DestinationID >> 11) & 0x1F; // SourceUnitID = SourceUnitID & 0x7FF; // DestinationID = DestinationID & 0x7FF; // //assign source prefix/rep1 as the tune to channel? // //In normal VCALL, both prefix/rep values are the same on the Type-D samples I have // Channel = rep1; // } if (MessageType == 0x4 || MessageType == 0x5) fprintf (stderr, "%s", KGRN); //VCALL_ASSGN else fprintf (stderr, "%s", KCYN); //DCALL_ASSGN fprintf (stderr, "\n "); /* Print the "CC Option" */ if(CCOption & 0x80) fprintf(stderr, "Emergency "); if(CCOption & 0x40) fprintf(stderr, "Visitor "); if(CCOption & 0x20) fprintf(stderr, "Priority Paging "); /* Print the "Call Type" */ fprintf(stderr, "%s - ", NXDN_Call_Type_To_Str(CallType)); /* Print the "Voice Call Option" */ if (MessageType == 0x4 || MessageType == 0x5) NXDN_Voice_Call_Option_To_Str(VoiceCallOption, DuplexMode, TransmissionMode); if (MessageType == 0x4 || MessageType == 0x5) fprintf(stderr, "%s %s - ", DuplexMode, TransmissionMode); else fprintf (stderr, " Data Call Assignment - "); //DCALL_ASSGN or DCALL_ASSGN_DUP /* Print Source ID and Destination ID (Talk Group or Unit ID) */ fprintf(stderr, "Src=%u - Dst/TG=%u ", SourceUnitID & 0xFFFF, DestinationID & 0xFFFF); //Channel here appears to be the prefix or home channel of the caller, not necessarily the channel the call is occuring on // if (idas) fprintf (stderr, "- Prefix Ch: %d ", rep1); /* Print Channel */ if (state->nxdn_rcn == 0) fprintf(stderr, "- Channel [%03X][%04d] ", Channel & 0x3FF, Channel & 0x3FF); if (state->nxdn_rcn == 1) fprintf(stderr, "- DFA Channel [%04X][%05d] ", OFN, OFN); //test VCALL_ASSGN_DUP, if no voice sync activity (by trunk_hangtime), then convert to assgn and allow tuning //VCALL_ASSGN_DUP has been seen in the middle of calls, but also on the tail end instead of a TX_REL or DISC if (MessageType == 0x5 && opts->p25_is_tuned == 1 && opts->p25_trunk == 1) { if ( (time(NULL) - state->last_vc_sync_time) > opts->trunk_hangtime ) { MessageType = 0x04; //convert to VCALL opts->p25_is_tuned = 0; //open tuning back up to tune } } //assign active call to string (might place inside of tune decision to get multiple ones?) if (state->nxdn_rcn == 0) sprintf (state->active_channel[0], "Active Ch: %d TG: %d; ", Channel, DestinationID); if (state->nxdn_rcn == 1) sprintf (state->active_channel[0], "Active Ch: %d TG: %d; ", OFN, DestinationID); state->last_active_time = time(NULL); //Add support for tuning data and group/private calls on trunking systems uint8_t tune = 0; //DCALL_ASSGN and DCALL_ASSGN_DUP if (MessageType == 0x0D || MessageType == 0x0E ) { if (opts->trunk_tune_data_calls == 1) tune = 1; } else if (MessageType == 0x04) //VCALL_ASSGN and converted VCALL_ASSGN_DUP { if (CallType == 4) //individual/private call { if (opts->trunk_tune_private_calls) tune = 1; } else if (opts->trunk_tune_group_calls) tune = 1; } if (tune == 0) goto END_ASSGN; //run process to figure out frequency value from the channel import or from DFA long int freq = 0; if (state->nxdn_rcn == 0) freq = nxdn_channel_to_frequency(opts, state, Channel); if (state->nxdn_rcn == 1) freq = nxdn_channel_to_frequency(opts, state, OFN); //check for control channel frequency in the channel map if not available if (opts->p25_trunk == 1 && state->p25_cc_freq == 0) { long int ccfreq = 0; //if not available, then poll rigctl if its available if (opts->use_rigctl == 1) { ccfreq = GetCurrentFreq (opts->rigctl_sockfd); if (ccfreq != 0) state->p25_cc_freq = ccfreq; } //if using rtl input, we can ask for the current frequency tuned else if (opts->audio_in_type == 3) { ccfreq = (long int)opts->rtlsdr_center_freq; if (ccfreq != 0) state->p25_cc_freq = ccfreq; } } //run group/source analysis and tune if available/desired //group list mode so we can look and see if we need to block tuning any groups, etc char mode[8]; //allow, block, digital, enc, etc //if we are using allow/whitelist mode, then write 'B' to mode for block //comparison below will look for an 'A' to write to mode if it is allowed if (opts->trunk_use_allow_list == 1) sprintf (mode, "%s", "B"); for (int i = 0; i < state->group_tally; i++) { if (state->group_array[i].groupNumber == DestinationID) //source, or destination? { fprintf (stderr, " [%s]", state->group_array[i].groupName); strcpy (mode, state->group_array[i].groupMode); } //might not be ideal if both source and group/target are both in the array else if (state->group_array[i].groupNumber == SourceUnitID) //source, or destination? { fprintf (stderr, " [%s]", state->group_array[i].groupName); strcpy (mode, state->group_array[i].groupMode); } } //check to see if the source/target candidate is blocked first if (opts->p25_trunk == 1 && (strcmp(mode, "DE") != 0) && (strcmp(mode, "B") != 0)) //DE is digital encrypted, B is block { if (state->p25_cc_freq != 0 && opts->p25_is_tuned == 0 && freq != 0) //if we aren't already on a VC and have a valid frequency { //rigctl if (opts->use_rigctl == 1) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); state->lastsynctype = -1; state->last_cc_sync_time = time(NULL); state->last_vc_sync_time = time(NULL); // if (opts->setmod_bw != 0 ) SetModulation(opts->rigctl_sockfd, opts->setmod_bw); SetFreq(opts->rigctl_sockfd, freq); state->p25_vc_freq[0] = state->p25_vc_freq[1] = freq; opts->p25_is_tuned = 1; //set to 1 to set as currently tuned so we don't keep tuning nonstop //set rid and tg when we actually tune to it state->nxdn_last_rid = SourceUnitID; state->nxdn_last_tg = DestinationID; sprintf (state->nxdn_call_type, "%s", NXDN_Call_Type_To_Str(CallType)); //check the rkey array for a scrambler key value //TGT ID and Key ID could clash though if csv or system has both with different keys if (state->rkey_array[DestinationID] != 0) { state->R = state->rkey_array[DestinationID]; fprintf (stderr, " %s", KYEL); fprintf (stderr, " Key Loaded: %lld", state->rkey_array[DestinationID]); } if (state->M == 1) state->nxdn_cipher_type = 0x1; } //rtl else if (opts->audio_in_type == 3) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); state->lastsynctype = -1; state->last_cc_sync_time = time(NULL); state->last_vc_sync_time = time(NULL); // rtl_dev_tune (opts, freq); state->p25_vc_freq[0] = state->p25_vc_freq[1] = freq; opts->p25_is_tuned = 1; //set rid and tg when we actually tune to it state->nxdn_last_rid = SourceUnitID; state->nxdn_last_tg = DestinationID; sprintf (state->nxdn_call_type, "%s", NXDN_Call_Type_To_Str(CallType)); //check the rkey array for a scrambler key value //TGT ID and Key ID could clash though if csv or system has both with different keys if (state->rkey_array[DestinationID] != 0) { state->R = state->rkey_array[DestinationID]; fprintf (stderr, " %s", KYEL); fprintf (stderr, " Key Loaded: %lld", state->rkey_array[DestinationID]); } if (state->M == 1) state->nxdn_cipher_type = 0x1; } } } END_ASSGN: ; //do nothing fprintf (stderr, "%s", KNRM); } /* End NXDN_decode_VCALL_ASSGN() */ void NXDN_decode_Alias(dsd_opts * opts, dsd_state * state, uint8_t * Message) { uint8_t Alias1 = 0x20; //value of an ascii 'space' character uint8_t Alias2 = 0x20; uint8_t Alias3 = 0x20; uint8_t Alias4 = 0x20; uint8_t blocknumber = 0; uint8_t CrcCorrect = 0; //alias can also hit on a facch1 -- do we still need this checkdown? if (state->nxdn_sacch_non_superframe == FALSE) { CrcCorrect = state->NxdnElementsContent.VCallCrcIsGood; } else CrcCorrect = 1; //FACCH1 with bad CRC won't make it this far anyways, so set as 1 //FACCH Payload [3F][68][82][04][2 <- block number4] "[69][6F][6E][20]" <- 4 alias octets [00][7F][1C] blocknumber = (uint8_t)ConvertBitIntoBytes(&Message[32], 4) & 0x7; // & 0x7, might just be three bits, unsure Alias1 = (uint8_t)ConvertBitIntoBytes(&Message[40], 8); Alias2 = (uint8_t)ConvertBitIntoBytes(&Message[48], 8); Alias3 = (uint8_t)ConvertBitIntoBytes(&Message[56], 8); Alias4 = (uint8_t)ConvertBitIntoBytes(&Message[64], 8); //sanity check to prevent OOB array assignment if (blocknumber > 0 && blocknumber < 4) //last 'block' may have been assigning garbage name values -- needs testing { //assign to index -1, since block number conveyed here is 1,2,3,4, and index values are 0,1,2,3 //only assign if within valid range of ascii characters (not including diacritical extended alphabet) //else assign "space" ascii character //since we are zeroing out the blocks on tx_rel and other conditions, better to just set nothing to bad Alias bytes //tends to zero out otherwise already good blocks set in a previous repitition. if (Alias1 > 0x19 && Alias1 < 0x7F) sprintf (state->nxdn_alias_block_segment[blocknumber-1][0], "%c", Alias1); else ;// sprintf (state->nxdn_alias_block_segment[blocknumber-1][0], "%c", 32); //space if (Alias2 > 0x19 && Alias2 < 0x7F) sprintf (state->nxdn_alias_block_segment[blocknumber-1][1], "%c", Alias2); else ; //sprintf (state->nxdn_alias_block_segment[blocknumber-1][1], "%c", 0); //space if (Alias3 > 0x19 && Alias3 < 0x7F) sprintf (state->nxdn_alias_block_segment[blocknumber-1][2], "%c", Alias3); else ; //sprintf (state->nxdn_alias_block_segment[blocknumber-1][2], "%c", 0); //space if (Alias4 > 0x19 && Alias4 < 0x7F) sprintf (state->nxdn_alias_block_segment[blocknumber-1][3], "%c", Alias4); else ; //sprintf (state->nxdn_alias_block_segment[blocknumber-1][3], "%c", 0); //space } //crc errs in one repitition may occlude an otherwise good alias, so test and change if needed //completed alias should still appear in ncurses terminal regardless, so this may be okay if (CrcCorrect) { fprintf (stderr, " "); //spacer for (int i = 0; i < 4; i++) { for (int j = 0; j < 4; j++) { fprintf (stderr, "%s", state->nxdn_alias_block_segment[i][j]); } } fprintf (stderr, " "); } else fprintf (stderr, " CRC ERR "); //redundant print? or okay? } void NXDN_decode_cch_info(dsd_opts * opts, dsd_state * state, uint8_t * Message) { //6.4.3.3. Control Channel Information (CCH_INFO) for more information uint32_t location_id = 0; uint8_t channel1sts = 0; uint16_t channel1 = 0; uint8_t channel2sts = 0; uint16_t channel2 = 0; long int freq1 = 0; long int freq2 = 0; //DFA uint8_t bw1 = 0; uint16_t OFN1 = 0; uint16_t IFN1 = 0; uint8_t bw2 = 0; uint16_t OFN2 = 0; uint16_t IFN2 = 0; location_id = (uint32_t)ConvertBitIntoBytes(&Message[8], 24); channel1sts = (uint8_t)ConvertBitIntoBytes(&Message[32], 6); channel1 = (uint16_t)ConvertBitIntoBytes(&Message[38], 10); channel2sts = (uint8_t)ConvertBitIntoBytes(&Message[48], 6); channel2 = (uint16_t)ConvertBitIntoBytes(&Message[54], 10); fprintf (stderr, "%s", KYEL); nxdn_location_id_handler (state, location_id, 0); fprintf (stderr, "\n Control Channel Information \n"); //Channel version if (state->nxdn_rcn == 0) { fprintf (stderr, " Location ID [%06X] CC1 [%03X][%04d] CC2 [%03X][%04d] Status: ", location_id, channel1, channel1, channel2, channel2); //check the sts bits to determine if current, new, add, or delete if (channel1sts & 0x20) fprintf (stderr, "Current "); if (channel1sts & 0x10) fprintf (stderr, "New "); if (channel1sts & 0x08) fprintf (stderr, "Candidate Added "); if (channel1sts & 0x04) fprintf (stderr, "Candidate Deleted "); freq1 = nxdn_channel_to_frequency (opts, state, channel1); freq2 = nxdn_channel_to_frequency (opts, state, channel2); } //DFA version if (state->nxdn_rcn == 1) { bw1 = (uint8_t)ConvertBitIntoBytes(&Message[38], 2); OFN1 = (uint16_t)ConvertBitIntoBytes(&Message[40], 16); IFN1 = (uint16_t)ConvertBitIntoBytes(&Message[56], 16); fprintf (stderr, " Location ID [%06X] OFN1 [%04X][%05d] IFN1 [%04X][%05d] ", location_id, OFN1, OFN1, IFN1, IFN1); //facch1 will not have the below items -- should be NULL or 0 if not available bw2 = (uint8_t)ConvertBitIntoBytes(&Message[78], 2); OFN2 = (uint16_t)ConvertBitIntoBytes(&Message[80], 16); IFN2 = (uint16_t)ConvertBitIntoBytes(&Message[96], 16); if (OFN2 && IFN2) { fprintf (stderr, "OFN2 [%04X][%05d] IFN2 [%04X][%05d]", OFN2, OFN2, IFN2, IFN2); } fprintf (stderr, "Status: "); if (channel1sts & 0x10) fprintf (stderr, "New "); if (channel1sts & 0x02) fprintf (stderr, "Current 1 "); if (channel1sts & 0x01) fprintf (stderr, "Current 2 "); //willing to assume that bw1 and bw2 would both be the same value if (bw1 == 0) fprintf (stderr, "BW: 6.25 kHz - 4800 bps"); else if (bw1 == 1) fprintf (stderr, "BW: 12.5 kHz - 9600 bps"); else fprintf (stderr, "BW: %d Reserved Value", bw1); freq1 = nxdn_channel_to_frequency (opts, state, OFN1); nxdn_channel_to_frequency (opts, state, IFN1); //run second -- if available and not equal to first if (OFN2 && IFN2 && OFN2 != OFN1) { nxdn_channel_to_frequency (opts, state, OFN2); nxdn_channel_to_frequency (opts, state, IFN2); } //add to lcn freq for hunting -- only when using pure DFA and not importing if (state->trunk_lcn_freq[0] == 0 && freq1 != 0) { state->trunk_lcn_freq[0] = freq1; state->p25_cc_freq = freq1; state->lcn_freq_count = 1; } } fprintf (stderr, "%s", KNRM); } void NXDN_decode_srv_info(dsd_opts * opts, dsd_state * state, uint8_t * Message) { uint32_t location_id = 0; uint16_t svc_info = 0; //service information uint32_t rst_info = 0; //restriction information location_id = (uint32_t)ConvertBitIntoBytes(&Message[8], 24); svc_info = (uint16_t)ConvertBitIntoBytes(&Message[32], 16); rst_info = (uint32_t)ConvertBitIntoBytes(&Message[48], 24); fprintf (stderr, "%s", KYEL); fprintf (stderr, "\n Service Information - "); fprintf (stderr, "Location ID [%06X] SVC [%04X] RST [%06X] ", location_id, svc_info, rst_info); nxdn_location_id_handler (state, location_id, 0); //run the srv info nxdn_srv_info_handler (state, svc_info); //run the rst info, if not zero if (rst_info) nxdn_rst_info_handler (state, rst_info); fprintf (stderr, "%s", KNRM); //poll for current frequency, will always be the control channel //this PDU is constantly pumped out on the CC CAC Message if (opts->p25_trunk == 1) { long int ccfreq = 0; //if using rigctl, we can poll for the current frequency if (opts->use_rigctl == 1) { ccfreq = GetCurrentFreq (opts->rigctl_sockfd); if (ccfreq != 0) state->p25_cc_freq = ccfreq; } //if using rtl input, we can ask for the current frequency tuned else if (opts->audio_in_type == 3) { ccfreq = (long int)opts->rtlsdr_center_freq; if (ccfreq != 0) state->p25_cc_freq = ccfreq; } } //clear stale active channel listing -- consider best placement for this (NXDN Type C Trunking -- inside SRV_INFO) if ( (time(NULL) - state->last_active_time) > 3 ) { memset (state->active_channel, 0, sizeof(state->active_channel)); } } void NXDN_decode_site_info(dsd_opts * opts, dsd_state * state, uint8_t * Message) { uint32_t location_id = 0; uint16_t cs_info = 0; //channel structure information uint16_t svc_info = 0; //service information uint32_t rst_info = 0; //restriction information uint32_t ca_info = 0; //channel access information uint8_t version_num = 0; uint8_t adj_alloc = 0; //number of adjacent sites uint16_t channel1 = 0; uint16_t channel2 = 0; long int freq1 = 0; long int freq2 = 0; location_id = (uint32_t)ConvertBitIntoBytes(&Message[8], 24); cs_info = (uint16_t)ConvertBitIntoBytes(&Message[32], 16); svc_info = (uint16_t)ConvertBitIntoBytes(&Message[48], 16); rst_info = (uint32_t)ConvertBitIntoBytes(&Message[64], 24); ca_info = (uint32_t)ConvertBitIntoBytes(&Message[88], 24); version_num = (uint8_t)ConvertBitIntoBytes(&Message[112], 8); adj_alloc = (uint8_t)ConvertBitIntoBytes(&Message[120], 4); channel1 = (uint16_t)ConvertBitIntoBytes(&Message[124], 10); channel2 = (uint16_t)ConvertBitIntoBytes(&Message[134], 10); //check the channel access information first nxdn_ca_info_handler (state, ca_info); fprintf (stderr, "%s", KYEL); fprintf (stderr, "\n Location ID [%06X] CSC [%04X] SVC [%04X] RST [%06X] \n CA [%06X] V[%X] ADJ [%01X] ", location_id, cs_info, svc_info, rst_info, ca_info, version_num, adj_alloc); nxdn_location_id_handler(state, location_id, 0); //run the srv info nxdn_srv_info_handler (state, svc_info); //run the rst info, if not zero if (rst_info) nxdn_rst_info_handler (state, rst_info); //only get frequencies if using channel version of message and not dfa if (state->nxdn_rcn == 0) { if (channel1 != 0) { fprintf (stderr, "\n Control Channel 1 [%03X][%04d] ", channel1, channel1 ); freq1 = nxdn_channel_to_frequency (opts, state, channel1); } if (channel2 != 0) { fprintf (stderr, "\n Control Channel 2 [%03X][%04d] ", channel2, channel2 ); freq2 = nxdn_channel_to_frequency (opts, state, channel2); } } else { ; //DFA version does not carry an OFN/IFN value, so no freqs } fprintf (stderr, "%s", KNRM); } void NXDN_decode_adj_site(dsd_opts * opts, dsd_state * state, uint8_t * Message) { //the size of this PDU can vary, but the adj_site_location_id and/or channel will be NULL or 0 if not enough space to fill it //will want to monitor this PDU for potential overflow related issues with the Message or ElementContent size //up to four adj_site_location_ids can be conveyed -- see 6.4.3.4 for more information uint32_t adj1_site = 0; uint32_t adj2_site = 0; uint32_t adj3_site = 0; uint32_t adj4_site = 0; //options -- 6.5.38. Adjacent Site Option -- 4 LSB are Site Number, 2 MSB are spares uint8_t adj1_opt = 0; uint8_t adj2_opt = 0; uint8_t adj3_opt = 0; uint8_t adj4_opt = 0; //channel or OFN uint16_t adj1_chan = 0; uint16_t adj2_chan = 0; uint16_t adj3_chan = 0; uint16_t adj4_chan = 0; //DFA only BW value uint8_t adj1_bw = 0; uint8_t adj2_bw = 0; uint8_t adj3_bw = 0; fprintf (stderr, "%s", KYEL); //Channel Version if (state->nxdn_rcn == 0) { //1 adj1_site = (uint32_t)ConvertBitIntoBytes(&Message[8], 24); adj1_opt = (uint8_t)ConvertBitIntoBytes(&Message[32], 6); adj1_chan = (uint16_t)ConvertBitIntoBytes(&Message[38], 10); //2 adj2_site = (uint32_t)ConvertBitIntoBytes(&Message[48], 24); adj2_opt = (uint8_t)ConvertBitIntoBytes(&Message[72], 6); adj2_chan = (uint16_t)ConvertBitIntoBytes(&Message[78], 10); //3 adj3_site = (uint32_t)ConvertBitIntoBytes(&Message[88], 24); adj3_opt = (uint8_t)ConvertBitIntoBytes(&Message[112], 6); adj3_chan = (uint16_t)ConvertBitIntoBytes(&Message[118], 10); //4 -- facch2 only // adj4_site = (uint32_t)ConvertBitIntoBytes(&Message[128], 24); // adj4_opt = (uint8_t)ConvertBitIntoBytes(&Message[152], 6); // adj4_chan = (uint16_t)ConvertBitIntoBytes(&Message[158], 10); if (adj1_opt & 0xF) { fprintf (stderr, "\n Adjacent Site %d ", adj1_opt & 0xF); fprintf (stderr, "Channel [%03X] [%04d]", adj1_chan, adj1_chan); nxdn_location_id_handler(state, adj1_site, 1); nxdn_channel_to_frequency (opts, state, adj1_chan); } if (adj2_opt & 0xF) { fprintf (stderr, "\n Adjacent Site %d ", adj2_opt & 0xF); fprintf (stderr, "Channel [%03X] [%04d]", adj2_chan, adj2_chan); nxdn_location_id_handler(state, adj2_site, 1); nxdn_channel_to_frequency (opts, state, adj2_chan); } if (adj3_opt & 0xF) { fprintf (stderr, "\n Adjacent Site %d ", adj3_opt & 0xF); fprintf (stderr, "Channel [%03X] [%04d]", adj3_chan, adj3_chan); nxdn_location_id_handler(state, adj3_site, 1); nxdn_channel_to_frequency (opts, state, adj3_chan); } // if (adj4_opt & 0xF) //facch2 only // { // fprintf (stderr, "\n Adjacent Site %d: ", adj4_opt & 0xF); // fprintf (stderr, "Channel [%03X] [%04d]", adj4_chan, adj4_chan); // nxdn_location_id_handler(state, adj4_site, 1); // nxdn_channel_to_frequency (opts, state, adj4_chan); // } } //DFA Version if (state->nxdn_rcn == 1) { //1 adj1_site = (uint32_t)ConvertBitIntoBytes(&Message[8], 24); adj1_opt = (uint8_t)ConvertBitIntoBytes(&Message[32], 6); adj1_bw = (uint8_t)ConvertBitIntoBytes(&Message[38], 2); adj1_chan = (uint16_t)ConvertBitIntoBytes(&Message[40], 16); //2 adj2_site = (uint32_t)ConvertBitIntoBytes(&Message[56], 24); adj2_opt = (uint8_t)ConvertBitIntoBytes(&Message[80], 6); adj2_bw = (uint8_t)ConvertBitIntoBytes(&Message[86], 2); adj2_chan = (uint16_t)ConvertBitIntoBytes(&Message[88], 16); //3 -- facch2 only // adj3_site = (uint32_t)ConvertBitIntoBytes(&Message[104], 24); // adj3_opt = (uint8_t)ConvertBitIntoBytes(&Message[128], 6); // adj3_bw = (uint8_t)ConvertBitIntoBytes(&Message[134], 2); // adj3_chan = (uint16_t)ConvertBitIntoBytes(&Message[136], 16); if (adj1_opt & 0xF) { fprintf (stderr, "\n Adjacent Site %d ", adj1_opt & 0xF); fprintf (stderr, "Channel [%04X] [%05d] ", adj1_chan, adj1_chan); if (adj1_bw == 0) fprintf (stderr, "BW: 6.25 kHz - 4800 bps"); else if (adj1_bw == 1) fprintf (stderr, "BW: 12.5 kHz - 9600 bps"); else fprintf (stderr, "BW: %d Reserved Value", adj1_bw); nxdn_location_id_handler(state, adj1_site, 1); nxdn_channel_to_frequency (opts, state, adj1_chan); } if (adj2_opt & 0xF) { fprintf (stderr, "\n Adjacent Site %d ", adj2_opt & 0xF); fprintf (stderr, "Channel [%04X] [%05d] ", adj2_chan, adj2_chan); if (adj2_bw == 0) fprintf (stderr, "BW: 6.25 kHz - 4800 bps"); else if (adj2_bw == 1) fprintf (stderr, "BW: 12.5 kHz - 9600 bps"); else fprintf (stderr, "BW: %d Reserved Value", adj2_bw); nxdn_location_id_handler(state, adj2_site, 1); nxdn_channel_to_frequency (opts, state, adj2_chan); } // if (adj3_opt & 0xF) //facch2 only // { // fprintf (stderr, "\n Adjacent Site %d: ", adj3_opt & 0xF); // fprintf (stderr, "Channel [%04X] [%05d] ", adj3_chan, adj3_chan); // if (adj3_bw == 0) fprintf (stderr, "BW: 6.25 kHz - 4800 bps"); // else if (adj3_bw == 1) fprintf (stderr, "BW: 12.5 kHz - 9600 bps"); // else fprintf (stderr, "BW: %d Reserved Value", adj3_bw); // nxdn_location_id_handler(state, adj3_site, 1); // nxdn_channel_to_frequency (opts, state, adj3_chan); // } } fprintf (stderr, "%s", KNRM); } void NXDN_decode_VCALL(dsd_opts * opts, dsd_state * state, uint8_t * Message) { uint8_t CCOption = 0; uint8_t CallType = 0; uint8_t VoiceCallOption = 0; uint16_t SourceUnitID = 0; uint16_t DestinationID = 0; uint8_t CipherType = 0; uint8_t KeyID = 0; uint8_t DuplexMode[32] = {0}; uint8_t TransmissionMode[32] = {0}; unsigned long long int FullMessage = 0; uint8_t MessageType; /* Get the "Message Type" field */ MessageType = (Message[2] & 1) << 5; MessageType |= (Message[3] & 1) << 4; MessageType |= (Message[4] & 1) << 3; MessageType |= (Message[5] & 1) << 2; MessageType |= (Message[6] & 1) << 1; MessageType |= (Message[7] & 1) << 0; if (MessageType == 0x1) fprintf (stderr, "%s", KGRN); //VCALL else if (MessageType == 0x07) fprintf (stderr, "%s", KYEL); //TX_REL_EXT else if (MessageType == 0x08) fprintf (stderr, "%s", KYEL); //TX_REL else if (MessageType == 0x11) fprintf (stderr, "%s", KRED); //DISC /* Decode "CC Option" */ CCOption = (uint8_t)ConvertBitIntoBytes(&Message[8], 8); state->NxdnElementsContent.CCOption = CCOption; /* Decode "Call Type" */ CallType = (uint8_t)ConvertBitIntoBytes(&Message[16], 3); state->NxdnElementsContent.CallType = CallType; /* Decode "Voice Call Option" */ VoiceCallOption = (uint8_t)ConvertBitIntoBytes(&Message[19], 5); state->NxdnElementsContent.VoiceCallOption = VoiceCallOption; /* Decode "Source Unit ID" */ SourceUnitID = (uint16_t)ConvertBitIntoBytes(&Message[24], 16); state->NxdnElementsContent.SourceUnitID = SourceUnitID; /* Decode "Destination ID" */ DestinationID = (uint16_t)ConvertBitIntoBytes(&Message[40], 16); state->NxdnElementsContent.DestinationID = DestinationID; //On Type-D systems, need to truncate to an 11-bit value //other 5-bits are repeater or prefix value uint8_t idas = 0; uint8_t rep1 = 0; uint8_t rep2 = 0; if (strcmp (state->nxdn_location_category, "Type-D") == 0) idas = 1; if (idas) { rep1 = (SourceUnitID >> 11) & 0x1F; rep2 = (DestinationID >> 11) & 0x1F; SourceUnitID = SourceUnitID & 0x7FF; DestinationID = DestinationID & 0x7FF; } /* Decode the "Cipher Type" */ CipherType = (uint8_t)ConvertBitIntoBytes(&Message[56], 2); state->NxdnElementsContent.CipherType = CipherType; /* Decode the "Key ID" */ KeyID = (uint8_t)ConvertBitIntoBytes(&Message[58], 6); state->NxdnElementsContent.KeyID = KeyID; fprintf (stderr, "\n "); /* Print the "CC Option" */ if(CCOption & 0x80) fprintf(stderr, "Emergency "); if(CCOption & 0x40) fprintf(stderr, "Visitor "); if(CCOption & 0x20) fprintf(stderr, "Priority Paging "); if((CipherType == 2) || (CipherType == 3)) { state->NxdnElementsContent.PartOfCurrentEncryptedFrame = 1; state->NxdnElementsContent.PartOfNextEncryptedFrame = 2; } else { state->NxdnElementsContent.PartOfCurrentEncryptedFrame = 1; state->NxdnElementsContent.PartOfNextEncryptedFrame = 1; } /* Print the "Call Type" */ fprintf (stderr, "%s - ", NXDN_Call_Type_To_Str(CallType)); sprintf (state->nxdn_call_type, "%s", NXDN_Call_Type_To_Str(CallType)); /* Print the "Voice Call Option" */ if (MessageType == 0x1) NXDN_Voice_Call_Option_To_Str(VoiceCallOption, DuplexMode, TransmissionMode); if (MessageType == 0x1) fprintf(stderr, "%s %s - ", DuplexMode, TransmissionMode); else if (MessageType == 0x07) fprintf (stderr, "Transmission Release Ex - "); //TX_REL_EX else if (MessageType == 0x08) fprintf (stderr, " Transmission Release - "); //TX_REL else if (MessageType == 0x11) fprintf (stderr, " Disconnect - "); //DISC /* Print Source ID and Destination ID (Talk Group or Unit ID) */ fprintf(stderr, "Src=%u - Dst/TG=%u ", SourceUnitID & 0xFFFF, DestinationID & 0xFFFF); //Channel here appears to be the prefix or home channel of the caller, not necessarily the channel the call is occuring on if (idas) fprintf (stderr, "- Prefix Ch: %d ", rep1); fprintf (stderr, "%s", KNRM); //check the rkey array for a scrambler key value //check by keyid first, then by tgt id //TGT ID and Key ID could clash though if csv or system has both with different keys if (state->rkey_array[KeyID] != 0) state->R = state->rkey_array[KeyID]; else if (state->rkey_array[DestinationID] != 0) state->R = state->rkey_array[DestinationID]; // #ifdef LIMAZULUTWEAKS // //LimaZulu specific tweak, load keys from frequency value, if avalable -- untested // long int freq = 0; // uint8_t hash_bits[24]; // memset (hash_bits, 0, sizeof(hash_bits)); // uint16_t limazulu = 0; // //if not available, then poll rigctl if its available // if (opts->use_rigctl == 1) // freq = GetCurrentFreq (opts->rigctl_sockfd); // //if using rtl input, we can ask for the current frequency tuned // else if (opts->audio_in_type == 3) // freq = (long int)opts->rtlsdr_center_freq; // //freq = 167831250; //hardset for testing // //since a frequency value will be larger than the 16-bit max, we need to hash it first // //the hash has to be run the same way as the import, so at a 24-bit depth, which hopefully // //will not lead to any duplicate key loads due to multiple CRC16 collisions on a larger value? // for (int i = 0; i < 24; i++) // hash_bits[i] = ((freq << i) & 0x800000) >> 23; //load into array for CRC16 // if (freq) limazulu = ComputeCrcCCITT16d (hash_bits, 24); // limazulu = limazulu & 0xFFFF; //make sure no larger than 16-bits // fprintf (stderr, "%s", KCYN); // if (freq) fprintf (stderr, "\n Freq: %ld - Freq Hash: %d", freq, limazulu); // if (state->rkey_array[limazulu] != 0) fprintf (stderr, " - Key Loaded: %lld", state->rkey_array[limazulu]); // fprintf (stderr, "%s", KNRM); // if (state->rkey_array[limazulu] != 0) // state->R = state->rkey_array[limazulu]; // #endif //end LIMAZULUTWEAKS //Don't zero key if no keyloader if (CipherType != 0x1 && state->keyloader == 1) state->R = 0; //NOTE: Broadcast Call appears to have values that aren't typical for VCALL, //so not applying any settings below if CallType == 0 (BC Call) //NOTE: Above note may be in error; its possible that the issues I was having //was from not resetting the entire SACCH superframe after reading it, and //the samples in question having interwoven ALIAS and VCALL, and bad settings //coming from a missed SF Part of Frame, if not reset, we could skip a SF POF //and still believe we have a good decode -- will need further testing #118 /* Print the "Cipher Type" */ if(CipherType != 0 && MessageType == 0x1) { fprintf (stderr, "\n %s", KYEL); fprintf(stderr, "%s - ", NXDN_Cipher_Type_To_Str(CipherType)); } /* Print the Key ID */ if(CipherType != 0 && MessageType == 0x1) { fprintf(stderr, "Key ID %u - ", KeyID & 0xFF); fprintf (stderr, "%s", KNRM); } if (CipherType == 0x01 && state->R > 0) //scrambler key value { fprintf (stderr, "%s", KYEL); fprintf(stderr, "Value: %05lld", state->R); fprintf (stderr, "%s", KNRM); } //only grab if VCALL if(MessageType == 0x1) { state->nxdn_last_rid = SourceUnitID; state->nxdn_last_tg = DestinationID; state->nxdn_key = KeyID; state->nxdn_cipher_type = CipherType; } //set enc bit here so we can tell playSynthesizedVoice whether or not to play enc traffic if (state->nxdn_cipher_type != 0) { state->dmr_encL = 1; } if (state->nxdn_cipher_type == 0 || state->R != 0) { state->dmr_encL = 0; } } /* End NXDN_decode_VCALL() */ void NXDN_decode_VCALL_IV(dsd_opts * opts, dsd_state * state, uint8_t * Message) { uint32_t i; state->payload_miN = 0; //zero out unsigned long long int IV = 0; //NOTE: On Type-D systems, the FACCH1 version of message only carries a 4-octet payload and also only carries a 22-bit IV //which makes no sense since you still have the full 80-bits of FACCH1 to use uint8_t idas = 0; if (strcmp (state->nxdn_location_category, "Type-D") == 0) idas = 1; if (!idas) IV = (unsigned long long int)ConvertBitIntoBytes(&Message[8], 64); else IV = (unsigned long long int)ConvertBitIntoBytes(&Message[8], 22); //At this point, I would assume an LFSR function is needed to expand the 22-bit IV collected here into a 64-bit IV, or 128-bit IV state->payload_miN = IV; state->NxdnElementsContent.PartOfCurrentEncryptedFrame = 2; state->NxdnElementsContent.PartOfNextEncryptedFrame = 1; fprintf (stderr, "\n VCALL_IV: %016llX", state->payload_miN); } /* End NXDN_decode_VCALL_IV() */ //SCCH messages have a unique format that can be used in a super frame, but each 'unit' //can also (mostly) be decoded seperately, except an enc IV void NXDN_decode_scch(dsd_opts * opts, dsd_state * state, uint8_t * Message, uint8_t direction) { uint8_t sf = (uint8_t)ConvertBitIntoBytes(&Message[0], 2); uint8_t opcode = (direction << 2 | sf); fprintf (stderr, "\n " ); //initial line break if (opts->payload == 1) { if (direction == 0) fprintf (stderr, "ISM "); else fprintf (stderr, "OSM "); if (sf == 0) fprintf (stderr, "INFO4 "); else if (sf == 1) fprintf (stderr, "INFO3 "); else if (sf == 2) fprintf (stderr, "INFO2 "); else fprintf (stderr, "INFO1 "); fprintf (stderr, "- "); fprintf (stderr, "%02X ",opcode); } //elements used will be determined by other elements in the ISM/OSM messages //OSM 4 elements uint8_t area = Message[2]; uint8_t rep1 = (uint8_t)ConvertBitIntoBytes(&Message[3], 5); //repeater 1 value uint8_t rep2 = (uint8_t)ConvertBitIntoBytes(&Message[8], 5); //repeater 2 value uint16_t id = (uint16_t)ConvertBitIntoBytes(&Message[13], 11); //id is context dependent uint8_t sitet = (uint8_t)ConvertBitIntoBytes(&Message[3], 5); //site type on id=2041 only uint8_t gu = Message[24]; //group or unit bit //OSM 2 and 3 elements -- unique only unsigned long long int iv_a = (uint64_t)ConvertBitIntoBytes(&Message[13], 12); //initialization vector (0-11) //OSM 1 elements -- unique only -- DOUBLE CHECK ALL OF THESE! unsigned long long int iv_b = (uint64_t)ConvertBitIntoBytes(&Message[18], 6); //initialization vector (b12-17) unsigned long long int iv_c = (uint64_t)ConvertBitIntoBytes(&Message[8], 5); //initialization vector (b18-22) uint8_t iv_type = Message[24]; //0 or 1 tells us whether or not this is for IV, or for cipher/key uint8_t call_opt = (uint8_t)ConvertBitIntoBytes(&Message[13], 3); //Call Options uint8_t key_id = (uint8_t)ConvertBitIntoBytes(&Message[18], 6); //Key ID uint8_t cipher = (uint8_t)ConvertBitIntoBytes(&Message[16], 2); //Cipher Type uint8_t DuplexMode[32] = {0}; uint8_t TransmissionMode[32] = {0}; //ISM messages are seemingly exactly the same info as OSM, so just going to use OSM versions //(manual doesn't specify other than that ISM 4 is the same as ISM2, but probably doesn't have IDLE/HALT/SITE ID messages) //set category to "Type-D" to alert users this is an a Distributed Trunking System sprintf (state->nxdn_location_category, "Type-D"); //placeholder numbers, using 99 if these aren't set by the Site ID Message (single sites) // if (state->nxdn_location_site_code == 0) state->nxdn_location_site_code = 99; // if (state->nxdn_location_sys_code == 0) state->nxdn_location_sys_code = 99; // if (state->nxdn_last_ran == -1) state->nxdn_last_ran = 99; state->nxdn_last_ran = area; state->last_cc_sync_time = time(NULL); //OSM messages if (opcode == 0x4 || opcode == 0x0) //INFO 4 { //clear stale active channel listing -- consider best placement for this (NXDN Type D Trunking -- inside a particular OSM Message?) //may not be entirely necessary here in this context if ( (time(NULL) - state->last_active_time) > 3 ) { memset (state->active_channel, 0, sizeof(state->active_channel)); } if (id == 2046) { fprintf (stderr, "Idle Repeater Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Repeater 1: %d; ", rep1); fprintf (stderr, "Repeater 2: %d; ", rep2); sprintf (state->active_channel[rep1], "%s", ""); sprintf (state->active_channel[rep2], "%s", ""); } else if (id == 2045) { fprintf (stderr, "Halt Repeater Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Repeater 1: %d; ", rep1); fprintf (stderr, "Repeater 2: %d; ", rep2); } else if (id == 2044) { fprintf (stderr, "Free Repeater Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Free Repeater 1: %d; ", rep1); fprintf (stderr, "Free Repeater 2: %d; ", rep2); } else if (id == 2041) { fprintf (stderr, "Site ID Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Site Type: %d ", sitet); //Roaming Algorithm by SU; See below; if (sitet == 0) fprintf (stderr, "Reserved; "); else if (sitet == 1) fprintf (stderr, "Wide; "); else if (sitet == 2) fprintf (stderr, "Middle; "); else fprintf (stderr, "Narrow; "); fprintf (stderr, "Site Code: %d ", rep2); if (rep2 == 0) fprintf (stderr, "Reserved; "); else if (rep2 < 251) fprintf (stderr, "Open Access; "); //Usable voluntary every TRS...? else fprintf (stderr, "Reserved; "); state->nxdn_location_site_code = sitet; state->nxdn_location_sys_code = sitet; state->nxdn_last_ran = sitet; } else //Busy Repeater Message is essentially our 'call in progess' message for a repeater { if (gu && rep1 == 0) fprintf (stderr, "REG_COMM; "); else fprintf (stderr, "Busy Repeater Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Go to Repeater: %d; ", rep1); fprintf (stderr, "Home Repeater: %d; ", rep2); if (rep1 == 31) { fprintf (stderr, "\n%s ", KRED); state->nxdn_last_tg = 0; state->nxdn_last_rid = 0; } else { fprintf (stderr, "\n%s ", KGRN); //only set this is during a voice tx, and not a data tx if ( time(NULL) - state->last_vc_sync_time < 1 ) state->nxdn_last_tg = id; } fprintf (stderr, " Channel Update - CH: %d - TGT: %d ", rep1, id); if (gu == 0) fprintf (stderr, "Group Call "); else fprintf (stderr, "Private Call "); if (rep1 == 31) fprintf (stderr, "Termination "); //add current active to display string -- may need tweaking on if to use rep1 (active ch), or rep2 (home prefix) if (rep1 != 0 && rep1 != 31) { if (gu == 0) sprintf (state->active_channel[rep1], "Active Group Ch: %d TG: %d-%d; ", rep1, rep2, id); //Group TG else sprintf (state->active_channel[rep1], "Active Private Ch: %d TGT: %d-%d; ", rep1, rep2, id); //Private TGT state->last_active_time = time(NULL); } //start tuning section here uint8_t tune = 0; //use this to check to see if okay to tune //only tune group calls if user set if (gu == 0 && opts->trunk_tune_group_calls == 1) tune = 1; //only tune private calls if user set if (gu == 1 && opts->trunk_tune_private_calls == 1) tune = 1; //tune back to 'channel 31' on termination, will be user provided 'default' listening channel if (rep1 == 31) tune = 1; //begin tuning if (tune == 1 && rep1 != 0) { //check for control channel frequency in the channel map if not available if (state->trunk_chan_map[31] != 0) state->p25_cc_freq = state->trunk_chan_map[31]; //user provided channel to go to for '31' -- may change to 0 later? else if (state->trunk_chan_map[rep2] != 0) state->p25_cc_freq = state->trunk_chan_map[rep2]; //rep2 is home repeater under this message //run group/tgt analysis and tune if available/desired //group list mode so we can look and see if we need to block tuning any groups, etc char mode[8]; //allow, block, digital, enc, etc //if we are using allow/whitelist mode, then write 'B' to mode for block //comparison below will look for an 'A' to write to mode if it is allowed if (opts->trunk_use_allow_list == 1) sprintf (mode, "%s", "B"); for (int i = 0; i < state->group_tally; i++) { if (state->group_array[i].groupNumber == id) //tg/tgt only on info4 unit { fprintf (stderr, " [%s]", state->group_array[i].groupName); strcpy (mode, state->group_array[i].groupMode); } } long int freq = 0; freq = nxdn_channel_to_frequency(opts, state, rep1); //check to see if the source/target candidate is blocked first if (opts->p25_trunk == 1 && (strcmp(mode, "DE") != 0) && (strcmp(mode, "B") != 0)) //DE is digital encrypted, B is block { //will need to monitor, 1 second may be too long on idas, may need to try 0 or manipulate another way if (state->p25_cc_freq != 0 && ((time(NULL) - state->last_vc_sync_time) > 1) && freq != 0) { //rigctl if (opts->use_rigctl == 1) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); state->lastsynctype = -1; state->last_cc_sync_time = time(NULL); state->last_vc_sync_time = time(NULL); //should we use this here, or not? // if (opts->setmod_bw != 0 ) SetModulation(opts->rigctl_sockfd, opts->setmod_bw); SetFreq(opts->rigctl_sockfd, freq); state->p25_vc_freq[0] = state->p25_vc_freq[1] = freq; opts->p25_is_tuned = 1; //check the rkey array for a scrambler key value //TGT ID and Key ID could clash though if csv or system has both with different keys if (state->rkey_array[id] != 0) state->R = state->rkey_array[id]; if (state->M == 1) state->nxdn_cipher_type = 0x1; } //rtl else if (opts->audio_in_type == 3) { //extra safeguards due to sync issues with NXDN memset (state->nxdn_sacch_frame_segment, 1, sizeof(state->nxdn_sacch_frame_segment)); memset (state->nxdn_sacch_frame_segcrc, 1, sizeof(state->nxdn_sacch_frame_segcrc)); state->lastsynctype = -1; state->last_cc_sync_time = time(NULL); state->last_vc_sync_time = time(NULL); //should we use this here, or not? // rtl_dev_tune (opts, freq); state->p25_vc_freq[0] = state->p25_vc_freq[1] = freq; opts->p25_is_tuned = 1; //check the rkey array for a scrambler key value //TGT ID and Key ID could clash though if csv or system has both with different keys if (state->rkey_array[id] != 0) state->R = state->rkey_array[id]; if (state->M == 1) state->nxdn_cipher_type = 0x1; } } } } //end tuning -- NOTE: since we are only going by last time voice sync detected, tuning here is always 'unlocked' } //end 'busy' repeater } if (opcode == 0x5 || opcode == 0x1) //INFO 3 { fprintf (stderr, "Source Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Free Repeater 1: %d; ", rep1); if (id == 31) { fprintf (stderr, "\n%s ", KYEL); fprintf (stderr, " Call IV A: %04llX", iv_a); } else { //rep2 is the home repeater/source prefix in this instance fprintf (stderr, "\n%s ", KGRN); fprintf (stderr, " Source Update - Prefix CH: %d SRC: %d - (%d-%d) ", rep2, id, rep2, id); //rep2 //only set this is during a voice tx, and not a data tx if ( time(NULL) - state->last_vc_sync_time < 1 ) state->nxdn_last_rid = id; } } if (opcode == 0x6 || opcode == 0x2) //OSM INFO 2 -- same as 4 { fprintf (stderr, "Target Message - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Go to Repeater: %d; ", rep1); if (id == 31) { fprintf (stderr, "\n%s ", KYEL); fprintf (stderr, " Call IV A: %04llX; ", iv_a); //MSB 0-11 //zero out IV storage and append this chunk to MSB position state->payload_miN = 0; state->payload_miN = state->payload_miN | (iv_a << 11); //MSB 11, so shift 11 (22 total bits). } else { //rep2 is the home repeater/source prefix in this instance fprintf (stderr, "\n%s ", KGRN); fprintf (stderr, " Target Update - Prefix CH: %d SRC: %d - (%d-%d) ", rep2, id, rep2, id); //rep2 //only set this is during a voice tx, and not a data tx if ( time(NULL) - state->last_vc_sync_time < 1 ) state->nxdn_last_tg = id; } } if (opcode == 0x7 || opcode == 0x3) //INFO 1 - Call Option/Encryption Parms { fprintf (stderr, "Call Option - "); fprintf (stderr, "Area: %d; ", area); fprintf (stderr, "Free Repeater 1: %d; ", rep1); if (iv_type == 0) { fprintf (stderr, "Free Repeater 2: %d; ", rep2); //or Pass Character (31) on ISM fprintf (stderr, "\n%s ", KYEL); NXDN_Voice_Call_Option_To_Str(call_opt, DuplexMode, TransmissionMode); fprintf(stderr, " %s %s ", DuplexMode, TransmissionMode); if (cipher) { fprintf(stderr, "- %s - ", NXDN_Cipher_Type_To_Str(cipher)); fprintf (stderr, "Key ID: %d; ", key_id); state->nxdn_cipher_type = cipher; state->nxdn_key = key_id; } } else { fprintf (stderr, "\n%s ", KYEL); fprintf (stderr, "Call IV B: %04llX; ", iv_b); fprintf (stderr, "Call IV C: %04llX; ", iv_c); //Append to Call IV storage state->payload_miN = state->payload_miN | (iv_c << 6); //middle 5 bits..shifts 6 to accomodate last 6 bits below state->payload_miN = state->payload_miN | (iv_b << 0); //last 6 bits...no shift needed //At this point, I would assume an LFSR function is needed to expand the 22-bit IV collected here into a 64-bit IV, or 128-bit IV fprintf (stderr, "Completed IV: %016llX", state->payload_miN); } } } char * NXDN_Call_Type_To_Str(uint8_t CallType) { char * Ptr = NULL; switch(CallType) { case 0: Ptr = "Broadcast Call"; break; case 1: Ptr = "Group Call"; break; case 2: Ptr = "Transmission Release"; break; //"Unspecified Call" This value is used only on TX_REL message. case 3: Ptr = "Session Call"; break; //"reserved" is session call on Type D case 4: Ptr = "Private Call"; break; case 5: Ptr = "Reserved"; break; case 6: Ptr = "PSTN Interconnect Call"; break; case 7: Ptr = "PSTN Speed Dial Call"; break; default: Ptr = "Unknown Call Type"; break; } return Ptr; } /* End NXDN_Call_Type_To_Str() */ void NXDN_Voice_Call_Option_To_Str(uint8_t VoiceCallOption, uint8_t * Duplex, uint8_t * TransmissionMode) { char * Ptr = NULL; Duplex[0] = 0; TransmissionMode[0] = 0; if(VoiceCallOption & 0x10) strcpy((char *)Duplex, "Duplex"); else strcpy((char *)Duplex, "Half Duplex"); switch(VoiceCallOption & 0x17) { case 0: Ptr = "4800bps/EHR"; break; case 2: Ptr = "9600bps/EHR"; break; case 3: Ptr = "9600bps/EFR"; break; default: Ptr = "Reserved Voice Call Option"; break; } strcpy((char *)TransmissionMode, Ptr); } /* End NXDN_Voice_Call_Option_To_Str() */ char * NXDN_Cipher_Type_To_Str(uint8_t CipherType) { char * Ptr = NULL; switch(CipherType) { case 0: Ptr = ""; break; /* Non-ciphered mode / clear call */ case 1: Ptr = "Scrambler"; break; case 2: Ptr = "DES"; break; case 3: Ptr = "AES"; break; default: Ptr = "Unknown Cipher Type"; break; } return Ptr; } /* End NXDN_Cipher_Type_To_Str() */