@@ -868,7 +868,7 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
868
868
*/
869
869
struct {
870
870
struct agwpe_s hdr ;
871
- char data [1 + AX25_MAX_PACKET_LEN ];
871
+ char data [128 + AX25_MAX_PACKET_LEN ]; // Add plenty of room for header prefix.
872
872
} agwpe_msg ;
873
873
874
874
int err ;
@@ -906,7 +906,7 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
906
906
907
907
// Add the description with <... >
908
908
909
- char desc [80 ];
909
+ char desc [120 ];
910
910
agwpe_msg .hdr .datakind = mon_desc (pp , desc , sizeof (desc ));
911
911
if (own_xmit ) {
912
912
agwpe_msg .hdr .datakind = 'T' ;
@@ -921,16 +921,22 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
921
921
snprintf (ts , sizeof (ts ), "[%02d:%02d:%02d]\r" , tm -> tm_hour , tm -> tm_min , tm -> tm_sec );
922
922
strlcat ((char * )(agwpe_msg .data ), ts , sizeof (agwpe_msg .data ));
923
923
924
- // Information if any with \r\r .
924
+ // Information if any with \r.
925
925
926
926
unsigned char * pinfo = NULL ;
927
927
int info_len = ax25_get_info (pp , & pinfo );
928
+ int msg_data_len = strlen ((char * )(agwpe_msg .data )); // result length so far
929
+
928
930
if (info_len > 0 && pinfo != NULL ) {
929
- strlcat ((char * )(agwpe_msg .data ), (char * )pinfo , sizeof (agwpe_msg .data ));
930
- strlcat ((char * )(agwpe_msg .data ), "\r" , sizeof (agwpe_msg .data ));
931
+ // Issue 367: Use of strlcat truncated information part at any nul character.
932
+ // Use memcpy instead to preserve binary data, e.g. NET/ROM.
933
+ memcpy (agwpe_msg .data + msg_data_len , pinfo , info_len );
934
+ msg_data_len += info_len ;
935
+ agwpe_msg .data [msg_data_len ++ ] = '\r' ;
931
936
}
932
937
933
- agwpe_msg .hdr .data_len_NETLE = host2netle (strlen (agwpe_msg .data ) + 1 ) /* +1 to include terminating null */ ;
938
+ agwpe_msg .data [msg_data_len ++ ] = '\0' ; // add nul at end, included in length.
939
+ agwpe_msg .hdr .data_len_NETLE = host2netle (msg_data_len );
934
940
935
941
if (debug_client ) {
936
942
debug_print (TO_CLIENT , client , & agwpe_msg .hdr , sizeof (agwpe_msg .hdr ) + netle2host (agwpe_msg .hdr .data_len_NETLE ));
0 commit comments