@@ -379,7 +379,7 @@ static void debug_print (fromto_t fromto, int client, struct agwpe_s *pmsg, int
379
379
case 'C' : strlcpy (datakind , "AX.25 Connection Received" , sizeof (datakind )); break ;
380
380
case 'D' : strlcpy (datakind , "Connected AX.25 Data" , sizeof (datakind )); break ;
381
381
case 'd' : strlcpy (datakind , "Disconnected" , sizeof (datakind )); break ;
382
- case 'M ' : strlcpy (datakind , "Monitored Connected Information" , sizeof (datakind )); break ;
382
+ case 'I ' : strlcpy (datakind , "Monitored Connected Information" , sizeof (datakind )); break ;
383
383
case 'S' : strlcpy (datakind , "Monitored Supervisory Information" , sizeof (datakind )); break ;
384
384
case 'U' : strlcpy (datakind , "Monitored Unproto Information" , sizeof (datakind )); break ;
385
385
case 'T' : strlcpy (datakind , "Monitoring Own Information" , sizeof (datakind )); break ;
@@ -1717,6 +1717,7 @@ static THREAD_F cmd_listen_thread (void *arg)
1717
1717
1718
1718
packet_t pp ;
1719
1719
1720
+ int pid = cmd .hdr .pid ;
1720
1721
strlcpy (stemp , cmd .hdr .call_from , sizeof (stemp ));
1721
1722
strlcat (stemp , ">" , sizeof (stemp ));
1722
1723
strlcat (stemp , cmd .hdr .call_to , sizeof (stemp ));
@@ -1730,33 +1731,41 @@ static THREAD_F cmd_listen_thread (void *arg)
1730
1731
strlcat (stemp , p , sizeof (stemp ));
1731
1732
p += 10 ;
1732
1733
}
1734
+ // At this point, p now points to info part after digipeaters.
1735
+
1736
+ // Issue 527: NET/ROM routing broadcasts are binary info so we can't treat as string.
1737
+ // Originally, I just appended the information part.
1738
+ // That was fine until NET/ROM, with binary data, came along.
1739
+ // Now we set the information field after creating the packet object.
1740
+
1733
1741
strlcat (stemp , ":" , sizeof (stemp ));
1734
- strlcat (stemp , p , sizeof (stemp ));
1742
+ strlcat (stemp , " " , sizeof (stemp ));
1735
1743
1736
1744
//text_color_set(DW_COLOR_DEBUG);
1737
1745
//dw_printf ("Transmit '%s'\n", stemp);
1738
1746
1739
1747
pp = ax25_from_text (stemp , 1 );
1740
1748
1741
-
1742
1749
if (pp == NULL ) {
1743
1750
text_color_set (DW_COLOR_ERROR );
1744
1751
dw_printf ("Failed to create frame from AGW 'V' message.\n" );
1752
+ break ;
1745
1753
}
1746
- else {
1747
1754
1748
- /* This goes into the low priority queue because it is an original. */
1755
+ ax25_set_info (pp , (unsigned char * )p , data_len - ndigi * 10 );
1756
+ // Issue 527: NET/ROM routing broadcasts use PID 0xCF which was not preserved here.
1757
+ ax25_set_pid (pp , pid );
1749
1758
1750
- /* Note that the protocol has no way to set the "has been used" */
1751
- /* bits in the digipeater fields. */
1759
+ /* This goes into the low priority queue because it is an original. */
1752
1760
1753
- /* This explains why the digipeating option is grayed out in */
1754
- /* xastir when using the AGW interface. */
1755
- /* The current version uses only the 'V' message, not 'K' for transmitting. */
1761
+ /* Note that the protocol has no way to set the "has been used" */
1762
+ /* bits in the digipeater fields. */
1756
1763
1757
- tq_append (cmd .hdr .portx , TQ_PRIO_1_LO , pp );
1764
+ /* This explains why the digipeating option is grayed out in */
1765
+ /* xastir when using the AGW interface. */
1766
+ /* The current version uses only the 'V' message, not 'K' for transmitting. */
1758
1767
1759
- }
1768
+ tq_append ( cmd . hdr . portx , TQ_PRIO_1_LO , pp );
1760
1769
}
1761
1770
1762
1771
break ;
@@ -1890,15 +1899,14 @@ static THREAD_F cmd_listen_thread (void *arg)
1890
1899
unsigned char num_digi ; /* Expect to be in range 1 to 7. Why not up to 8? */
1891
1900
char dcall [7 ][10 ];
1892
1901
}
1893
- #if 1
1902
+
1894
1903
// October 2017. gcc ??? complained:
1895
1904
// warning: dereferencing pointer 'v' does break strict-aliasing rules
1896
1905
// Try adding this attribute to get rid of the warning.
1897
1906
// If this upsets your compiler, take it out.
1898
1907
// Let me know. Maybe we could put in a compiler version check here.
1899
1908
1900
1909
__attribute__((__may_alias__ ))
1901
- #endif
1902
1910
* v = (struct via_info * )cmd .data ;
1903
1911
1904
1912
char callsigns [AX25_MAX_ADDRS ][AX25_MAX_ADDR_LEN ];
@@ -2007,41 +2015,37 @@ static THREAD_F cmd_listen_thread (void *arg)
2007
2015
{
2008
2016
2009
2017
int pid = cmd .hdr .pid ;
2010
- (void )(pid );
2011
- /* The AGW protocol spec says, */
2012
- /* "AX.25 PID 0x00 or 0xF0 for AX.25 0xCF NETROM and others" */
2013
-
2014
- /* BUG: In theory, the AX.25 PID octet should be set from this. */
2015
- /* All examples seen (above) have 0. */
2016
- /* The AX.25 protocol spec doesn't list 0 as a valid value. */
2017
- /* We always send 0xf0, meaning no layer 3. */
2018
- /* Maybe we should have an ax25_set_pid function for cases when */
2019
- /* it is neither 0 nor 0xf0. */
2020
-
2021
2018
char stemp [AX25_MAX_PACKET_LEN ];
2022
- packet_t pp ;
2023
2019
2024
2020
strlcpy (stemp , cmd .hdr .call_from , sizeof (stemp ));
2025
2021
strlcat (stemp , ">" , sizeof (stemp ));
2026
2022
strlcat (stemp , cmd .hdr .call_to , sizeof (stemp ));
2027
2023
2028
2024
cmd .data [data_len ] = '\0' ;
2029
2025
2026
+ // Issue 527: NET/ROM routing broadcasts are binary info so we can't treat as string.
2027
+ // Originally, I just appended the information part as a text string.
2028
+ // That was fine until NET/ROM, with binary data, came along.
2029
+ // Now we set the information field after creating the packet object.
2030
+
2030
2031
strlcat (stemp , ":" , sizeof (stemp ));
2031
- strlcat (stemp , cmd . data , sizeof (stemp ));
2032
+ strlcat (stemp , " " , sizeof (stemp ));
2032
2033
2033
2034
//text_color_set(DW_COLOR_DEBUG);
2034
2035
//dw_printf ("Transmit '%s'\n", stemp);
2035
2036
2036
- pp = ax25_from_text (stemp , 1 );
2037
+ packet_t pp = ax25_from_text (stemp , 1 );
2037
2038
2038
2039
if (pp == NULL ) {
2039
2040
text_color_set (DW_COLOR_ERROR );
2040
2041
dw_printf ("Failed to create frame from AGW 'M' message.\n" );
2041
2042
}
2042
- else {
2043
- tq_append (cmd .hdr .portx , TQ_PRIO_1_LO , pp );
2044
- }
2043
+
2044
+ ax25_set_info (pp , (unsigned char * )cmd .data , data_len );
2045
+ // Issue 527: NET/ROM routing broadcasts use PID 0xCF which was not preserved here.
2046
+ ax25_set_pid (pp , pid );
2047
+
2048
+ tq_append (cmd .hdr .portx , TQ_PRIO_1_LO , pp );
2045
2049
}
2046
2050
break ;
2047
2051
0 commit comments