Blame SOURCES/wireshark-0026-mptcp.patch

512a26
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
512a26
index 36e8afb2a3..73f4a2647a 100644
512a26
--- a/epan/dissectors/packet-tcp.c
512a26
+++ b/epan/dissectors/packet-tcp.c
512a26
@@ -285,7 +285,9 @@ static int hf_mptcp_analysis_subflows_stream_id = -1;
512a26
 static int hf_mptcp_analysis_subflows = -1;
512a26
 static int hf_mptcp_number_of_removed_addresses = -1;
512a26
 static int hf_mptcp_related_mapping = -1;
512a26
-static int hf_mptcp_duplicated_data = -1;
512a26
+static int hf_mptcp_reinjection_of = -1;
512a26
+static int hf_mptcp_reinjected_in = -1;
512a26
+
512a26
 
512a26
 static int hf_tcp_option_fast_open_cookie_request = -1;
512a26
 static int hf_tcp_option_fast_open_cookie = -1;
512a26
@@ -1455,8 +1457,8 @@ mptcp_init_subflow(tcp_flow_t *flow)
512a26
 
512a26
     DISSECTOR_ASSERT(flow->mptcp_subflow == 0);
512a26
     flow->mptcp_subflow = sf;
512a26
-    sf->mappings        = wmem_itree_new(wmem_file_scope());
512a26
-    sf->dsn_map         = wmem_itree_new(wmem_file_scope());
512a26
+    sf->ssn2dsn_mappings        = wmem_itree_new(wmem_file_scope());
512a26
+    sf->dsn2packet_map         = wmem_itree_new(wmem_file_scope());
512a26
 }
512a26
 
512a26
 
512a26
@@ -2607,13 +2609,13 @@ guint64 rawdsn64low, guint64 rawdsn64high
512a26
     mptcp_dsn2packet_mapping_t *packet = NULL;
512a26
     proto_item *item = NULL;
512a26
 
512a26
-    results = wmem_itree_find_intervals(subflow->mappings,
512a26
+    results = wmem_itree_find_intervals(subflow->dsn2packet_map,
512a26
                     wmem_packet_scope(),
512a26
                     rawdsn64low,
512a26
                     rawdsn64high
512a26
                     );
512a26
 
512a26
-    for(packet_it=wmem_list_head(results);
512a26
+    for(packet_it = wmem_list_head(results);
512a26
         packet_it != NULL;
512a26
         packet_it = wmem_list_frame_next(packet_it))
512a26
     {
512a26
@@ -2621,43 +2623,18 @@ guint64 rawdsn64low, guint64 rawdsn64high
512a26
         packet = (mptcp_dsn2packet_mapping_t *) wmem_list_frame_data(packet_it);
512a26
         DISSECTOR_ASSERT(packet);
512a26
 
512a26
-        item = proto_tree_add_uint(tree, hf_mptcp_duplicated_data, tvb, 0, 0, packet->frame);
512a26
+        if(pinfo->num > packet->frame) {
512a26
+            item = proto_tree_add_uint(tree, hf_mptcp_reinjection_of, tvb, 0, 0, packet->frame);
512a26
+        }
512a26
+        else {
512a26
+            item = proto_tree_add_uint(tree, hf_mptcp_reinjected_in, tvb, 0, 0, packet->frame);
512a26
+        }
512a26
         PROTO_ITEM_SET_GENERATED(item);
512a26
     }
512a26
 
512a26
     return packet;
512a26
 }
512a26
 
512a26
-/* Finds mappings that cover the sent data */
512a26
-static mptcp_dss_mapping_t *
512a26
-mptcp_add_matching_dss_on_subflow(packet_info *pinfo _U_, proto_tree *tree, tvbuff_t *tvb, struct mptcp_subflow *subflow,
512a26
-guint32 relseq, guint32 seglen
512a26
-)
512a26
-{
512a26
-    wmem_list_t *results = NULL;
512a26
-    wmem_list_frame_t *dss_it = NULL;
512a26
-    mptcp_dss_mapping_t *mapping = NULL;
512a26
-    proto_item *item = NULL;
512a26
-
512a26
-    results = wmem_itree_find_intervals(subflow->mappings,
512a26
-                    wmem_packet_scope(),
512a26
-                    relseq,
512a26
-                    (seglen) ? relseq + seglen - 1 : relseq
512a26
-                    );
512a26
-
512a26
-    for(dss_it=wmem_list_head(results);
512a26
-        dss_it!= NULL;
512a26
-        dss_it= wmem_list_frame_next(dss_it))
512a26
-    {
512a26
-        mapping = (mptcp_dss_mapping_t *) wmem_list_frame_data(dss_it);
512a26
-        DISSECTOR_ASSERT(mapping);
512a26
-
512a26
-        item = proto_tree_add_uint(tree, hf_mptcp_related_mapping, tvb, 0, 0, mapping->frame);
512a26
-        PROTO_ITEM_SET_GENERATED(item);
512a26
-    }
512a26
-
512a26
-    return mapping;
512a26
-}
512a26
 
512a26
 /* Lookup mappings that describe the packet and then converts the tcp seq number
512a26
  * into the MPTCP Data Sequence Number (DSN)
512a26
@@ -2698,13 +2675,29 @@ mptcp_analysis_dsn_lookup(packet_info *pinfo , tvbuff_t *tvb,
512a26
         rawdsn = tcpd->fwd->mptcp_subflow->meta->base_dsn;
512a26
         convert = DSN_CONV_NONE;
512a26
     }
512a26
+    /* if it's a non-syn packet without data (just used to convey TCP options)
512a26
+     * then there would be no mappings */
512a26
+    else if(relseq == 1 && tcph->th_seglen == 0) {
512a26
+        rawdsn = tcpd->fwd->mptcp_subflow->meta->base_dsn + 1;
512a26
+        convert = DSN_CONV_NONE;
512a26
+    }
512a26
     else {
512a26
-        /* display packets that conveyed the mappings covering the data range */
512a26
-        mapping = mptcp_add_matching_dss_on_subflow(pinfo, parent_tree, tvb,
512a26
-                            tcpd->fwd->mptcp_subflow, relseq,
512a26
-                            (tcph->th_have_seglen) ? tcph->th_seglen : 0
512a26
-                                                    );
512a26
-        if(mapping == NULL) {
512a26
+
512a26
+        wmem_list_frame_t *dss_it = NULL;
512a26
+        wmem_list_t *results = NULL;
512a26
+        guint32 ssn_low = relseq;
512a26
+        guint32 seglen = tcph->th_seglen;
512a26
+
512a26
+        results = wmem_itree_find_intervals(tcpd->fwd->mptcp_subflow->ssn2dsn_mappings,
512a26
+                    wmem_packet_scope(),
512a26
+                    ssn_low,
512a26
+                    (seglen) ? ssn_low + seglen - 1 : ssn_low
512a26
+                    );
512a26
+        dss_it = wmem_list_head(results); /* assume it's always ok */
512a26
+        if(dss_it) {
512a26
+            mapping = (mptcp_dss_mapping_t *) wmem_list_frame_data(dss_it);
512a26
+        }
512a26
+        if(dss_it == NULL || mapping == NULL) {
512a26
             expert_add_info(pinfo, parent_tree, &ei_mptcp_mapping_missing);
512a26
             return;
512a26
         }
512a26
@@ -2713,6 +2706,19 @@ mptcp_analysis_dsn_lookup(packet_info *pinfo , tvbuff_t *tvb,
512a26
         }
512a26
 
512a26
         DISSECTOR_ASSERT(mapping);
512a26
+        if(seglen) {
512a26
+            /* Finds mappings that cover the sent data and adds them to the dissection tree */
512a26
+            for(dss_it = wmem_list_head(results);
512a26
+                dss_it != NULL;
512a26
+                dss_it = wmem_list_frame_next(dss_it))
512a26
+            {
512a26
+                mapping = (mptcp_dss_mapping_t *) wmem_list_frame_data(dss_it);
512a26
+                DISSECTOR_ASSERT(mapping);
512a26
+
512a26
+                item = proto_tree_add_uint(parent_tree, hf_mptcp_related_mapping, tvb, 0, 0, mapping->frame);
512a26
+                PROTO_ITEM_SET_GENERATED(item);
512a26
+            }
512a26
+        }
512a26
 
512a26
         convert = (mapping->extended_dsn) ? DSN_CONV_NONE : DSN_CONV_32_TO_64;
512a26
         DISSECTOR_ASSERT(mptcp_map_relssn_to_rawdsn(mapping, relseq, &rawdsn));
512a26
@@ -2732,39 +2738,40 @@ mptcp_analysis_dsn_lookup(packet_info *pinfo , tvbuff_t *tvb,
512a26
             proto_item_append_text(item, " (Relative)");
512a26
         }
512a26
 
512a26
-        /* register */
512a26
-        if (!PINFO_FD_VISITED(pinfo))
512a26
-        {
512a26
-            mptcp_dsn2packet_mapping_t *packet;
512a26
-            packet = wmem_new0(wmem_file_scope(), mptcp_dsn2packet_mapping_t);
512a26
-            packet->frame = pinfo->fd->num;
512a26
-            packet->subflow = tcpd;
512a26
-
512a26
-            /* tcph->th_mptcp->mh_rawdsn64 */
512a26
-            if (tcph->th_have_seglen) {
512a26
-                wmem_itree_insert(tcpd->fwd->mptcp_subflow->dsn_map,
512a26
+        /* register dsn->packet mapping */
512a26
+        if(mptcp_intersubflows_retransmission
512a26
+            && !PINFO_FD_VISITED(pinfo)
512a26
+            && tcph->th_seglen > 0
512a26
+          ) {
512a26
+                mptcp_dsn2packet_mapping_t *packet = 0;
512a26
+                packet = wmem_new0(wmem_file_scope(), mptcp_dsn2packet_mapping_t);
512a26
+                packet->frame = pinfo->fd->num;
512a26
+                packet->subflow = tcpd;
512a26
+
512a26
+                wmem_itree_insert(tcpd->fwd->mptcp_subflow->dsn2packet_map,
512a26
                         tcph->th_mptcp->mh_rawdsn64,
512a26
                         tcph->th_mptcp->mh_rawdsn64 + (tcph->th_seglen - 1 ),
512a26
                         packet
512a26
                         );
512a26
-            }
512a26
         }
512a26
         PROTO_ITEM_SET_GENERATED(item);
512a26
 
512a26
         /* We can do this only if rawdsn64 is valid !
512a26
         if enabled, look for overlapping mappings on other subflows */
512a26
-        if(mptcp_intersubflows_retransmission) {
512a26
+        if(mptcp_intersubflows_retransmission
512a26
+            && tcph->th_have_seglen
512a26
+            && tcph->th_seglen) {
512a26
 
512a26
             wmem_list_frame_t *subflow_it = NULL;
512a26
 
512a26
-            /* results should be some kind of  in case 2 DSS are needed to cover this packet */
512a26
+            /* results should be some kind of list in case 2 DSS are needed to cover this packet */
512a26
             for(subflow_it = wmem_list_head(mptcpd->subflows); subflow_it != NULL; subflow_it = wmem_list_frame_next(subflow_it)) {
512a26
                 struct tcp_analysis *sf_tcpd = (struct tcp_analysis *)wmem_list_frame_data(subflow_it);
512a26
                 struct mptcp_subflow *sf = mptcp_select_subflow_from_meta(sf_tcpd, tcpd->fwd->mptcp_subflow->meta);
512a26
 
512a26
                 /* for current subflow */
512a26
                 if (sf == tcpd->fwd->mptcp_subflow) {
512a26
-                    /* skip, was done just before */
512a26
+                    /* skip, this is the current subflow */
512a26
                 }
512a26
                 /* in case there were retransmissions on other subflows */
512a26
                 else  {
512a26
@@ -2776,7 +2783,7 @@ mptcp_analysis_dsn_lookup(packet_info *pinfo , tvbuff_t *tvb,
512a26
         }
512a26
     }
512a26
     else {
512a26
-        /* ignore and continue */
512a26
+        /* could not get the rawdsn64, ignore and continue */
512a26
     }
512a26
 
512a26
 }
512a26
@@ -4590,7 +4597,6 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
 
512a26
                     if (!PINFO_FD_VISITED(pinfo))
512a26
                     {
512a26
-
512a26
                         /* register SSN range described by the mapping into a subflow interval_tree */
512a26
                         mptcp_dss_mapping_t *mapping = NULL;
512a26
                         mapping = wmem_new0(wmem_file_scope(), mptcp_dss_mapping_t);
512a26
@@ -4601,7 +4607,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                         mapping->ssn_low = mph->mh_dss_ssn;
512a26
                         mapping->ssn_high = mph->mh_dss_ssn + mph->mh_dss_length-1;
512a26
 
512a26
-                        wmem_itree_insert(tcpd->fwd->mptcp_subflow->mappings,
512a26
+                        wmem_itree_insert(tcpd->fwd->mptcp_subflow->ssn2dsn_mappings,
512a26
                             mph->mh_dss_ssn,
512a26
                             mapping->ssn_high,
512a26
                             mapping
512a26
@@ -7564,15 +7570,19 @@ proto_register_tcp(void)
512a26
             "This frame has some of the MPTCP analysis shown", HFILL }},
512a26
 
512a26
         { &hf_mptcp_related_mapping,
512a26
-          { "Related mapping",   "mptcp.related_mapping", FT_FRAMENUM , BASE_NONE, NULL, 0x0,
512a26
-            "Packet in which mapping describing current packet was sent", HFILL }},
512a26
+          { "Related mapping", "mptcp.related_mapping", FT_FRAMENUM , BASE_NONE, NULL, 0x0,
512a26
+            "Packet in which current packet DSS mapping was sent", HFILL }},
512a26
+
512a26
+        { &hf_mptcp_reinjection_of,
512a26
+          { "Reinjection of", "mptcp.reinjection_of", FT_FRAMENUM , BASE_NONE, NULL, 0x0,
512a26
+            "This is a retransmission of data sent on another subflow", HFILL }},
512a26
 
512a26
-        { &hf_mptcp_duplicated_data,
512a26
-          { "Was data duplicated",   "mptcp.duplicated_dsn", FT_FRAMENUM , BASE_NONE, NULL, 0x0,
512a26
+        { &hf_mptcp_reinjected_in,
512a26
+          { "Data reinjected in", "mptcp.reinjected_in", FT_FRAMENUM , BASE_NONE, NULL, 0x0,
512a26
             "This was retransmitted on another subflow", HFILL }},
512a26
 
512a26
         { &hf_mptcp_analysis_subflows,
512a26
-          { "TCP subflow stream id(s):",   "mptcp.analysis.subflows", FT_NONE, BASE_NONE, NULL, 0x0,
512a26
+          { "TCP subflow stream id(s):", "mptcp.analysis.subflows", FT_NONE, BASE_NONE, NULL, 0x0,
512a26
             "List all TCP connections mapped to this MPTCP connection", HFILL }},
512a26
 
512a26
         { &hf_mptcp_stream,
512a26
@@ -7752,13 +7762,16 @@ proto_register_tcp(void)
512a26
         &mptcp_relative_seq);
512a26
 
512a26
     prefs_register_bool_preference(mptcp_module, "analyze_mappings",
512a26
-        "In depth analysis of Data Sequence Signal (DSS) mappings.",
512a26
+        "Deeper analysis of Data Sequence Signal (DSS)",
512a26
+        "Scales logarithmically with the number of packets"
512a26
         "You need to capture the handshake for this to work."
512a26
         "\"Map TCP subflows to their respective MPTCP connections\"",
512a26
         &mptcp_analyze_mappings);
512a26
 
512a26
     prefs_register_bool_preference(mptcp_module, "intersubflows_retransmission",
512a26
         "Check for data duplication across subflows",
512a26
+        "(Greedy algorithm: Scales linearly with number of subflows and"
512a26
+        " logarithmic scaling with number of packets)"
512a26
         "You need to enable DSS mapping analysis for this option to work",
512a26
         &mptcp_intersubflows_retransmission);
512a26
 
512a26
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
512a26
index 7f84351ade..c1811fa049 100644
512a26
--- a/epan/dissectors/packet-tcp.h
512a26
+++ b/epan/dissectors/packet-tcp.h
512a26
@@ -257,15 +257,16 @@ struct mptcp_subflow {
512a26
 	guint8 address_id;   /* sent during an MP_JOIN */
512a26
 
512a26
 
512a26
-	/* Attempt to map DSN to packets
512a26
-	 * Ideally this was to generate application latency
512a26
-	 * each node contains a GSList * ?
512a26
-	 * this should be done in tap or 3rd party tools
512a26
+	/* map DSN to packets
512a26
+	 * Used when looking for reinjections across subflows
512a26
 	 */
512a26
-	wmem_itree_t *dsn_map;
512a26
+	wmem_itree_t *dsn2packet_map;
512a26
 
512a26
-	/* Map SSN to a DSS mappings, each node registers a mptcp_dss_mapping_t */
512a26
-	wmem_itree_t *mappings;
512a26
+	/* Map SSN to a DSS mappings
512a26
+	 * a DSS can map DSN to SSNs possibily over several packets,
512a26
+	 * hence some packets may have been mapped by previous DSS,
512a26
+	 * whence the necessity to be able to look for SSN -> DSN */
512a26
+	wmem_itree_t *ssn2dsn_mappings;
512a26
 	/* meta flow to which it is attached. Helps setting forward and backward meta flow */
512a26
 	mptcp_meta_flow_t *meta;
512a26
 };
512a26
diff --git a/epan/wmem/wmem_interval_tree.c b/epan/wmem/wmem_interval_tree.c
512a26
index d52267de18..48888996b7 100644
512a26
--- a/epan/wmem/wmem_interval_tree.c
512a26
+++ b/epan/wmem/wmem_interval_tree.c
512a26
@@ -121,7 +121,7 @@ wmem_itree_insert(wmem_itree_t *tree, const guint64 low, const guint64 high, voi
512a26
     node = wmem_tree_insert(tree, range, data, (compare_func)wmem_tree_compare_ranges);
512a26
 
512a26
     /* Even If no rotations, still a need to update max_edge */
512a26
-    update_max_edge(node);
512a26
+    update_max_edge(node->parent);
512a26
 }
512a26
 
512a26
 
512a26
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
512a26
index 74e9b6b10c..efcfa005af 100644
512a26
--- a/epan/dissectors/packet-tcp.c
512a26
+++ b/epan/dissectors/packet-tcp.c
512a26
@@ -4361,6 +4361,35 @@ get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint6
512a26
     return mptcpd;
512a26
 }
512a26
 
512a26
+/* record this mapping */
512a26
+static
512a26
+void analyze_mapping(struct tcp_analysis *tcpd, packet_info *pinfo, guint16 len, guint64 dsn, gboolean extended, guint32 ssn) {
512a26
+
512a26
+    /* store mapping only if analysis is enabled and mapping is not unlimited */
512a26
+    if (!mptcp_analyze_mappings || !len) {
512a26
+        return;
512a26
+    }
512a26
+
512a26
+    if (PINFO_FD_VISITED(pinfo)) {
512a26
+        return;
512a26
+    }
512a26
+
512a26
+    /* register SSN range described by the mapping into a subflow interval_tree */
512a26
+    mptcp_dss_mapping_t *mapping = NULL;
512a26
+    mapping = wmem_new0(wmem_file_scope(), mptcp_dss_mapping_t);
512a26
+
512a26
+    mapping->rawdsn  = dsn;
512a26
+    mapping->extended_dsn = extended;
512a26
+    mapping->frame = pinfo->fd->num;
512a26
+    mapping->ssn_low = ssn;
512a26
+    mapping->ssn_high = ssn + len - 1;
512a26
+
512a26
+    wmem_itree_insert(tcpd->fwd->mptcp_subflow->ssn2dsn_mappings,
512a26
+        mapping->ssn_low,
512a26
+        mapping->ssn_high,
512a26
+        mapping
512a26
+        );
512a26
+}
512a26
 
512a26
 /*
512a26
  * The TCP Extensions for Multipath Operation with Multiple Addresses
512a26
@@ -4449,8 +4478,11 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
             }
512a26
             offset += 1;
512a26
 
512a26
-            /* optlen == 12 => SYN or SYN/ACK; optlen == 20 => ACK */
512a26
-            if (optlen == 12 || optlen == 20) {
512a26
+            /* optlen == 12 => SYN or SYN/ACK; optlen == 20 => ACK;
512a26
+             * optlen == 22 => ACK + data (v1 only);
512a26
+             * optlen == 24 => ACK + data + csum (v1 only)
512a26
+             */
512a26
+            if (optlen == 12 || optlen == 20 || optlen == 22 || optlen == 24) {
512a26
 
512a26
                 mph->mh_key = tvb_get_ntoh64(tvb,offset);
512a26
                 proto_tree_add_uint64(mptcp_tree, hf_tcp_option_mptcp_sender_key, tvb, offset, 8, mph->mh_key);
512a26
@@ -4468,9 +4500,10 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                 PROTO_ITEM_SET_GENERATED(item);
512a26
 
512a26
                 /* last ACK of 3WHS, repeats both keys */
512a26
-                if (optlen == 20) {
512a26
+                if (optlen >= 20) {
512a26
                     guint64 recv_key = tvb_get_ntoh64(tvb,offset);
512a26
                     proto_tree_add_uint64(mptcp_tree, hf_tcp_option_mptcp_recv_key, tvb, offset, 8, recv_key);
512a26
+                    offset += 8;
512a26
 
512a26
                     if(tcpd->rev->mptcp_subflow->meta
512a26
                         && (tcpd->rev->mptcp_subflow->meta->static_flags & MPTCP_META_HAS_KEY)) {
512a26
@@ -4484,6 +4517,26 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                         mptcpd = get_or_create_mptcpd_from_key(tcpd, tcpd->rev, recv_key, mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK);
512a26
                     }
512a26
                 }
512a26
+
512a26
+                /* MPTCP v1 ACK + data, contains data_len and optional checksum */
512a26
+                if (optlen >= 22) {
512a26
+                    proto_tree_add_item(mptcp_tree, hf_tcp_option_mptcp_data_lvl_len, tvb, offset, 2, ENC_BIG_ENDIAN);
512a26
+                    mph->mh_dss_length = tvb_get_ntohs(tvb,offset);
512a26
+                    offset += 2;
512a26
+
512a26
+                    if (mph->mh_dss_length == 0) {
512a26
+                        expert_add_info(pinfo, mptcp_tree, &ei_mptcp_infinite_mapping);
512a26
+                    }
512a26
+
512a26
+                    /* when data len is present, this MP_CAPABLE also carries an implicit mapping ... */
512a26
+                    analyze_mapping(tcpd, pinfo, mph->mh_dss_length, tcpd->fwd->mptcp_subflow->meta->base_dsn + 1, TRUE, tcph->th_seq);
512a26
+
512a26
+                    /* ... with optional checksum */
512a26
+                    if (optlen == 24)
512a26
+                    {
512a26
+                        proto_tree_add_checksum(mptcp_tree, tvb, offset, hf_tcp_option_mptcp_checksum, -1, NULL, pinfo, 0, ENC_BIG_ENDIAN, PROTO_CHECKSUM_NO_FLAGS);
512a26
+                    }
512a26
+                }
512a26
             }
512a26
             break;
512a26
 
512a26
@@ -4650,29 +4703,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                     /* ignore and continue */
512a26
                 }
512a26
 
512a26
-                /* if mapping analysis enabled and not a */
512a26
-                if(mptcp_analyze_mappings && mph->mh_dss_length)
512a26
-                {
512a26
-
512a26
-                    if (!PINFO_FD_VISITED(pinfo))
512a26
-                    {
512a26
-                        /* register SSN range described by the mapping into a subflow interval_tree */
512a26
-                        mptcp_dss_mapping_t *mapping = NULL;
512a26
-                        mapping = wmem_new0(wmem_file_scope(), mptcp_dss_mapping_t);
512a26
-
512a26
-                        mapping->rawdsn  = mph->mh_dss_rawdsn;
512a26
-                        mapping->extended_dsn = (mph->mh_dss_flags & MPTCP_DSS_FLAG_DATA_ACK_8BYTES);
512a26
-                        mapping->frame = pinfo->fd->num;
512a26
-                        mapping->ssn_low = mph->mh_dss_ssn;
512a26
-                        mapping->ssn_high = mph->mh_dss_ssn + mph->mh_dss_length-1;
512a26
-
512a26
-                        wmem_itree_insert(tcpd->fwd->mptcp_subflow->ssn2dsn_mappings,
512a26
-                            mph->mh_dss_ssn,
512a26
-                            mapping->ssn_high,
512a26
-                            mapping
512a26
-                            );
512a26
-                    }
512a26
-                }
512a26
+                analyze_mapping(tcpd, pinfo, mph->mh_dss_length, mph->mh_dss_rawdsn, mph->mh_dss_flags & MPTCP_DSS_FLAG_DATA_ACK_8BYTES, mph->mh_dss_ssn);
512a26
 
512a26
                 if ((int)optlen >= offset-start_offset+4)
512a26
                 {
512a26
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
512a26
index efcfa005af..238b592927 100644
512a26
--- a/epan/dissectors/packet-tcp.c
512a26
+++ b/epan/dissectors/packet-tcp.c
512a26
@@ -246,7 +246,8 @@ static int hf_tcp_option_mptcp_flags = -1;
512a26
 static int hf_tcp_option_mptcp_backup_flag = -1;
512a26
 static int hf_tcp_option_mptcp_checksum_flag = -1;
512a26
 static int hf_tcp_option_mptcp_B_flag = -1;
512a26
-static int hf_tcp_option_mptcp_H_flag = -1;
512a26
+static int hf_tcp_option_mptcp_H_v0_flag = -1;
512a26
+static int hf_tcp_option_mptcp_H_v1_flag = -1;
512a26
 static int hf_tcp_option_mptcp_F_flag = -1;
512a26
 static int hf_tcp_option_mptcp_m_flag = -1;
512a26
 static int hf_tcp_option_mptcp_M_flag = -1;
512a26
@@ -593,10 +594,18 @@ static guint32 mptcp_stream_count;
512a26
  */
512a26
 static wmem_tree_t *mptcp_tokens = NULL;
512a26
 
512a26
-static const int *tcp_option_mptcp_capable_flags[] = {
512a26
+static const int *tcp_option_mptcp_capable_v0_flags[] = {
512a26
   &hf_tcp_option_mptcp_checksum_flag,
512a26
   &hf_tcp_option_mptcp_B_flag,
512a26
-  &hf_tcp_option_mptcp_H_flag,
512a26
+  &hf_tcp_option_mptcp_H_v0_flag,
512a26
+  &hf_tcp_option_mptcp_reserved_flag,
512a26
+  NULL
512a26
+};
512a26
+
512a26
+static const int *tcp_option_mptcp_capable_v1_flags[] = {
512a26
+  &hf_tcp_option_mptcp_checksum_flag,
512a26
+  &hf_tcp_option_mptcp_B_flag,
512a26
+  &hf_tcp_option_mptcp_H_v1_flag,
512a26
   &hf_tcp_option_mptcp_reserved_flag,
512a26
   NULL
512a26
 };
512a26
@@ -2574,6 +2583,24 @@ mptcp_cryptodata_sha1(const guint64 key, guint32 *token, guint64 *idsn)
512a26
     *idsn = GUINT64_FROM_BE(_isdn);
512a26
 }
512a26
 
512a26
+/* Generate the initial data sequence number and MPTCP connection token from the key. */
512a26
+static void
512a26
+mptcp_cryptodata_sha256(const guint64 key, guint32 *token, guint64 *idsn)
512a26
+{
512a26
+    guint8 digest_buf[HASH_SHA2_256_LENGTH];
512a26
+    guint64 pseudokey = GUINT64_TO_BE(key);
512a26
+    guint32 _token;
512a26
+    guint64 _isdn;
512a26
+
512a26
+    gcry_md_hash_buffer(GCRY_MD_SHA256, digest_buf, (const guint8 *)&pseudokey, 8);
512a26
+
512a26
+    /* memcpy to prevent -Wstrict-aliasing errors with GCC 4 */
512a26
+    memcpy(&_token, digest_buf, sizeof(_token));
512a26
+    *token = GUINT32_FROM_BE(_token);
512a26
+    memcpy(&_isdn, digest_buf + HASH_SHA2_256_LENGTH - sizeof(_isdn), sizeof(_isdn));
512a26
+    *idsn = GUINT64_FROM_BE(_isdn);
512a26
+}
512a26
+
512a26
 
512a26
 /* Print formatted list of tcp stream ids that are part of the connection */
512a26
 static void
512a26
@@ -4338,7 +4365,7 @@ mptcp_get_meta_from_token(struct tcp_analysis* tcpd, tcp_flow_t *tcp_flow, guint
512a26
 /* setup from_key */
512a26
 static
512a26
 struct mptcp_analysis*
512a26
-get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint64 key, guint8 hmac_algo _U_) {
512a26
+get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint8 version, guint64 key, guint8 hmac_algo _U_) {
512a26
 
512a26
     guint32 token = 0;
512a26
     guint64 expected_idsn= 0;
512a26
@@ -4348,8 +4375,11 @@ get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint6
512a26
         return mptcpd;
512a26
     }
512a26
 
512a26
-    /* MPTCP only standardizes SHA1 for now. */
512a26
-    mptcp_cryptodata_sha1(key, &token, &expected_idsn);
512a26
+    /* MPTCP v0 only standardizes SHA1, and v1 SHA256. */
512a26
+    if (version == 0)
512a26
+        mptcp_cryptodata_sha1(key, &token, &expected_idsn);
512a26
+    else if (version == 1)
512a26
+        mptcp_cryptodata_sha256(key, &token, &expected_idsn);
512a26
 
512a26
     mptcpd = mptcp_get_meta_from_token(tcpd, fwd, token);
512a26
 
512a26
@@ -4409,6 +4439,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
     proto_item *item,*main_item;
512a26
     proto_tree *mptcp_tree;
512a26
 
512a26
+    guint32 version;
512a26
     guint8 subtype;
512a26
     guint8 ipver;
512a26
     int offset = 0;
512a26
@@ -4462,18 +4493,19 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
         case TCPOPT_MPTCP_MP_CAPABLE:
512a26
             mph->mh_mpc = TRUE;
512a26
 
512a26
-            proto_tree_add_item(mptcp_tree, hf_tcp_option_mptcp_version, tvb,
512a26
-                        offset, 1, ENC_BIG_ENDIAN);
512a26
+            proto_tree_add_item_ret_uint(mptcp_tree, hf_tcp_option_mptcp_version, tvb,
512a26
+                        offset, 1, ENC_BIG_ENDIAN, &version);
512a26
             offset += 1;
512a26
 
512a26
             item = proto_tree_add_bitmask(mptcp_tree, tvb, offset, hf_tcp_option_mptcp_flags,
512a26
-                         ett_tcp_option_mptcp, tcp_option_mptcp_capable_flags,
512a26
+                         ett_tcp_option_mptcp,
512a26
+                         version == 1 ? tcp_option_mptcp_capable_v1_flags : tcp_option_mptcp_capable_v0_flags,
512a26
                          ENC_BIG_ENDIAN);
512a26
             mph->mh_capable_flags = tvb_get_guint8(tvb, offset);
512a26
             if ((mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK) == 0) {
512a26
                 expert_add_info(pinfo, item, &ei_mptcp_analysis_missing_algorithm);
512a26
             }
512a26
-            if ((mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK) != MPTCP_HMAC_SHA1) {
512a26
+            if ((mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK) != MPTCP_HMAC_SHA) {
512a26
                 expert_add_info(pinfo, item, &ei_mptcp_analysis_unsupported_algorithm);
512a26
             }
512a26
             offset += 1;
512a26
@@ -4488,7 +4520,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                 proto_tree_add_uint64(mptcp_tree, hf_tcp_option_mptcp_sender_key, tvb, offset, 8, mph->mh_key);
512a26
                 offset += 8;
512a26
 
512a26
-                mptcpd = get_or_create_mptcpd_from_key(tcpd, tcpd->fwd, mph->mh_key, mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK);
512a26
+                mptcpd = get_or_create_mptcpd_from_key(tcpd, tcpd->fwd, version, mph->mh_key, mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK);
512a26
                 mptcpd->master = tcpd;
512a26
 
512a26
                 item = proto_tree_add_uint(mptcp_tree,
512a26
@@ -4514,7 +4546,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                         }
512a26
                     }
512a26
                     else {
512a26
-                        mptcpd = get_or_create_mptcpd_from_key(tcpd, tcpd->rev, recv_key, mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK);
512a26
+                        mptcpd = get_or_create_mptcpd_from_key(tcpd, tcpd->rev, version, recv_key, mph->mh_capable_flags & MPTCP_CAPABLE_CRYPTO_MASK);
512a26
                     }
512a26
                 }
512a26
 
512a26
@@ -7147,10 +7179,14 @@ proto_register_tcp(void)
512a26
           { "Extensibility", "tcp.options.mptcp.extensibility.flag", FT_UINT8,
512a26
             BASE_DEC, NULL, 0x40, NULL, HFILL}},
512a26
 
512a26
-        { &hf_tcp_option_mptcp_H_flag,
512a26
+        { &hf_tcp_option_mptcp_H_v0_flag,
512a26
           { "Use HMAC-SHA1", "tcp.options.mptcp.sha1.flag", FT_UINT8,
512a26
             BASE_DEC, NULL, 0x01, NULL, HFILL}},
512a26
 
512a26
+        { &hf_tcp_option_mptcp_H_v1_flag,
512a26
+          { "Use HMAC-SHA256", "tcp.options.mptcp.sha256.flag", FT_UINT8,
512a26
+            BASE_DEC, NULL, 0x01, NULL, HFILL}},
512a26
+
512a26
         { &hf_tcp_option_mptcp_F_flag,
512a26
           { "DATA_FIN", "tcp.options.mptcp.datafin.flag", FT_UINT8,
512a26
             BASE_DEC, NULL, MPTCP_DSS_FLAG_DATA_FIN_PRESENT, NULL, HFILL}},
512a26
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
512a26
index dfee9cdeb4..38630d3a51 100644
512a26
--- a/epan/dissectors/packet-tcp.h
512a26
+++ b/epan/dissectors/packet-tcp.h
512a26
@@ -277,7 +277,8 @@ struct mptcp_subflow {
512a26
 
512a26
 typedef enum {
512a26
 	MPTCP_HMAC_NOT_SET = 0,
512a26
-	MPTCP_HMAC_SHA1 = 1,
512a26
+	/* this is either SHA1 for MPTCP v0 or sha256 for MPTCP v1 */
512a26
+	MPTCP_HMAC_SHA = 1,
512a26
 	MPTCP_HMAC_LAST
512a26
 } mptcp_hmac_algorithm_t;
512a26
 
512a26
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
512a26
index c4a9a6eb15..ca284604ed 100644
512a26
--- a/epan/dissectors/packet-tcp.c
512a26
+++ b/epan/dissectors/packet-tcp.c
512a26
@@ -271,6 +271,7 @@ static int hf_tcp_option_mptcp_subflow_seq_no = -1;
512a26
 static int hf_tcp_option_mptcp_data_lvl_len = -1;
512a26
 static int hf_tcp_option_mptcp_checksum = -1;
512a26
 static int hf_tcp_option_mptcp_ipver = -1;
512a26
+static int hf_tcp_option_mptcp_echo = -1;
512a26
 static int hf_tcp_option_mptcp_ipv4 = -1;
512a26
 static int hf_tcp_option_mptcp_ipv6 = -1;
512a26
 static int hf_tcp_option_mptcp_port = -1;
512a26
@@ -4776,33 +4777,32 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
             break;
512a26
 
512a26
         case TCPOPT_MPTCP_ADD_ADDR:
512a26
-            proto_tree_add_item(mptcp_tree,
512a26
-                            hf_tcp_option_mptcp_ipver, tvb, offset, 1, ENC_BIG_ENDIAN);
512a26
             ipver = tvb_get_guint8(tvb, offset) & 0x0F;
512a26
+            if (ipver == 4 || ipver == 6)
512a26
+                proto_tree_add_item(mptcp_tree,
512a26
+                            hf_tcp_option_mptcp_ipver, tvb, offset, 1, ENC_BIG_ENDIAN);
512a26
+            else
512a26
+                proto_tree_add_item(mptcp_tree,
512a26
+                            hf_tcp_option_mptcp_echo, tvb, offset, 1, ENC_BIG_ENDIAN);
512a26
             offset += 1;
512a26
 
512a26
             proto_tree_add_item(mptcp_tree,
512a26
                     hf_tcp_option_mptcp_address_id, tvb, offset, 1, ENC_BIG_ENDIAN);
512a26
             offset += 1;
512a26
 
512a26
-            switch (ipver) {
512a26
-                case 4:
512a26
-                    proto_tree_add_item(mptcp_tree,
512a26
+            if (optlen == 8 || optlen == 10 || optlen == 16 || optlen == 18) {
512a26
+                proto_tree_add_item(mptcp_tree,
512a26
                             hf_tcp_option_mptcp_ipv4, tvb, offset, 4, ENC_BIG_ENDIAN);
512a26
-                    offset += 4;
512a26
-                    break;
512a26
+                offset += 4;
512a26
+            }
512a26
 
512a26
-                case 6:
512a26
-                    proto_tree_add_item(mptcp_tree,
512a26
+            if (optlen == 20 || optlen == 22 || optlen == 28 || optlen == 30) {
512a26
+                proto_tree_add_item(mptcp_tree,
512a26
                             hf_tcp_option_mptcp_ipv6, tvb, offset, 16, ENC_NA);
512a26
-                    offset += 16;
512a26
-                    break;
512a26
-
512a26
-                default:
512a26
-                    break;
512a26
+                offset += 16;
512a26
             }
512a26
 
512a26
-            if (optlen % 4 == 2) {
512a26
+            if (optlen == 10 || optlen == 18 || optlen == 22 || optlen == 30) {
512a26
                 proto_tree_add_item(mptcp_tree,
512a26
                             hf_tcp_option_mptcp_port, tvb, offset, 2, ENC_BIG_ENDIAN);
512a26
                 offset += 2;
512a26
@@ -7303,6 +7303,10 @@ proto_register_tcp(void)
512a26
           { "IP version", "tcp.options.mptcp.ipver", FT_UINT8,
512a26
             BASE_DEC, NULL, 0x0F, NULL, HFILL}},
512a26
 
512a26
+        { &hf_tcp_option_mptcp_echo,
512a26
+          { "Echo", "tcp.options.mptcp.echo", FT_UINT8,
512a26
+            BASE_DEC, NULL, 0x01, NULL, HFILL}},
512a26
+
512a26
         { &hf_tcp_option_mptcp_ipv4,
512a26
           { "Advertised IPv4 Address", "tcp.options.mptcp.ipv4", FT_IPv4,
512a26
             BASE_NONE, NULL, 0x0, NULL, HFILL}},
512a26
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
512a26
index 6bc1915e82..b0ed652215 100644
512a26
--- a/epan/dissectors/packet-tcp.c
512a26
+++ b/epan/dissectors/packet-tcp.c
512a26
@@ -2152,13 +2152,19 @@ tcp_analyze_sequence_number(packet_info *pinfo, guint32 seq, guint32 ack, guint3
512a26
     &&  seq==tcpd->fwd->tcp_analyze_seq_info->nextseq
512a26
     &&  ack==tcpd->fwd->tcp_analyze_seq_info->lastack
512a26
     &&  (flags&(TH_SYN|TH_FIN|TH_RST))==0 ) {
512a26
-        tcpd->fwd->tcp_analyze_seq_info->dupacknum++;
512a26
-        if(!tcpd->ta) {
512a26
-            tcp_analyze_get_acked_struct(pinfo->num, seq, ack, TRUE, tcpd);
512a26
-        }
512a26
-        tcpd->ta->flags|=TCP_A_DUPLICATE_ACK;
512a26
-        tcpd->ta->dupack_num=tcpd->fwd->tcp_analyze_seq_info->dupacknum;
512a26
-        tcpd->ta->dupack_frame=tcpd->fwd->tcp_analyze_seq_info->lastnondupack;
512a26
+
512a26
+        /* MPTCP tolerates duplicate acks in some circumstances, see RFC 8684 4. */
512a26
+        if(tcpd->mptcp_analysis && (tcpd->mptcp_analysis->mp_operations!=tcpd->fwd->mp_operations)) {
512a26
+            /* just ignore this DUPLICATE ACK */
512a26
+        } else {
512a26
+            tcpd->fwd->tcp_analyze_seq_info->dupacknum++;
512a26
+            if(!tcpd->ta) {
512a26
+                tcp_analyze_get_acked_struct(pinfo->num, seq, ack, TRUE, tcpd);
512a26
+            }
512a26
+            tcpd->ta->flags|=TCP_A_DUPLICATE_ACK;
512a26
+            tcpd->ta->dupack_num=tcpd->fwd->tcp_analyze_seq_info->dupacknum;
512a26
+            tcpd->ta->dupack_frame=tcpd->fwd->tcp_analyze_seq_info->lastnondupack;
512a26
+       }
512a26
     }
512a26
 
512a26
 
512a26
@@ -2343,6 +2349,10 @@ finished_checking_retransmission_type:
512a26
     tcpd->fwd->tcp_analyze_seq_info->lastacktime.secs=pinfo->abs_ts.secs;
512a26
     tcpd->fwd->tcp_analyze_seq_info->lastacktime.nsecs=pinfo->abs_ts.nsecs;
512a26
 
512a26
+    /* remember the MPTCP operations if any */
512a26
+    if( tcpd->mptcp_analysis ) {
512a26
+        tcpd->fwd->mp_operations=tcpd->mptcp_analysis->mp_operations;
512a26
+    }
512a26
 
512a26
     /* if there were any flags set for this segment we need to remember them
512a26
      * we only remember the flags for the very last segment though.
512a26
@@ -2702,24 +2712,17 @@ mptcp_analysis_add_subflows(packet_info *pinfo _U_,  tvbuff_t *tvb,
512a26
     proto_tree *parent_tree, struct mptcp_analysis* mptcpd)
512a26
 {
512a26
     wmem_list_frame_t *it;
512a26
-    proto_tree *tree;
512a26
     proto_item *item;
512a26
 
512a26
-    item=proto_tree_add_item(parent_tree, hf_mptcp_analysis_subflows, tvb, 0, 0, ENC_NA);
512a26
-    PROTO_ITEM_SET_GENERATED(item);
512a26
-
512a26
-    tree=proto_item_add_subtree(item, ett_mptcp_analysis_subflows);
512a26
+    wmem_strbuf_t *val = wmem_strbuf_new(wmem_packet_scope(), "");
512a26
 
512a26
     /* for the analysis, we set each subflow tcp stream id */
512a26
     for(it = wmem_list_head(mptcpd->subflows); it != NULL; it = wmem_list_frame_next(it)) {
512a26
         struct tcp_analysis *sf = (struct tcp_analysis *)wmem_list_frame_data(it);
512a26
-        proto_item *subflow_item;
512a26
-        subflow_item=proto_tree_add_uint(tree, hf_mptcp_analysis_subflows_stream_id, tvb, 0, 0, sf->stream);
512a26
-        PROTO_ITEM_SET_HIDDEN(subflow_item);
512a26
-
512a26
-        proto_item_append_text(item, " %d", sf->stream);
512a26
+        wmem_strbuf_append_printf(val, "%u ", sf->stream);
512a26
     }
512a26
 
512a26
+    item = proto_tree_add_string(parent_tree, hf_mptcp_analysis_subflows, tvb, 0, 0, wmem_strbuf_get_str(val));
512a26
     PROTO_ITEM_SET_GENERATED(item);
512a26
 }
512a26
 
512a26
@@ -2962,6 +2965,42 @@ mptcp_add_analysis_subtree(packet_info *pinfo, tvbuff_t *tvb, proto_tree *parent
512a26
 
512a26
     PROTO_ITEM_SET_GENERATED(item);
512a26
 
512a26
+    /* store the TCP Options related to MPTCP then we will avoid false DUP ACKs later */
512a26
+    guint8 nbOptionsChanged = 0;
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x01))!=tcph->th_mptcp->mh_mpc) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x01;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x02))!=tcph->th_mptcp->mh_join) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x02;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x04))!=tcph->th_mptcp->mh_dss) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x04;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x08))!=tcph->th_mptcp->mh_add) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x08;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x10))!=tcph->th_mptcp->mh_remove) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x10;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x20))!=tcph->th_mptcp->mh_prio) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x20;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x40))!=tcph->th_mptcp->mh_fail) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x40;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    if((tcpd->mptcp_analysis->mp_operations&(0x80))!=tcph->th_mptcp->mh_fastclose) {
512a26
+        tcpd->mptcp_analysis->mp_operations |= 0x80;
512a26
+        nbOptionsChanged++;
512a26
+    }
512a26
+    /* we could track MPTCP option changes here, with nbOptionsChanged */
512a26
+
512a26
     item = proto_tree_add_uint(tree, hf_mptcp_stream, tvb, 0, 0, mptcpd->stream);
512a26
     PROTO_ITEM_SET_GENERATED(item);
512a26
 
512a26
@@ -4537,6 +4576,7 @@ get_or_create_mptcpd_from_key(struct tcp_analysis* tcpd, tcp_flow_t *fwd, guint8
512a26
 
512a26
     DISSECTOR_ASSERT(fwd->mptcp_subflow->meta);
512a26
 
512a26
+    fwd->mptcp_subflow->meta->version = version;
512a26
     fwd->mptcp_subflow->meta->key = key;
512a26
     fwd->mptcp_subflow->meta->static_flags |= MPTCP_META_HAS_KEY;
512a26
     fwd->mptcp_subflow->meta->base_dsn = expected_idsn;
512a26
@@ -4747,6 +4787,13 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
                     offset += 4;
512a26
 
512a26
                     mptcpd = mptcp_get_meta_from_token(tcpd, tcpd->rev, mph->mh_token);
512a26
+                    if (tcpd->fwd->mptcp_subflow->meta->version == 1) {
512a26
+                        mptcp_meta_flow_t *tmp = tcpd->fwd->mptcp_subflow->meta;
512a26
+
512a26
+                        /* if the negotiated version is v1 the first key was exchanged on SYN/ACK packet: we must swap the meta */
512a26
+                        tcpd->fwd->mptcp_subflow->meta = tcpd->rev->mptcp_subflow->meta;
512a26
+                        tcpd->rev->mptcp_subflow->meta = tmp;
512a26
+                    }
512a26
 
512a26
                     proto_tree_add_item_ret_uint(mptcp_tree, hf_tcp_option_mptcp_sender_rand, tvb, offset,
512a26
                             4, ENC_BIG_ENDIAN, &tcpd->fwd->mptcp_subflow->nonce);
512a26
@@ -4897,6 +4944,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
             break;
512a26
 
512a26
         case TCPOPT_MPTCP_ADD_ADDR:
512a26
+            mph->mh_add = TRUE;
512a26
             ipver = tvb_get_guint8(tvb, offset) & 0x0F;
512a26
             if (ipver == 4 || ipver == 6)
512a26
                 proto_tree_add_item(mptcp_tree,
512a26
@@ -4935,6 +4983,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
             break;
512a26
 
512a26
         case TCPOPT_MPTCP_REMOVE_ADDR:
512a26
+            mph->mh_remove = TRUE;
512a26
             item = proto_tree_add_uint(mptcp_tree, hf_mptcp_number_of_removed_addresses, tvb, start_offset+2,
512a26
                 1, optlen - 3);
512a26
             PROTO_ITEM_SET_GENERATED(item);
512a26
@@ -4947,6 +4996,7 @@ dissect_tcpopt_mptcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void*
512a26
             break;
512a26
 
512a26
         case TCPOPT_MPTCP_MP_PRIO:
512a26
+            mph->mh_prio = TRUE;
512a26
             proto_tree_add_bitmask(mptcp_tree, tvb, offset, hf_tcp_option_mptcp_flags,
512a26
                          ett_tcp_option_mptcp, tcp_option_mptcp_join_flags,
512a26
                          ENC_BIG_ENDIAN);
512a26
@@ -8040,7 +8090,7 @@ proto_register_tcp(void)
512a26
             "This was retransmitted on another subflow", HFILL }},
512a26
 
512a26
         { &hf_mptcp_analysis_subflows,
512a26
-          { "TCP subflow stream id(s):", "mptcp.analysis.subflows", FT_NONE, BASE_NONE, NULL, 0x0,
512a26
+          { "TCP subflow stream id(s)", "mptcp.analysis.subflows", FT_STRING, BASE_NONE, NULL, 0x0,
512a26
             "List all TCP connections mapped to this MPTCP connection", HFILL }},
512a26
 
512a26
         { &hf_mptcp_stream,
512a26
diff --git a/epan/dissectors/packet-tcp.h b/epan/dissectors/packet-tcp.h
512a26
index ac250d948e..21e6a61086 100644
512a26
--- a/epan/dissectors/packet-tcp.h
512a26
+++ b/epan/dissectors/packet-tcp.h
512a26
@@ -49,8 +49,11 @@ struct mptcpheader {
512a26
 	gboolean mh_mpc;         /* true if seen an mp_capable option */
512a26
 	gboolean mh_join;        /* true if seen an mp_join option */
512a26
 	gboolean mh_dss;         /* true if seen a dss */
512a26
-	gboolean mh_fastclose;   /* true if seen a fastclose */
512a26
+	gboolean mh_add;         /* true if seen an MP_ADD */
512a26
+	gboolean mh_remove;      /* true if seen an MP_REMOVE */
512a26
+	gboolean mh_prio;        /* true if seen an MP_PRIO */
512a26
 	gboolean mh_fail;        /* true if seen an MP_FAIL */
512a26
+	gboolean mh_fastclose;   /* true if seen a fastclose */
512a26
 
512a26
 	guint8  mh_capable_flags; /* to get hmac version for instance */
512a26
 	guint8  mh_dss_flags; /* data sequence signal flag */
512a26
@@ -332,6 +335,7 @@ typedef struct _tcp_flow_t {
512a26
 	gboolean valid_bif;     /* if lost pkts, disable BiF until ACK is recvd */
512a26
 	guint32 push_bytes_sent; /* bytes since the last PSH flag */
512a26
 	gboolean push_set_last; /* tracking last time PSH flag was set */
512a26
+	guint8 mp_operations; /* tracking of the MPTCP operations */
512a26
 
512a26
 	tcp_analyze_seq_flow_info_t* tcp_analyze_seq_info;
512a26
 
512a26
@@ -378,6 +382,9 @@ struct mptcp_analysis {
512a26
 
512a26
 	/* identifier of the tcp stream that saw the initial 3WHS with MP_CAPABLE option */
512a26
 	struct tcp_analysis *master;
512a26
+
512a26
+	/* Keep track of the last TCP operations seen in order to avoid false DUP ACKs */
512a26
+	guint8 mp_operations;
512a26
 };
512a26
 
512a26
 struct tcp_analysis {