2017-06-06 14:18:55 +03:00
|
|
|
from scapy.layers.l2 import Dot1Q
|
2016-10-11 11:47:09 +02:00
|
|
|
from abc import abstractmethod, ABCMeta
|
|
|
|
from vpp_interface import VppInterface
|
2016-11-04 11:11:44 +01:00
|
|
|
from vpp_pg_interface import VppPGInterface
|
2017-06-06 14:18:55 +03:00
|
|
|
from vpp_papi_provider import L2_VTR_OP
|
2016-10-11 11:47:09 +02:00
|
|
|
|
|
|
|
|
2016-11-04 11:11:44 +01:00
|
|
|
class VppSubInterface(VppPGInterface):
|
2016-10-11 11:47:09 +02:00
|
|
|
__metaclass__ = ABCMeta
|
|
|
|
|
|
|
|
@property
|
|
|
|
def parent(self):
|
|
|
|
"""Parent interface for this sub-interface"""
|
|
|
|
return self._parent
|
|
|
|
|
|
|
|
@property
|
|
|
|
def sub_id(self):
|
|
|
|
"""Sub-interface ID"""
|
|
|
|
return self._sub_id
|
|
|
|
|
2017-06-06 14:18:55 +03:00
|
|
|
@property
|
|
|
|
def tag1(self):
|
|
|
|
return self._tag1
|
|
|
|
|
|
|
|
@property
|
|
|
|
def tag2(self):
|
|
|
|
return self._tag2
|
|
|
|
|
|
|
|
@property
|
|
|
|
def vtr(self):
|
|
|
|
return self._vtr
|
|
|
|
|
2016-10-11 11:47:09 +02:00
|
|
|
def __init__(self, test, parent, sub_id):
|
2016-11-23 15:27:17 +01:00
|
|
|
VppInterface.__init__(self, test)
|
2016-10-11 11:47:09 +02:00
|
|
|
self._parent = parent
|
|
|
|
self._parent.add_sub_if(self)
|
|
|
|
self._sub_id = sub_id
|
2017-06-06 14:18:55 +03:00
|
|
|
self.DOT1AD_TYPE = 0x88A8
|
|
|
|
self.DOT1Q_TYPE = 0x8100
|
2016-10-11 11:47:09 +02:00
|
|
|
|
2018-06-24 22:49:33 +02:00
|
|
|
def set_sw_if_index(self, sw_if_index):
|
|
|
|
super(VppSubInterface, self).set_sw_if_index(sw_if_index)
|
|
|
|
self.set_vtr(L2_VTR_OP.L2_DISABLED)
|
|
|
|
|
2016-10-11 11:47:09 +02:00
|
|
|
@abstractmethod
|
|
|
|
def create_arp_req(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def create_ndp_req(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@abstractmethod
|
|
|
|
def add_dot1_layer(self, pkt):
|
|
|
|
pass
|
|
|
|
|
2016-11-15 09:46:51 +00:00
|
|
|
def remove_vpp_config(self):
|
2018-06-24 22:49:33 +02:00
|
|
|
self.test.vapi.delete_subif(self.sw_if_index)
|
2016-11-15 09:46:51 +00:00
|
|
|
|
2017-06-06 14:18:55 +03:00
|
|
|
def _add_tag(self, packet, vlan, tag_type):
|
|
|
|
payload = packet.payload
|
|
|
|
inner_type = packet.type
|
|
|
|
packet.remove_payload()
|
|
|
|
packet.add_payload(Dot1Q(vlan=vlan) / payload)
|
|
|
|
packet.payload.type = inner_type
|
|
|
|
packet.payload.vlan = vlan
|
|
|
|
packet.type = tag_type
|
|
|
|
return packet
|
|
|
|
|
|
|
|
def _remove_tag(self, packet, vlan=None, tag_type=None):
|
|
|
|
if tag_type:
|
|
|
|
self.test.instance().assertEqual(packet.type, tag_type)
|
|
|
|
|
|
|
|
payload = packet.payload
|
|
|
|
if vlan:
|
|
|
|
self.test.instance().assertEqual(payload.vlan, vlan)
|
|
|
|
inner_type = payload.type
|
|
|
|
payload = payload.payload
|
|
|
|
packet.remove_payload()
|
|
|
|
packet.add_payload(payload)
|
|
|
|
packet.type = inner_type
|
|
|
|
return packet
|
|
|
|
|
|
|
|
def add_dot1q_layer(self, packet, vlan):
|
|
|
|
return self._add_tag(packet, vlan, self.DOT1Q_TYPE)
|
|
|
|
|
|
|
|
def add_dot1ad_layer(self, packet, outer, inner):
|
|
|
|
p = self._add_tag(packet, inner, self.DOT1Q_TYPE)
|
|
|
|
return self._add_tag(p, outer, self.DOT1AD_TYPE)
|
|
|
|
|
|
|
|
def remove_dot1q_layer(self, packet, vlan=None):
|
|
|
|
return self._remove_tag(packet, vlan, self.DOT1Q_TYPE)
|
|
|
|
|
|
|
|
def remove_dot1ad_layer(self, packet, outer=None, inner=None):
|
|
|
|
p = self._remove_tag(packet, outer, self.DOT1AD_TYPE)
|
|
|
|
return self._remove_tag(p, inner, self.DOT1Q_TYPE)
|
|
|
|
|
|
|
|
def set_vtr(self, vtr, push1q=0, tag=None, inner=None, outer=None):
|
|
|
|
self._tag1 = 0
|
|
|
|
self._tag2 = 0
|
|
|
|
self._push1q = 0
|
|
|
|
|
|
|
|
if (vtr == L2_VTR_OP.L2_PUSH_1 or
|
|
|
|
vtr == L2_VTR_OP.L2_TRANSLATE_1_1 or
|
|
|
|
vtr == L2_VTR_OP.L2_TRANSLATE_2_1):
|
|
|
|
self._tag1 = tag
|
|
|
|
self._push1q = push1q
|
|
|
|
if (vtr == L2_VTR_OP.L2_PUSH_2 or
|
|
|
|
vtr == L2_VTR_OP.L2_TRANSLATE_1_2 or
|
|
|
|
vtr == L2_VTR_OP.L2_TRANSLATE_2_2):
|
|
|
|
self._tag1 = outer
|
|
|
|
self._tag2 = inner
|
|
|
|
self._push1q = push1q
|
|
|
|
|
|
|
|
self.test.vapi.sw_interface_set_l2_tag_rewrite(
|
|
|
|
self.sw_if_index, vtr, push=self._push1q,
|
|
|
|
tag1=self._tag1, tag2=self._tag2)
|
|
|
|
self._vtr = vtr
|
|
|
|
|
2016-10-11 11:47:09 +02:00
|
|
|
|
|
|
|
class VppDot1QSubint(VppSubInterface):
|
|
|
|
|
|
|
|
@property
|
|
|
|
def vlan(self):
|
|
|
|
"""VLAN tag"""
|
|
|
|
return self._vlan
|
|
|
|
|
|
|
|
def __init__(self, test, parent, sub_id, vlan=None):
|
2018-06-24 22:49:33 +02:00
|
|
|
super(VppDot1QSubint, self).__init__(test, parent, sub_id)
|
2016-10-11 11:47:09 +02:00
|
|
|
if vlan is None:
|
|
|
|
vlan = sub_id
|
|
|
|
self._vlan = vlan
|
2016-11-23 15:27:17 +01:00
|
|
|
r = test.vapi.create_vlan_subif(parent.sw_if_index, vlan)
|
2018-06-24 22:49:33 +02:00
|
|
|
self.set_sw_if_index(r.sw_if_index)
|
2016-10-11 11:47:09 +02:00
|
|
|
|
|
|
|
def create_arp_req(self):
|
2016-11-04 11:11:44 +01:00
|
|
|
packet = VppPGInterface.create_arp_req(self)
|
2016-10-11 11:47:09 +02:00
|
|
|
return self.add_dot1_layer(packet)
|
|
|
|
|
|
|
|
def create_ndp_req(self):
|
2016-11-04 11:11:44 +01:00
|
|
|
packet = VppPGInterface.create_ndp_req(self)
|
2016-10-11 11:47:09 +02:00
|
|
|
return self.add_dot1_layer(packet)
|
|
|
|
|
2017-06-06 14:18:55 +03:00
|
|
|
# called before sending packet
|
2016-10-11 11:47:09 +02:00
|
|
|
def add_dot1_layer(self, packet):
|
2017-06-06 14:18:55 +03:00
|
|
|
return self.add_dot1q_layer(packet, self.vlan)
|
2016-10-11 11:47:09 +02:00
|
|
|
|
2017-06-06 14:18:55 +03:00
|
|
|
# called on received packet to "reverse" the add call
|
2016-10-11 11:47:09 +02:00
|
|
|
def remove_dot1_layer(self, packet):
|
2017-06-06 14:18:55 +03:00
|
|
|
return self.remove_dot1q_layer(packet, self.vlan)
|
2016-10-11 11:47:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VppDot1ADSubint(VppSubInterface):
|
|
|
|
|
|
|
|
@property
|
|
|
|
def outer_vlan(self):
|
|
|
|
"""Outer VLAN tag"""
|
|
|
|
return self._outer_vlan
|
|
|
|
|
|
|
|
@property
|
|
|
|
def inner_vlan(self):
|
|
|
|
"""Inner VLAN tag"""
|
|
|
|
return self._inner_vlan
|
|
|
|
|
|
|
|
def __init__(self, test, parent, sub_id, outer_vlan, inner_vlan):
|
2018-06-24 22:49:33 +02:00
|
|
|
super(VppDot1ADSubint, self).__init__(test, parent, sub_id)
|
2016-11-23 15:27:17 +01:00
|
|
|
r = test.vapi.create_subif(parent.sw_if_index, sub_id, outer_vlan,
|
|
|
|
inner_vlan, dot1ad=1, two_tags=1,
|
|
|
|
exact_match=1)
|
2018-06-24 22:49:33 +02:00
|
|
|
self.set_sw_if_index(r.sw_if_index)
|
2016-10-11 11:47:09 +02:00
|
|
|
self._outer_vlan = outer_vlan
|
|
|
|
self._inner_vlan = inner_vlan
|
|
|
|
|
|
|
|
def create_arp_req(self):
|
2016-11-04 11:11:44 +01:00
|
|
|
packet = VppPGInterface.create_arp_req(self)
|
2016-10-11 11:47:09 +02:00
|
|
|
return self.add_dot1_layer(packet)
|
|
|
|
|
|
|
|
def create_ndp_req(self):
|
2016-11-04 11:11:44 +01:00
|
|
|
packet = VppPGInterface.create_ndp_req(self)
|
2016-10-11 11:47:09 +02:00
|
|
|
return self.add_dot1_layer(packet)
|
|
|
|
|
|
|
|
def add_dot1_layer(self, packet):
|
2017-06-06 14:18:55 +03:00
|
|
|
return self.add_dot1ad_layer(packet, self.outer_vlan, self.inner_vlan)
|
2016-10-11 11:47:09 +02:00
|
|
|
|
|
|
|
def remove_dot1_layer(self, packet):
|
2017-06-06 14:18:55 +03:00
|
|
|
return self.remove_dot1ad_layer(packet, self.outer_vlan,
|
|
|
|
self.inner_vlan)
|
2017-06-20 14:00:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
class VppP2PSubint(VppSubInterface):
|
|
|
|
|
|
|
|
def __init__(self, test, parent, sub_id, remote_mac):
|
2018-06-24 22:49:33 +02:00
|
|
|
super(VppP2PSubint, self).__init__(test, parent, sub_id)
|
2017-06-20 14:00:26 +02:00
|
|
|
r = test.vapi.create_p2pethernet_subif(parent.sw_if_index,
|
|
|
|
remote_mac, sub_id)
|
2018-06-24 22:49:33 +02:00
|
|
|
self.set_sw_if_index(r.sw_if_index)
|
2018-03-16 03:22:39 -07:00
|
|
|
self.parent_sw_if_index = parent.sw_if_index
|
|
|
|
self.p2p_remote_mac = remote_mac
|
2017-06-20 14:00:26 +02:00
|
|
|
|
|
|
|
def add_dot1_layer(self, packet):
|
|
|
|
return packet
|
|
|
|
|
|
|
|
def remove_dot1_layer(self, packet):
|
|
|
|
return packet
|
|
|
|
|
|
|
|
def create_arp_req(self):
|
|
|
|
packet = VppPGInterface.create_arp_req(self)
|
|
|
|
return packet
|
|
|
|
|
|
|
|
def create_ndp_req(self):
|
|
|
|
packet = VppPGInterface.create_ndp_req(self)
|
|
|
|
return packet
|