use of org.onosproject.net.pi.runtime.PiAction in project onos by opennetworkinglab.
the class ForwardingObjectiveTranslatorTest method testMpls.
@Test
public void testMpls() throws FabricPipelinerException {
TrafficSelector selector = DefaultTrafficSelector.builder().matchEthType(Ethernet.MPLS_UNICAST).matchMplsLabel(MPLS_10).matchMplsBos(true).build();
TrafficSelector expectedSelector = DefaultTrafficSelector.builder().matchMplsLabel(MPLS_10).build();
PiActionParam nextIdParam = new PiActionParam(FabricConstants.NEXT_ID, NEXT_ID_1);
PiAction setNextIdAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_FORWARDING_POP_MPLS_AND_NEXT).withParameter(nextIdParam).build();
TrafficTreatment treatment = DefaultTrafficTreatment.builder().piTableAction(setNextIdAction).build();
testSpecificForward(FabricConstants.FABRIC_INGRESS_FORWARDING_MPLS, expectedSelector, selector, NEXT_ID_1, treatment);
}
use of org.onosproject.net.pi.runtime.PiAction in project onos by opennetworkinglab.
the class ForwardingObjectiveTranslatorTest method testAclDhcp.
/**
* Test versatile flag of forwarding objective with DHCP match.
*/
@Test
public void testAclDhcp() {
TrafficTreatment treatment = DefaultTrafficTreatment.builder().wipeDeferred().punt().build();
// DHCP
TrafficSelector selector = DefaultTrafficSelector.builder().matchEthType(Ethernet.TYPE_IPV4).matchIPProtocol(IPv4.PROTOCOL_UDP).matchUdpSrc(TpPort.tpPort(UDP.DHCP_CLIENT_PORT)).matchUdpDst(TpPort.tpPort(UDP.DHCP_SERVER_PORT)).build();
ForwardingObjective fwd = DefaultForwardingObjective.builder().withSelector(selector).withPriority(PRIORITY).fromApp(APP_ID).makePermanent().withFlag(ForwardingObjective.Flag.VERSATILE).withTreatment(treatment).add();
ObjectiveTranslation result = translator.translate(fwd);
List<FlowRule> flowRulesInstalled = (List<FlowRule>) result.flowRules();
List<GroupDescription> groupsInstalled = (List<GroupDescription>) result.groups();
assertEquals(1, flowRulesInstalled.size());
assertTrue(groupsInstalled.isEmpty());
FlowRule actualFlowRule = flowRulesInstalled.get(0);
PiAction piAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_ACL_PUNT_TO_CPU).build();
FlowRule expectedFlowRule = DefaultFlowRule.builder().forDevice(DEVICE_ID).forTable(FabricConstants.FABRIC_INGRESS_ACL_ACL).withPriority(PRIORITY).makePermanent().withSelector(selector).withTreatment(DefaultTrafficTreatment.builder().piTableAction(piAction).build()).fromApp(APP_ID).build();
assertTrue(expectedFlowRule.exactMatch(actualFlowRule));
}
use of org.onosproject.net.pi.runtime.PiAction in project onos by opennetworkinglab.
the class ForwardingObjectiveTranslatorTest method testAclNext.
/**
* Test versatile flag of forwarding objective with next step.
*/
@Test
public void testAclNext() {
// ACL 8-tuples
TrafficSelector selector = DefaultTrafficSelector.builder().matchEthType(Ethernet.TYPE_IPV4).matchIPDst(IPV4_UNICAST_ADDR).build();
ForwardingObjective fwd = DefaultForwardingObjective.builder().withSelector(selector).withPriority(PRIORITY).fromApp(APP_ID).makePermanent().withFlag(ForwardingObjective.Flag.VERSATILE).nextStep(NEXT_ID_1).add();
ObjectiveTranslation result = translator.translate(fwd);
List<FlowRule> flowRulesInstalled = (List<FlowRule>) result.flowRules();
List<GroupDescription> groupsInstalled = (List<GroupDescription>) result.groups();
assertEquals(1, flowRulesInstalled.size());
assertTrue(groupsInstalled.isEmpty());
FlowRule actualFlowRule = flowRulesInstalled.get(0);
PiAction piAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_ACL_SET_NEXT_ID_ACL).withParameter(new PiActionParam(FabricConstants.NEXT_ID, NEXT_ID_1)).build();
FlowRule expectedFlowRule = DefaultFlowRule.builder().forDevice(DEVICE_ID).forTable(FabricConstants.FABRIC_INGRESS_ACL_ACL).withPriority(PRIORITY).makePermanent().withSelector(selector).withTreatment(DefaultTrafficTreatment.builder().piTableAction(piAction).build()).fromApp(APP_ID).build();
assertTrue(expectedFlowRule.exactMatch(actualFlowRule));
}
use of org.onosproject.net.pi.runtime.PiAction in project onos by opennetworkinglab.
the class ForwardingObjectiveTranslator method aclRule.
private void aclRule(ForwardingObjective obj, ObjectiveTranslation.Builder resultBuilder) throws FabricPipelinerException {
if (obj.nextId() == null && obj.treatment() != null) {
final TrafficTreatment treatment = obj.treatment();
final PortNumber outPort = outputPort(treatment);
if (outPort != null && outPort.equals(PortNumber.CONTROLLER) && treatment.allInstructions().size() == 1) {
final PiAction aclAction;
if (treatment.clearedDeferred()) {
aclAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_ACL_PUNT_TO_CPU).build();
} else {
// Action is SET_CLONE_SESSION_ID
if (obj.op() == Objective.Operation.ADD) {
// Action is ADD, create clone group
final DefaultGroupDescription cloneGroup = createCloneGroup(obj.appId(), CLONE_TO_CPU_ID, outPort);
resultBuilder.addGroup(cloneGroup);
}
aclAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_ACL_SET_CLONE_SESSION_ID).withParameter(new PiActionParam(FabricConstants.CLONE_ID, CLONE_TO_CPU_ID)).build();
}
final TrafficTreatment piTreatment = DefaultTrafficTreatment.builder().piTableAction(aclAction).build();
resultBuilder.addFlowRule(flowRule(obj, FabricConstants.FABRIC_INGRESS_ACL_ACL, obj.selector(), piTreatment));
return;
}
}
TrafficSelector.Builder selectorBuilder = DefaultTrafficSelector.builder(obj.selector());
// Meta are used to signal the port type which can be edge or infra
Byte portType = portType(obj);
if (portType != null && !isSrMetadataSet(obj, PAIR_PORT)) {
if (portType == PORT_TYPE_EDGE || portType == PORT_TYPE_INFRA) {
selectorBuilder.matchPi(PiCriterion.builder().matchTernary(FabricConstants.HDR_PORT_TYPE, (long) portType, PORT_TYPE_MASK).build());
} else {
throw new FabricPipelinerException(format("Port type '%s' is not allowed for table '%s'", portType, FabricConstants.FABRIC_INGRESS_FILTERING_INGRESS_PORT_VLAN), ObjectiveError.UNSUPPORTED);
}
}
resultBuilder.addFlowRule(flowRule(obj, FabricConstants.FABRIC_INGRESS_ACL_ACL, selectorBuilder.build()));
}
use of org.onosproject.net.pi.runtime.PiAction in project onos by opennetworkinglab.
the class NextObjectiveTranslatorTest method testSimpleOutputWithVlanTranslation.
/**
* Test program set vlan and output rule for Simple table.
*/
@Test
public void testSimpleOutputWithVlanTranslation() throws FabricPipelinerException {
TrafficTreatment treatment = DefaultTrafficTreatment.builder().setVlanId(VLAN_100).setOutput(PORT_1).build();
PiAction piAction = PiAction.builder().withId(FabricConstants.FABRIC_INGRESS_NEXT_OUTPUT_SIMPLE).withParameter(new PiActionParam(FabricConstants.PORT_NUM, PORT_1.toLong())).build();
testSimple(treatment, piAction);
}
Aggregations