Skip to content

Commit eef35cf

Browse files
committed
Issue 367 - AGW monitoring must handle binary data.
1 parent 45cd680 commit eef35cf

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/server.c

+12-6
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,7 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
868868
*/
869869
struct {
870870
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.
872872
} agwpe_msg;
873873

874874
int err;
@@ -906,7 +906,7 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
906906

907907
// Add the description with <... >
908908

909-
char desc[80];
909+
char desc[120];
910910
agwpe_msg.hdr.datakind = mon_desc (pp, desc, sizeof(desc));
911911
if (own_xmit) {
912912
agwpe_msg.hdr.datakind = 'T';
@@ -921,16 +921,22 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
921921
snprintf (ts, sizeof(ts), "[%02d:%02d:%02d]\r", tm->tm_hour, tm->tm_min, tm->tm_sec);
922922
strlcat ((char*)(agwpe_msg.data), ts, sizeof(agwpe_msg.data));
923923

924-
// Information if any with \r\r.
924+
// Information if any with \r.
925925

926926
unsigned char *pinfo = NULL;
927927
int info_len = ax25_get_info (pp, &pinfo);
928+
int msg_data_len = strlen((char*)(agwpe_msg.data)); // result length so far
929+
928930
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';
931936
}
932937

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);
934940

935941
if (debug_client) {
936942
debug_print (TO_CLIENT, client, &agwpe_msg.hdr, sizeof(agwpe_msg.hdr) + netle2host(agwpe_msg.hdr.data_len_NETLE));

0 commit comments

Comments
 (0)