aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/ppstream.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/ppstream.c')
-rw-r--r--src/lib/protocols/ppstream.c248
1 files changed, 196 insertions, 52 deletions
diff --git a/src/lib/protocols/ppstream.c b/src/lib/protocols/ppstream.c
index f3323697b..04259def9 100644
--- a/src/lib/protocols/ppstream.c
+++ b/src/lib/protocols/ppstream.c
@@ -24,72 +24,216 @@
#ifdef NDPI_PROTOCOL_PPSTREAM
+#define PPS_PORT 17788
+
+
static void ndpi_int_ppstream_add_connection(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow)
+ *ndpi_struct, struct ndpi_flow_struct *flow)
{
ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_PPSTREAM, NDPI_PROTOCOL_UNKNOWN);
}
+
void ndpi_search_ppstream(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow)
+ *ndpi_struct, struct ndpi_flow_struct *flow)
{
- struct ndpi_packet_struct *packet = &flow->packet;
-
- /* check TCP Connections -> Videodata */
- if (packet->tcp != NULL) {
- if (packet->payload_packet_len >= 60 && get_u_int32_t(packet->payload, 52) == 0
- && memcmp(packet->payload, "PSProtocol\x0", 11) == 0) {
- NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG, "found ppstream over tcp.\n");
- ndpi_int_ppstream_add_connection(ndpi_struct, flow);
- return;
- }
- }
+ struct ndpi_packet_struct *packet = &flow->packet;
- if (packet->udp != NULL) {
- if (packet->payload_packet_len > 2 && packet->payload[2] == 0x43
- && ((packet->payload_packet_len - 4 == get_l16(packet->payload, 0))
- || (packet->payload_packet_len == get_l16(packet->payload, 0))
- || (packet->payload_packet_len >= 6 && packet->payload_packet_len - 6 == get_l16(packet->payload, 0)))) {
- flow->l4.udp.ppstream_stage++;
- if (flow->l4.udp.ppstream_stage == 5) {
- NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
- "found ppstream over udp pattern len, 43.\n");
- ndpi_int_ppstream_add_connection(ndpi_struct, flow);
- return;
- }
- return;
- }
+ /**
+ PPS over TCP is detected inside HTTP dissector
+ */
+
+ /* check PPS over UDP */
+ if(packet->udp != NULL) {
+ /*** on port 17788 ***/
+ if(packet->payload_packet_len > 12 && ((ntohs(packet->udp->source) == PPS_PORT) || (ntohs(packet->udp->dest) == PPS_PORT))) {
+ if(((packet->payload_packet_len - 4 == get_l16(packet->payload, 0))
+ || (packet->payload_packet_len == get_l16(packet->payload, 0))
+ || (packet->payload_packet_len >= 6 && packet->payload_packet_len - 6 == get_l16(packet->payload, 0)))) {
+ /* check 43 and */
+ if(packet->payload[2] == 0x43) {
+ if(packet->payload[5] == 0xff &&
+ packet->payload[6] == 0x00 &&
+ packet->payload[7] == 0x01 &&
+ packet->payload[8] == 0x00 &&
+ packet->payload[9] == 0x00 &&
+ packet->payload[10] == 0x00 &&
+ packet->payload[11] == 0x00 &&
+ packet->payload[12] == 0x00 &&
+ packet->payload[13] == 0x00 &&
+ packet->payload[14] == 0x00) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ /* check 44 */
+ else if(packet->payload[2] == 0x44) {
+ /** b1 71 **/
+ if(packet->payload[3] == 0xb1 && packet->payload[4] == 0x71) {
+ if(packet->payload[13] == 0x00 &&
+ packet->payload[14] == 0x00 &&
+ packet->payload[15] == 0x01 &&
+ packet->payload[16] == 0x00) {
+ /* 02 03 04 05 */
+ if(packet->payload[17] == 0x02 ||
+ packet->payload[17] == 0x03 ||
+ packet->payload[17] == 0x04 ||
+ packet->payload[17] == 0x05) {
+ if(packet->payload[18] == 0x00 &&
+ packet->payload[19] == 0x00 &&
+ packet->payload[20] == 0x00) {
- if (flow->l4.udp.ppstream_stage == 0
- && packet->payload_packet_len > 4 && ((packet->payload_packet_len - 4 == get_l16(packet->payload, 0))
- || (packet->payload_packet_len == get_l16(packet->payload, 0))
- || (packet->payload_packet_len >= 6
- && packet->payload_packet_len - 6 == get_l16(packet->payload,
- 0)))) {
-
- if (packet->payload[2] == 0x00 && packet->payload[3] == 0x00 && packet->payload[4] == 0x03) {
- flow->l4.udp.ppstream_stage = 7;
- NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG, "need next packet I.\n");
- return;
- }
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
}
+ /* ff */
+ else if(packet->payload[17] == 0xff) {
+ if(packet->payload[18] == 0xff &&
+ packet->payload[19] == 0xff &&
+ packet->payload[20] == 0xff) {
- if (flow->l4.udp.ppstream_stage == 7
- && packet->payload_packet_len > 4 && packet->payload[3] == 0x00
- && ((packet->payload_packet_len - 4 == get_l16(packet->payload, 0))
- || (packet->payload_packet_len == get_l16(packet->payload, 0))
- || (packet->payload_packet_len >= 6 && packet->payload_packet_len - 6 == get_l16(packet->payload, 0)))
- && (packet->payload[2] == 0x00 && packet->payload[4] == 0x03)) {
- NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
- "found ppstream over udp with pattern Vb.\n");
- ndpi_int_ppstream_add_connection(ndpi_struct, flow);
- return;
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
}
+ }
+ }
+ /** 73 17 **/
+ else if(packet->payload[3] == 0x73 && packet->payload[4] == 0x17) {
+ if(packet->payload[5] == 0x00 &&
+ packet->payload[6] == 0x00 &&
+ packet->payload[7] == 0x00 &&
+ packet->payload[8] == 0x00 &&
+ packet->payload[14] == 0x00 &&
+ packet->payload[15] == 0x00 &&
+ packet->payload[16] == 0x00 &&
+ packet->payload[17] == 0x00 &&
+ packet->payload[18] == 0x00 &&
+ packet->payload[19] == 0x00 &&
+ packet->payload[20] == 0x00) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ }
+ /** 74 71 **/
+ else if(packet->payload[3] == 0x74 && packet->payload[4] == 0x71 && packet->payload_packet_len == 113) {
+ /* check "PPStream" string in hex */
+ if(packet->payload[94] == 0x50 &&
+ packet->payload[95] == 0x50 &&
+ packet->payload[96] == 0x53 &&
+ packet->payload[97] == 0x74 &&
+ packet->payload[98] == 0x72 &&
+ packet->payload[99] == 0x65 &&
+ packet->payload[100] == 0x61 &&
+ packet->payload[101] == 0x6d) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ }
+ }
+ /** check 55 (1) **/
+ else if(packet->payload[2] == 0x55 && (packet->payload[13] == 0x1b &&
+ packet->payload[14] == 0xa0 &&
+ packet->payload[15] == 0x00 &&
+ packet->payload[16] == 0x00 &&
+ packet->payload[17] == 0x00 &&
+ packet->payload[18] == 0x00 &&
+ packet->payload[19] == 0x00 &&
+ packet->payload[20] == 0x00 )) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ /** check 55 (2) **/
+ else if(packet->payload[2] == 0x55 && packet->payload[1] == 0x00 &&
+ (packet->payload[5] == 0x00 &&
+ packet->payload[6] == 0x00 &&
+ packet->payload[7] == 0x00 &&
+ packet->payload[8] == 0x00 &&
+ packet->payload[14] == 0x00 &&
+ packet->payload[15] == 0x00 &&
+ packet->payload[16] == 0x00 &&
+ packet->payload[17] == 0x00 &&
+ packet->payload[18] == 0x00 &&
+ packet->payload[19] == 0x00 &&
+ packet->payload[20] == 0x00 )) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
}
+ }
+ /* No port detection */
+ if(packet->payload_packet_len > 17) {
+ /* 80 */
+ if(packet->payload[1] == 0x80 || packet->payload[1] == 0x84 ) {
+ if(packet->payload[3] == packet->payload[4]) {
- NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG, "exclude ppstream.\n");
- NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask, NDPI_PROTOCOL_PPSTREAM);
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over UDP.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ }
+ /* 53 */
+ else if(packet->payload[1] == 0x53 && packet->payload[3] == 0x00 &&
+ (packet->payload[0] == 0x08 || packet->payload[0] == 0x0c)) {
+
+ /* increase count pkt ppstream over udp */
+ flow->l4.udp.ppstream_stage++;
+
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG,
+ "found PPStream over udp.\n");
+ ndpi_int_ppstream_add_connection(ndpi_struct, flow);
+ return;
+ }
+ }
+ }
+ /* EXCLUDE PPS */
+ NDPI_LOG(NDPI_PROTOCOL_PPSTREAM, ndpi_struct, NDPI_LOG_DEBUG, "exclude PPStream.\n");
+ NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask, NDPI_PROTOCOL_PPSTREAM);
+ }
}
@@ -101,7 +245,7 @@ void init_ppstream_dissector(struct ndpi_detection_module_struct *ndpi_struct, u
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_OR_UDP_WITH_PAYLOAD,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
ADD_TO_DETECTION_BITMASK);
-
+
*id += 1;
}