Selaa lähdekoodia

In Protocol.read_pkt_line, assert the length of the data read matches the length prefix.

Gary van der Merwe 11 vuotta sitten
vanhempi
commit
b9c428522c
2 muutettua tiedostoa jossa 10 lisäystä ja 1 poistoa
  1. 5 1
      dulwich/protocol.py
  2. 5 0
      dulwich/tests/test_protocol.py

+ 5 - 1
dulwich/protocol.py

@@ -108,7 +108,11 @@ class Protocol(object):
                 return None
             if self.report_activity:
                 self.report_activity(size, 'read')
-            return read(size-4)
+            pkt_contents = read(size-4)
+            if len(pkt_contents) + 4 != size:
+                raise AssertionError('Length of pkt read {:04x} does not match length prefix {:04x}.'
+                                     .format(len(pkt_contents) + 4, size))
+            return pkt_contents
         except socket.error as e:
             raise GitProtocolError(e)
 

+ 5 - 0
dulwich/tests/test_protocol.py

@@ -82,6 +82,11 @@ class BaseProtocolTests(object):
         self.rin.seek(0)
         self.assertEqual(None, self.proto.read_pkt_line())
 
+    def test_read_pkt_line_wrong_size(self):
+        self.rin.write('0100too short')
+        self.rin.seek(0)
+        self.assertRaises(AssertionError, self.proto.read_pkt_line)
+
     def test_write_sideband(self):
         self.proto.write_sideband(3, 'bloe')
         self.assertEqual(self.rout.getvalue(), '0009\x03bloe')