aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/winmx.c
diff options
context:
space:
mode:
authorLuca <deri@ntop.org>2015-07-01 17:40:14 +0200
committerLuca <deri@ntop.org>2015-07-01 17:40:14 +0200
commit60884f9047882863d27f7e8f5fb760897c599800 (patch)
tree2b09f2ec1a551b59a98baee790c858fb3e038ffe /src/lib/protocols/winmx.c
parent49ea23530f876930896dc5aa6a84ef6219589171 (diff)
Split former protocol into upper and lower protocol
Diffstat (limited to 'src/lib/protocols/winmx.c')
-rw-r--r--src/lib/protocols/winmx.c118
1 files changed, 59 insertions, 59 deletions
diff --git a/src/lib/protocols/winmx.c b/src/lib/protocols/winmx.c
index fc08beab5..f2cac7482 100644
--- a/src/lib/protocols/winmx.c
+++ b/src/lib/protocols/winmx.c
@@ -29,76 +29,76 @@
static void ndpi_int_winmx_add_connection(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow);
+ *ndpi_struct, struct ndpi_flow_struct *flow);
static void ndpi_int_winmx_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_WINMX);
+ ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_WINMX, NDPI_PROTOCOL_UNKNOWN);
}
void ndpi_search_winmx_tcp(struct ndpi_detection_module_struct *ndpi_struct, struct ndpi_flow_struct *flow)
{
- struct ndpi_packet_struct *packet = &flow->packet;
+ struct ndpi_packet_struct *packet = &flow->packet;
-// struct ndpi_id_struct *src=ndpi_struct->src;
-// struct ndpi_id_struct *dst=ndpi_struct->dst;
-
-
- if (flow->l4.tcp.winmx_stage == 0) {
- if (packet->payload_packet_len == 1 || (packet->payload_packet_len > 1 && packet->payload[0] == 0x31)) {
- return;
- }
- /* did not see this pattern in any trace that we have */
- if (((packet->payload_packet_len) == 4)
- && (memcmp(packet->payload, "SEND", 4) == 0)) {
-
- NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "maybe WinMX Send\n");
- flow->l4.tcp.winmx_stage = 1;
- return;
- }
-
- if (((packet->payload_packet_len) == 3)
- && (memcmp(packet->payload, "GET", 3) == 0)) {
- NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "found winmx by GET\n");
- ndpi_int_winmx_add_connection(ndpi_struct, flow);
- return;
- }
-
-
- if (packet->payload_packet_len == 149 && packet->payload[0] == '8') {
- NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "maybe WinMX\n");
- if (get_u_int32_t(packet->payload, 17) == 0
- && get_u_int32_t(packet->payload, 21) == 0
- && get_u_int32_t(packet->payload, 25) == 0
- && get_u_int16_t(packet->payload, 39) == 0 && get_u_int16_t(packet->payload, 135) == htons(0x7edf)
- && get_u_int16_t(packet->payload, 147) == htons(0xf792)) {
-
- NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG,
- "found winmx by pattern in first packet\n");
- ndpi_int_winmx_add_connection(ndpi_struct, flow);
- return;
- }
- }
- /* did not see this pattern in any trace that we have */
- } else if (flow->l4.tcp.winmx_stage == 1) {
- if (packet->payload_packet_len > 10 && packet->payload_packet_len < 1000) {
- u_int16_t left = packet->payload_packet_len - 1;
- while (left > 0) {
- if (packet->payload[left] == ' ') {
- NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "found winmx in second packet\n");
- ndpi_int_winmx_add_connection(ndpi_struct, flow);
- return;
- } else if (packet->payload[left] < '0' || packet->payload[left] > '9') {
- break;
- }
- left--;
- }
- }
+ // struct ndpi_id_struct *src=ndpi_struct->src;
+ // struct ndpi_id_struct *dst=ndpi_struct->dst;
+
+
+ if (flow->l4.tcp.winmx_stage == 0) {
+ if (packet->payload_packet_len == 1 || (packet->payload_packet_len > 1 && packet->payload[0] == 0x31)) {
+ return;
+ }
+ /* did not see this pattern in any trace that we have */
+ if (((packet->payload_packet_len) == 4)
+ && (memcmp(packet->payload, "SEND", 4) == 0)) {
+
+ NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "maybe WinMX Send\n");
+ flow->l4.tcp.winmx_stage = 1;
+ return;
+ }
+
+ if (((packet->payload_packet_len) == 3)
+ && (memcmp(packet->payload, "GET", 3) == 0)) {
+ NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "found winmx by GET\n");
+ ndpi_int_winmx_add_connection(ndpi_struct, flow);
+ return;
+ }
+
+
+ if (packet->payload_packet_len == 149 && packet->payload[0] == '8') {
+ NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "maybe WinMX\n");
+ if (get_u_int32_t(packet->payload, 17) == 0
+ && get_u_int32_t(packet->payload, 21) == 0
+ && get_u_int32_t(packet->payload, 25) == 0
+ && get_u_int16_t(packet->payload, 39) == 0 && get_u_int16_t(packet->payload, 135) == htons(0x7edf)
+ && get_u_int16_t(packet->payload, 147) == htons(0xf792)) {
+
+ NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG,
+ "found winmx by pattern in first packet\n");
+ ndpi_int_winmx_add_connection(ndpi_struct, flow);
+ return;
+ }
+ }
+ /* did not see this pattern in any trace that we have */
+ } else if (flow->l4.tcp.winmx_stage == 1) {
+ if (packet->payload_packet_len > 10 && packet->payload_packet_len < 1000) {
+ u_int16_t left = packet->payload_packet_len - 1;
+ while (left > 0) {
+ if (packet->payload[left] == ' ') {
+ NDPI_LOG(NDPI_PROTOCOL_WINMX, ndpi_struct, NDPI_LOG_DEBUG, "found winmx in second packet\n");
+ ndpi_int_winmx_add_connection(ndpi_struct, flow);
+ return;
+ } else if (packet->payload[left] < '0' || packet->payload[left] > '9') {
+ break;
}
+ left--;
+ }
+ }
+ }
- NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask, NDPI_PROTOCOL_WINMX);
+ NDPI_ADD_PROTOCOL_TO_BITMASK(flow->excluded_protocol_bitmask, NDPI_PROTOCOL_WINMX);
}
#endif