Merge "ofagent: Fix a possible crash in arp responder"

This commit is contained in:
Jenkins 2014-10-15 03:46:39 +00:00 committed by Gerrit Code Review
commit 0d73f552ff
2 changed files with 12 additions and 1 deletions

View File

@ -143,7 +143,13 @@ class ArpLib(object):
ofp = datapath.ofproto
port = msg.match['in_port']
metadata = msg.match.get('metadata')
pkt = packet.Packet(msg.data)
# NOTE(yamamoto): Ryu packet library can raise various exceptions
# on a corrupted packet.
try:
pkt = packet.Packet(msg.data)
except Exception as e:
LOG.info(_LI("Unparsable packet: got exception %s"), e)
return
LOG.info(_LI("packet-in dpid %(dpid)s in_port %(port)s pkt %(pkt)s"),
{'dpid': dpid_lib.dpid_to_str(datapath.id),
'port': port, 'pkt': pkt})

View File

@ -289,6 +289,11 @@ class TestArpLib(OFAAgentTestCase):
self._fake_get_protocol_arp = False
self._test_packet_in_handler_drop()
def test_packet_in_handler_corrupted(self):
mock.patch('ryu.lib.packet.packet.Packet',
side_effect=ValueError).start()
self._test_packet_in_handler_drop()
def test_packet_in_handler_unknown_network(self):
self.arplib._arp_tbl = {
self.nets[0].net: {self.nets[0].ip: self.nets[0].mac}}