Skip to content
Snippets Groups Projects
Commit df7e7c81 authored by Georgios Katsikas's avatar Georgios Katsikas
Browse files

Merge branch 'pr-p4-l2' into 'pr-p4-integration'

feat: P4 L2 simple service handler

See merge request !335
parents d83c04e1 694e9d98
No related branches found
No related tags found
1 merge request!335feat: P4 L2 simple service handler
Showing
with 872 additions and 3 deletions
...@@ -27,6 +27,7 @@ from .l3slice_ietfslice.L3SliceIETFSliceServiceHandler import L3NMSliceIETFSlice ...@@ -27,6 +27,7 @@ from .l3slice_ietfslice.L3SliceIETFSliceServiceHandler import L3NMSliceIETFSlice
from .microwave.MicrowaveServiceHandler import MicrowaveServiceHandler from .microwave.MicrowaveServiceHandler import MicrowaveServiceHandler
from .p4_dummy_l1.p4_dummy_l1_service_handler import P4DummyL1ServiceHandler from .p4_dummy_l1.p4_dummy_l1_service_handler import P4DummyL1ServiceHandler
from .p4_fabric_tna_int.p4_fabric_tna_int_service_handler import P4FabricINTServiceHandler from .p4_fabric_tna_int.p4_fabric_tna_int_service_handler import P4FabricINTServiceHandler
from .p4_fabric_tna_l2_simple.p4_fabric_tna_l2_simple_service_handler import P4FabricL2SimpleServiceHandler
from .tapi_tapi.TapiServiceHandler import TapiServiceHandler from .tapi_tapi.TapiServiceHandler import TapiServiceHandler
from .tapi_xr.TapiXrServiceHandler import TapiXrServiceHandler from .tapi_xr.TapiXrServiceHandler import TapiXrServiceHandler
from .e2e_orch.E2EOrchestratorServiceHandler import E2EOrchestratorServiceHandler from .e2e_orch.E2EOrchestratorServiceHandler import E2EOrchestratorServiceHandler
...@@ -118,6 +119,12 @@ SERVICE_HANDLERS = [ ...@@ -118,6 +119,12 @@ SERVICE_HANDLERS = [
FilterFieldEnum.DEVICE_DRIVER: DeviceDriverEnum.DEVICEDRIVER_P4, FilterFieldEnum.DEVICE_DRIVER: DeviceDriverEnum.DEVICEDRIVER_P4,
} }
]), ]),
(P4FabricL2SimpleServiceHandler, [
{
FilterFieldEnum.SERVICE_TYPE: ServiceTypeEnum.SERVICETYPE_L2NM,
FilterFieldEnum.DEVICE_DRIVER: DeviceDriverEnum.DEVICEDRIVER_P4,
}
]),
(L2NM_IETFL2VPN_ServiceHandler, [ (L2NM_IETFL2VPN_ServiceHandler, [
{ {
FilterFieldEnum.SERVICE_TYPE : ServiceTypeEnum.SERVICETYPE_L2NM, FilterFieldEnum.SERVICE_TYPE : ServiceTypeEnum.SERVICETYPE_L2NM,
......
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Common objects and methods for L2 forwarding based on the SD-Fabric dataplane model.
This dataplane covers both software based and hardware-based Stratum-enabled P4 switches,
such as the BMv2 software switch and Intel's Tofino/Tofino-2 switches.
SD-Fabric repo: https://github.com/stratum/fabric-tna
SD-Fabric docs: https://docs.sd-fabric.org/master/index.html
"""
import logging
from common.proto.context_pb2 import ConfigActionEnum
from service.service.service_handlers.p4_fabric_tna_commons.p4_fabric_tna_commons import *
LOGGER = logging.getLogger(__name__)
# L2 simple service handler settings
FORWARDING_LIST = "fwd_list"
HOST_MAC = "host_mac"
def rules_set_up_port_host(
port : int,
vlan_id : int,
action : ConfigActionEnum, # type: ignore
fwd_type=FORWARDING_TYPE_BRIDGING,
eth_type=ETHER_TYPE_IPV4):
# This is a host facing port
port_type = PORT_TYPE_HOST
return rules_set_up_port(
port=port,
port_type=port_type,
fwd_type=fwd_type,
vlan_id=vlan_id,
action=action,
eth_type=eth_type
)
def rules_set_up_port_switch(
port : int,
vlan_id : int,
action : ConfigActionEnum, # type: ignore
fwd_type=FORWARDING_TYPE_BRIDGING,
eth_type=ETHER_TYPE_IPV4):
# This is a switch facing port
port_type = PORT_TYPE_SWITCH
return rules_set_up_port(
port=port,
port_type=port_type,
fwd_type=fwd_type,
vlan_id=vlan_id,
action=action,
eth_type=eth_type
)
...@@ -125,6 +125,20 @@ bash src/tests/p4-fabric-tna/run_test_02b_sbi_deprovision_int_l2_l3_acl.sh ...@@ -125,6 +125,20 @@ bash src/tests/p4-fabric-tna/run_test_02b_sbi_deprovision_int_l2_l3_acl.sh
To avoid interacting with the switch using low-level P4 rules (via the SBI), we created modular network services, which allow users to easily provision L2, L3, ACL, and INT network functions. To avoid interacting with the switch using low-level P4 rules (via the SBI), we created modular network services, which allow users to easily provision L2, L3, ACL, and INT network functions.
These services require users to define the service endpoints as well as some high-level service configuration, while leaving the rest of complexity to tailored service handlers that interact with the SBI on behalf of the user. These services require users to define the service endpoints as well as some high-level service configuration, while leaving the rest of complexity to tailored service handlers that interact with the SBI on behalf of the user.
#### Provision L2 network service via the Service API
```shell
cd ~/tfs-ctrl/
bash src/tests/p4-fabric-tna/run_test_03a_service_provision_l2.sh
```
#### Deprovision L2 network service via the Service API
```shell
cd ~/tfs-ctrl/
bash src/tests/p4-fabric-tna/run_test_03b_service_deprovision_l2.sh
```
#### Provision INT service via the Service API #### Provision INT service via the Service API
```shell ```shell
......
{
"services": [
{
"service_id": {
"context_id": {"context_uuid": {"uuid": "admin"}}, "service_uuid": {"uuid": "p4-service-l2"}
},
"name": "p4-service-l2",
"service_type": "SERVICETYPE_L2NM",
"service_status": {"service_status": "SERVICESTATUS_PLANNED"},
"service_endpoint_ids": [
{
"device_id": {"device_uuid": {"uuid": "p4-sw1"}},
"endpoint_uuid": {"uuid": "1"}
},
{
"device_id": {"device_uuid": {"uuid": "p4-sw1"}},
"endpoint_uuid": {"uuid": "2"}
}
],
"service_config": {
"config_rules": [
{
"action": "CONFIGACTION_SET",
"custom": {
"resource_key": "/settings",
"resource_value": {
"switch_info": {
"p4-sw1": {
"arch": "v1model",
"dpid": 1,
"port_list": [
{
"port_id": 1,
"port_type": "host",
"vlan_id": 4094
},
{
"port_id": 2,
"port_type": "host",
"vlan_id": 4094
}
],
"fwd_list": [
{
"port_id": 1,
"host_mac": "fa:16:3e:75:9c:e5"
},
{
"port_id": 2,
"host_mac": "fa:16:3e:e2:af:28"
}
]
}
}
}
}
}
]
},
"service_constraints": []
}
]
}
#!/bin/bash
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source tfs_runtime_env_vars.sh
python3 -m pytest --verbose src/tests/p4-fabric-tna/tests-service/test_functional_service_provision_l2.py
#!/bin/bash
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
source tfs_runtime_env_vars.sh
python3 -m pytest --verbose src/tests/p4-fabric-tna/tests-service/test_functional_service_deprovision_l2.py
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from common.proto.context_pb2 import ServiceId, ServiceStatusEnum, ServiceTypeEnum
from common.tools.grpc.Tools import grpc_message_to_json_string
from common.tools.object_factory.Service import json_service_id
from context.client.ContextClient import ContextClient
from service.client.ServiceClient import ServiceClient
from tests.Fixtures import context_client, service_client # pylint: disable=unused-import
from tests.tools.test_tools_p4 import *
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)
def test_service_deletion_l2(
context_client : ContextClient, # pylint: disable=redefined-outer-name
service_client : ServiceClient # pylint: disable=redefined-outer-name
) -> None:
# Get the current number of devices
response = context_client.ListDevices(ADMIN_CONTEXT_ID)
LOGGER.warning('Devices[{:d}] = {:s}'.format(len(response.devices), grpc_message_to_json_string(response)))
# Total devices
dev_nb = len(response.devices)
assert dev_nb == DEV_NB
# P4 devices
p4_dev_nb = identify_number_of_p4_devices(response.devices)
assert p4_dev_nb == P4_DEV_NB
# Get the current number of rules in the P4 devices
p4_rules_before_deletion = get_number_of_rules(response.devices)
# Get the current number of services
response = context_client.ListServices(ADMIN_CONTEXT_ID)
services_nb_before_deletion = len(response.services)
assert verify_active_service_type(response.services, ServiceTypeEnum.SERVICETYPE_L2NM)
for service in response.services:
# Ignore services of other types
if service.service_type != ServiceTypeEnum.SERVICETYPE_L2NM:
continue
service_id = service.service_id
assert service_id
service_uuid = service_id.service_uuid.uuid
context_uuid = service_id.context_id.context_uuid.uuid
assert service.service_status.service_status == ServiceStatusEnum.SERVICESTATUS_ACTIVE
# Delete L2 service
service_client.DeleteService(ServiceId(**json_service_id(service_uuid, json_context_id(context_uuid))))
# Get an updated view of the services
response = context_client.ListServices(ADMIN_CONTEXT_ID)
services_nb_after_deletion = len(response.services)
assert services_nb_after_deletion == services_nb_before_deletion - 1, "Exactly one new service must be deleted"
# Get an updated view of the devices
response = context_client.ListDevices(ADMIN_CONTEXT_ID)
p4_rules_after_deletion = get_number_of_rules(response.devices)
rules_diff = p4_rules_before_deletion - p4_rules_after_deletion
assert p4_rules_after_deletion < p4_rules_before_deletion, "L2 service must contain some rules"
assert rules_diff == P4_DEV_NB * L2_RULES, "L2 service must contain {} rules per device".format(L2_RULES)
# Copyright 2022-2024 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from common.proto.context_pb2 import ServiceStatusEnum, ServiceTypeEnum
from common.tools.descriptor.Loader import DescriptorLoader, check_descriptor_load_results
from common.tools.grpc.Tools import grpc_message_to_json_string
from context.client.ContextClient import ContextClient
from device.client.DeviceClient import DeviceClient
from service.client.ServiceClient import ServiceClient
from tests.Fixtures import context_client, device_client, service_client # pylint: disable=unused-import
from tests.tools.test_tools_p4 import *
LOGGER = logging.getLogger(__name__)
LOGGER.setLevel(logging.DEBUG)
def test_service_creation_l2(
context_client : ContextClient, # pylint: disable=redefined-outer-name
device_client : DeviceClient, # pylint: disable=redefined-outer-name
service_client : ServiceClient # pylint: disable=redefined-outer-name
) -> None:
# Get the current number of services
response = context_client.ListServices(ADMIN_CONTEXT_ID)
services_nb_before = len(response.services)
# Get the current number of devices
response = context_client.ListDevices(ADMIN_CONTEXT_ID)
LOGGER.warning('Devices[{:d}] = {:s}'.format(len(response.devices), grpc_message_to_json_string(response)))
# Total devices
dev_nb = len(response.devices)
assert dev_nb == DEV_NB
# P4 devices
p4_dev_nb = identify_number_of_p4_devices(response.devices)
assert p4_dev_nb == P4_DEV_NB
# Get the current number of rules in the P4 devices
p4_rules_before = get_number_of_rules(response.devices)
# Load service
descriptor_loader = DescriptorLoader(
descriptors_file=DESC_FILE_SERVICE_CREATE_L2_SIMPLE,
context_client=context_client, device_client=device_client, service_client=service_client
)
results = descriptor_loader.process()
check_descriptor_load_results(results, descriptor_loader)
# Get an updated view of the services
response = context_client.ListServices(ADMIN_CONTEXT_ID)
services_nb_after = len(response.services)
assert services_nb_after == services_nb_before + 1, "Exactly one new service must be in place"
assert verify_active_service_type(response.services, ServiceTypeEnum.SERVICETYPE_L2NM)
# Get an updated view of the devices
response = context_client.ListDevices(ADMIN_CONTEXT_ID)
p4_rules_after = get_number_of_rules(response.devices)
rules_diff = p4_rules_after - p4_rules_before
assert p4_rules_after > p4_rules_before, "L2 service must install some rules"
assert rules_diff == P4_DEV_NB * L2_RULES, "L2 service must install {} rules per device".format(L2_RULES)
...@@ -96,9 +96,9 @@ DESC_FILE_SERVICE_CREATE_INT = os.path.join(TEST_PATH, 'service-create-int.json' ...@@ -96,9 +96,9 @@ DESC_FILE_SERVICE_CREATE_INT = os.path.join(TEST_PATH, 'service-create-int.json'
assert os.path.exists(DESC_FILE_SERVICE_CREATE_INT),\ assert os.path.exists(DESC_FILE_SERVICE_CREATE_INT),\
"Invalid path to the SD-Fabric INT service descriptor" "Invalid path to the SD-Fabric INT service descriptor"
DESC_FILE_SERVICE_CREATE_L2 = os.path.join(TEST_PATH, 'service-create-l2.json') DESC_FILE_SERVICE_CREATE_L2_SIMPLE = os.path.join(TEST_PATH, 'service-create-l2-simple.json')
assert os.path.exists(DESC_FILE_SERVICE_CREATE_L2),\ assert os.path.exists(DESC_FILE_SERVICE_CREATE_L2_SIMPLE),\
"Invalid path to the SD-Fabric L2 service descriptor" "Invalid path to the SD-Fabric L2 simple service descriptor"
DESC_FILE_SERVICE_CREATE_L3 = os.path.join(TEST_PATH, 'service-create-l3.json') DESC_FILE_SERVICE_CREATE_L3 = os.path.join(TEST_PATH, 'service-create-l3.json')
assert os.path.exists(DESC_FILE_SERVICE_CREATE_L3),\ assert os.path.exists(DESC_FILE_SERVICE_CREATE_L3),\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment