]> The Tcpdump Group git mirrors - tcpdump/commitdiff
CVE-2017-13688/OLSR: Do bounds checks before we fetch data.
authorGuy Harris <[email protected]>
Thu, 24 Aug 2017 02:26:37 +0000 (19:26 -0700)
committerDenis Ovsienko <[email protected]>
Wed, 13 Sep 2017 11:25:44 +0000 (12:25 +0100)
While we're at it, clean up some other bounds checks, so we check that
we have a complete IPv4 message header if it's IPv4 and a complete IPv6
message header if it's IPv6.

This fixes a buffer over-read discovered by Bhargava Shastry,
SecT/TU Berlin.

Add tests using the capture files supplied by the reporter(s).

print-olsr.c
tests/TESTLIST
tests/olsr-oobr-1.out [new file with mode: 0644]
tests/olsr-oobr-1.pcap [new file with mode: 0644]
tests/olsr-oobr-2.out [new file with mode: 0644]
tests/olsr-oobr-2.pcap [new file with mode: 0644]

index 05e74bb8489c6909740782ef6a82a3fb7815410f..e67988dfd8cb65177c4cab5948ee0deb269dfc45 100644 (file)
@@ -359,10 +359,9 @@ olsr_print(netdissect_options *ndo,
         } msgptr;
         int msg_len_valid = 0;
 
-        ND_TCHECK2(*tptr, sizeof(struct olsr_msg4));
-
         if (is_ipv6)
         {
+            ND_TCHECK2(*tptr, sizeof(struct olsr_msg6));
             msgptr.v6 = (const struct olsr_msg6 *) tptr;
             msg_type = msgptr.v6->msg_type;
             msg_len = EXTRACT_16BITS(msgptr.v6->msg_len);
@@ -393,6 +392,7 @@ olsr_print(netdissect_options *ndo,
         }
         else /* (!is_ipv6) */
         {
+            ND_TCHECK2(*tptr, sizeof(struct olsr_msg4));
             msgptr.v4 = (const struct olsr_msg4 *) tptr;
             msg_type = msgptr.v4->msg_type;
             msg_len = EXTRACT_16BITS(msgptr.v4->msg_len);
@@ -616,22 +616,25 @@ olsr_print(netdissect_options *ndo,
 
         case OLSR_NAMESERVICE_MSG:
         {
-            u_int name_entries = EXTRACT_16BITS(msg_data+2);
-            u_int addr_size = 4;
-            int name_entries_valid = 0;
+            u_int name_entries;
+            u_int addr_size;
+            int name_entries_valid;
             u_int i;
 
+            if (msg_tlen < 4)
+                goto trunc;
+            ND_TCHECK2(*msg_data, 4);
+
+            name_entries = EXTRACT_16BITS(msg_data+2);
+            addr_size = 4;
             if (is_ipv6)
                 addr_size = 16;
 
+            name_entries_valid = 0;
             if ((name_entries > 0)
                     && ((name_entries * (4 + addr_size)) <= msg_tlen))
                 name_entries_valid = 1;
 
-            if (msg_tlen < 4)
-                goto trunc;
-            ND_TCHECK2(*msg_data, 4);
-
             ND_PRINT((ndo, "\n\t  Version %u, Entries %u%s",
                    EXTRACT_16BITS(msg_data),
                    name_entries, (name_entries_valid == 0) ? " (invalid)" : ""));
index 5866b2858f4fc58008658e8a5c5f4e64751603fa..7437ce763e5cd67bef053acb001745696ac39c52 100644 (file)
@@ -575,6 +575,8 @@ lldp_8023_mtu-oobr  lldp_8023_mtu-oobr.pcap lldp_8023_mtu-oobr.out  -v -c1
 bgp_vpn_rt-oobr        bgp_vpn_rt-oobr.pcap    bgp_vpn_rt-oobr.out     -v -c1
 cfm_sender_id-oobr     cfm_sender_id-oobr.pcap cfm_sender_id-oobr.out  -v -c1
 isis-extd-isreach-oobr isis-extd-isreach-oobr.pcap     isis-extd-isreach-oobr.out -v -c4
+olsr-oobr-1            olsr-oobr-1.pcap                olsr-oobr-1.out -v
+olsr-oobr-2            olsr-oobr-2.pcap                olsr-oobr-2.out -v
 
 # bad packets from Katie Holly
 mlppp-oobr             mlppp-oobr.pcap                 mlppp-oobr.out
diff --git a/tests/olsr-oobr-1.out b/tests/olsr-oobr-1.out
new file mode 100644 (file)
index 0000000..1da2318
--- /dev/null
@@ -0,0 +1,16 @@
+IP truncated-ip - 2315 bytes missing! (tos 0x0, ttl 18, id 4111, offset 0, flags [+, DF, rsvd], proto UDP (17), length 5373, bad cksum 8e7f (->9764)!)
+    15.251.128.192.698 > 193.192.186.0.122: OLSRv4, seq 0x0800, length 2056
+       Nameservice Message (0x82), originator 126.198.193.192, ttl 26, hop 145
+         vtime 0.062s, msg-seq 0x0008, length 127[|olsr]
+IP truncated-ip - 2315 bytes missing! (tos 0x0, ttl 18, id 4111, offset 0, flags [+, DF, rsvd], proto UDP (17), length 5373, bad cksum 8e7f (->975f)!)
+    16.0.128.192.698 > 193.192.186.0.122: OLSRv4, seq 0x0400, length 512
+       Powerinfo Message (0x80), originator 0.1.0.0, ttl 255, hop 255
+         vtime 0.500s, msg-seq 0x0000, length 9216 (invalid)
+IP truncated-ip - 2315 bytes missing! (tos 0x0, ttl 18, id 4111, offset 0, flags [+, DF, rsvd], proto UDP (17), length 5373, bad cksum 8e7f (->9764)!)
+    15.251.128.192.698 > 193.192.186.0.122: OLSRv4, seq 0x0800, length 2056
+       Nameservice Message (0x82), originator 126.198.193.192, ttl 26, hop 145
+         vtime 0.062s, msg-seq 0x0008, length 100[|olsr]
+IP truncated-ip - 2315 bytes missing! (tos 0x0, ttl 18, id 4111, offset 0, flags [+, DF, rsvd], proto UDP (17), length 5373, bad cksum 8e7f (->975f)!)
+    16.0.128.192.698 > 193.192.186.0.122: OLSRv4, seq 0x0800, length 2056
+       Nameservice Message (0x82), originator 126.198.193.192, ttl 26, hop 145
+         vtime 0.062s, msg-seq 0x5c50, length 185[|olsr]
diff --git a/tests/olsr-oobr-1.pcap b/tests/olsr-oobr-1.pcap
new file mode 100644 (file)
index 0000000..2abfe3e
Binary files /dev/null and b/tests/olsr-oobr-1.pcap differ
diff --git a/tests/olsr-oobr-2.out b/tests/olsr-oobr-2.out
new file mode 100644 (file)
index 0000000..c2d4a8f
--- /dev/null
@@ -0,0 +1,3 @@
+[|ether]
+[|ether]
+IP6 (flowlabel 0x06400, hlim 0, next-header UDP (17) payload length: 5401) 0:24::1e:a0a:141e.698 > 38fd:7f49:eaff:ffff:2025:7373:7562:2573.2: OLSRv6, seq 0x0201, length 5393[|olsr]
diff --git a/tests/olsr-oobr-2.pcap b/tests/olsr-oobr-2.pcap
new file mode 100644 (file)
index 0000000..0ccd79c
Binary files /dev/null and b/tests/olsr-oobr-2.pcap differ