aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/rtcp.c
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2024-05-06 10:19:46 +0200
committerGitHub <noreply@github.com>2024-05-06 10:19:46 +0200
commit266af0275241b96346372bbae936cd3dd1a35159 (patch)
treecbadf21cb1852ff65b1c87404c0fb0ba6d8f86e6 /src/lib/protocols/rtcp.c
parenta1845da3594c080bc59318ea9b465e15f0c5012c (diff)
Merge RTP and RTCP logic (#2416)
Avoid code duplication between these two protocols. We remove support for RTCP over TCP; it is quite rare to find this kind of traffic and, more important, we have never had support for RTP over TCP: we should try to add both detecion as follow-up. Fix a message log in the LINE code
Diffstat (limited to 'src/lib/protocols/rtcp.c')
-rw-r--r--src/lib/protocols/rtcp.c85
1 files changed, 0 insertions, 85 deletions
diff --git a/src/lib/protocols/rtcp.c b/src/lib/protocols/rtcp.c
deleted file mode 100644
index 25910a602..000000000
--- a/src/lib/protocols/rtcp.c
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * rtcp.c (RTP Control Protocol)
- *
- * Copyright (C) 2013 Remy Mudingay <mudingay@ill.fr>
- *
- */
-#include "ndpi_protocol_ids.h"
-
-#define NDPI_CURRENT_PROTO NDPI_PROTOCOL_RTCP
-
-#include "ndpi_api.h"
-#include "ndpi_private.h"
-
-static void ndpi_int_rtcp_add_connection(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow)
-{
- ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_RTCP,
- NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
-}
-
-static void ndpi_search_rtcp(struct ndpi_detection_module_struct *ndpi_struct,
- struct ndpi_flow_struct *flow)
-{
- struct ndpi_packet_struct *packet = &ndpi_struct->packet;
- u_int16_t dport = 0, sport = 0;
-
- NDPI_LOG_DBG(ndpi_struct, "search RTCP\n");
-
- if(packet->tcp != NULL) {
- sport = ntohs(packet->tcp->source), dport = ntohs(packet->tcp->dest);
- NDPI_LOG_DBG2(ndpi_struct, "calculating dport over tcp\n");
-
- if(packet->payload_packet_len > 13 && (sport == 554 || dport == 554) &&
- packet->payload[0] == 0x00 && packet->payload[1] == 0x00 &&
- packet->payload[2] == 0x01 && packet->payload[3] == 0x01 &&
- packet->payload[4] == 0x08 && packet->payload[5] == 0x0a &&
- packet->payload[6] == 0x00 && packet->payload[7] == 0x01) {
- NDPI_LOG_INFO(ndpi_struct, "found rtcp\n");
- ndpi_int_rtcp_add_connection(ndpi_struct, flow);
- }
-
- if(flow->packet_counter > 3)
- NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
- } else if(packet->udp != NULL) {
- /* Let's check first the RTCP packet length */
- u_int32_t len, offset = 0, rtcp_section_len;
-
- while(offset + 3 < packet->payload_packet_len) {
- len = packet->payload[2+offset] * 256 + packet->payload[2+offset+1];
- rtcp_section_len = (len + 1) * 4;
-
- if(((offset+rtcp_section_len) > packet->payload_packet_len) || (rtcp_section_len == 0) || (len == 0)) {
- NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
- return;
- } else
- offset += rtcp_section_len;
- }
-
- NDPI_LOG_DBG2(ndpi_struct, "calculating dport over udp\n");
- /* TODO changed a pair of length condition to the && from ||. Is it correct? */
- if(((packet->payload_packet_len >= 28 && packet->payload_packet_len <= 1200) &&
- ((packet->payload[0] == 0x80) && ((packet->payload[1] == 0xc8) || (packet->payload[1] == 0xc9)) && (packet->payload[2] == 0x00)))
- || (packet->payload_packet_len >= 3 && ((packet->payload[0] == 0x81) && ((packet->payload[1] == 0xc8) || (packet->payload[1] == 0xc9))
- && (packet->payload[2] == 0x00)))) {
- NDPI_LOG_INFO(ndpi_struct, "found rtcp\n");
- ndpi_int_rtcp_add_connection(ndpi_struct, flow);
- }
-
- if(flow->packet_counter > 3)
- NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
- }
-}
-
-
-void init_rtcp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id)
-{
- ndpi_set_bitmask_protocol_detection("RTCP", ndpi_struct, *id,
- NDPI_PROTOCOL_RTCP,
- ndpi_search_rtcp,
- NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_OR_UDP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION,
- SAVE_DETECTION_BITMASK_AS_UNKNOWN,
- ADD_TO_DETECTION_BITMASK);
-
- *id += 1;
-}