Saurav Das
Committed by Ray Milkey

Fixing emulated ofdpa in cpqd switches. Due to cpqd bugs in dealing with Vlans a…

…nd MPLS labels simultaneously,
we cannot emulate correct behavior in the same driver. This checkin separates the emulation, with one
driver meant for MPLS with untagged packets, and the other meant for untagged/tagged VLAN packets without MPLS.

Change-Id: Ia6112f4d26c7b32c93e1db2e9b1ae4673c553d87
1 +/*
2 + * Copyright 2015 Open Networking Laboratory
3 + *
4 + * Licensed under the Apache License, Version 2.0 (the "License");
5 + * you may not use this file except in compliance with the License.
6 + * You may obtain a copy of the License at
7 + *
8 + * http://www.apache.org/licenses/LICENSE-2.0
9 + *
10 + * Unless required by applicable law or agreed to in writing, software
11 + * distributed under the License is distributed on an "AS IS" BASIS,
12 + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 + * See the License for the specific language governing permissions and
14 + * limitations under the License.
15 + */
16 +package org.onosproject.driver.pipeline;
17 +
18 +import static org.slf4j.LoggerFactory.getLogger;
19 +
20 +import java.util.ArrayList;
21 +import java.util.Collection;
22 +import java.util.Collections;
23 +import java.util.Deque;
24 +import java.util.List;
25 +import org.onlab.packet.Ethernet;
26 +import org.onlab.packet.VlanId;
27 +import org.onosproject.core.ApplicationId;
28 +import org.onosproject.net.Port;
29 +import org.onosproject.net.PortNumber;
30 +import org.onosproject.net.behaviour.NextGroup;
31 +import org.onosproject.net.flow.DefaultFlowRule;
32 +import org.onosproject.net.flow.DefaultTrafficSelector;
33 +import org.onosproject.net.flow.DefaultTrafficTreatment;
34 +import org.onosproject.net.flow.FlowRule;
35 +import org.onosproject.net.flow.TrafficSelector;
36 +import org.onosproject.net.flow.TrafficTreatment;
37 +import org.onosproject.net.flow.criteria.Criteria;
38 +import org.onosproject.net.flow.criteria.Criterion;
39 +import org.onosproject.net.flow.criteria.EthCriterion;
40 +import org.onosproject.net.flow.criteria.EthTypeCriterion;
41 +import org.onosproject.net.flow.criteria.PortCriterion;
42 +import org.onosproject.net.flow.criteria.VlanIdCriterion;
43 +import org.onosproject.net.flow.instructions.Instruction;
44 +import org.onosproject.net.flow.instructions.Instructions.OutputInstruction;
45 +import org.onosproject.net.flowobjective.ForwardingObjective;
46 +import org.onosproject.net.flowobjective.ObjectiveError;
47 +import org.onosproject.net.group.Group;
48 +import org.onosproject.net.group.GroupKey;
49 +import org.slf4j.Logger;
50 +
51 +
52 +/**
53 + * Driver for software switch emulation of the OFDPA 2.0 pipeline.
54 + * The software switch is the CPqD OF 1.3 switch. Unfortunately the CPqD switch
55 + * does not handle vlan tags and mpls labels simultaneously, which requires us
56 + * to do some workarounds in the driver. This driver is meant for the use of
57 + * the cpqd switch when MPLS is not a requirement from the ofdpa pipeline. As a
58 + * result this driver correctly handles both incoming untagged and vlan-tagged
59 + * packets.
60 + *
61 + */
62 +public class CpqdOFDPA2VlanPipeline extends CpqdOFDPA2Pipeline {
63 +
64 + private final Logger log = getLogger(getClass());
65 +
66 + /*
67 + * Cpqd emulation does not handle vlan tags and mpls labels correctly.
68 + * Since this driver does not deal with MPLS, there is no need for
69 + * working around VLAN tags. In particular we do not pop off vlan tags in
70 + * the middle of the pipeline.
71 + *
72 + * (non-Javadoc)
73 + * @see org.onosproject.driver.pipeline.OFDPA2Pipeline#processEthDstFilter
74 + */
75 + @Override
76 + protected List<FlowRule> processEthDstFilter(PortCriterion portCriterion,
77 + EthCriterion ethCriterion,
78 + VlanIdCriterion vidCriterion,
79 + VlanId assignedVlan,
80 + ApplicationId applicationId) {
81 + //handling untagged packets via assigned VLAN
82 + if (vidCriterion.vlanId() == VlanId.NONE) {
83 + vidCriterion = (VlanIdCriterion) Criteria.matchVlanId(assignedVlan);
84 + }
85 + // ofdpa cannot match on ALL portnumber, so we need to use separate
86 + // rules for each port.
87 + List<PortNumber> portnums = new ArrayList<PortNumber>();
88 + if (portCriterion.port() == PortNumber.ALL) {
89 + for (Port port : deviceService.getPorts(deviceId)) {
90 + if (port.number().toLong() > 0 && port.number().toLong() < OFPP_MAX) {
91 + portnums.add(port.number());
92 + }
93 + }
94 + } else {
95 + portnums.add(portCriterion.port());
96 + }
97 +
98 + List<FlowRule> rules = new ArrayList<FlowRule>();
99 + for (PortNumber pnum : portnums) {
100 + // for unicast IP packets
101 + TrafficSelector.Builder selector = DefaultTrafficSelector.builder();
102 + TrafficTreatment.Builder treatment = DefaultTrafficTreatment.builder();
103 + selector.matchInPort(pnum);
104 + selector.matchVlanId(vidCriterion.vlanId());
105 + selector.matchEthType(Ethernet.TYPE_IPV4);
106 + selector.matchEthDst(ethCriterion.mac());
107 +
108 + treatment.transition(UNICAST_ROUTING_TABLE);
109 + FlowRule rule = DefaultFlowRule.builder()
110 + .forDevice(deviceId)
111 + .withSelector(selector.build())
112 + .withTreatment(treatment.build())
113 + .withPriority(DEFAULT_PRIORITY)
114 + .fromApp(applicationId)
115 + .makePermanent()
116 + .forTable(TMAC_TABLE).build();
117 + rules.add(rule);
118 + }
119 + return rules;
120 + }
121 +
122 + /*
123 + * In the OF-DPA 2.0 pipeline, versatile forwarding objectives go to the
124 + * ACL table. Since we do not pop off vlans in the TMAC table we can continue
125 + * to match on vlans in the ACL table if necessary.
126 + */
127 + @Override
128 + protected Collection<FlowRule> processVersatile(ForwardingObjective fwd) {
129 + log.info("Processing versatile forwarding objective");
130 +
131 + EthTypeCriterion ethType =
132 + (EthTypeCriterion) fwd.selector().getCriterion(Criterion.Type.ETH_TYPE);
133 + if (ethType == null) {
134 + log.error("Versatile forwarding objective must include ethType");
135 + fail(fwd, ObjectiveError.BADPARAMS);
136 + return Collections.emptySet();
137 + }
138 + if (fwd.nextId() == null && fwd.treatment() == null) {
139 + log.error("Forwarding objective {} from {} must contain "
140 + + "nextId or Treatment", fwd.selector(), fwd.appId());
141 + return Collections.emptySet();
142 + }
143 +
144 + TrafficSelector.Builder sbuilder = DefaultTrafficSelector.builder();
145 + fwd.selector().criteria().forEach(criterion -> {
146 + if (criterion instanceof VlanIdCriterion) {
147 + VlanId vlanId = ((VlanIdCriterion) criterion).vlanId();
148 + // ensure that match does not include vlan = NONE as OF-DPA does not
149 + // match untagged packets this way in the ACL table.
150 + if (vlanId.equals(VlanId.NONE)) {
151 + return;
152 + }
153 + }
154 + sbuilder.add(criterion);
155 + });
156 +
157 + // XXX driver does not currently do type checking as per Tables 65-67 in
158 + // OFDPA 2.0 spec. The only allowed treatment is a punt to the controller.
159 + TrafficTreatment.Builder ttBuilder = DefaultTrafficTreatment.builder();
160 + if (fwd.treatment() != null) {
161 + for (Instruction ins : fwd.treatment().allInstructions()) {
162 + if (ins instanceof OutputInstruction) {
163 + OutputInstruction o = (OutputInstruction) ins;
164 + if (o.port() == PortNumber.CONTROLLER) {
165 + ttBuilder.add(o);
166 + } else {
167 + log.warn("Only allowed treatments in versatile forwarding "
168 + + "objectives are punts to the controller");
169 + }
170 + } else {
171 + log.warn("Cannot process instruction in versatile fwd {}", ins);
172 + }
173 + }
174 + }
175 + if (fwd.nextId() != null) {
176 + // overide case
177 + NextGroup next = getGroupForNextObjective(fwd.nextId());
178 + List<Deque<GroupKey>> gkeys = appKryo.deserialize(next.data());
179 + // we only need the top level group's key to point the flow to it
180 + Group group = groupService.getGroup(deviceId, gkeys.get(0).peekFirst());
181 + if (group == null) {
182 + log.warn("Group with key:{} for next-id:{} not found in dev:{}",
183 + gkeys.get(0).peekFirst(), fwd.nextId(), deviceId);
184 + fail(fwd, ObjectiveError.GROUPMISSING);
185 + return Collections.emptySet();
186 + }
187 + ttBuilder.deferred().group(group.id());
188 + }
189 +
190 + FlowRule.Builder ruleBuilder = DefaultFlowRule.builder()
191 + .fromApp(fwd.appId())
192 + .withPriority(fwd.priority())
193 + .forDevice(deviceId)
194 + .withSelector(sbuilder.build())
195 + .withTreatment(ttBuilder.build())
196 + .makePermanent()
197 + .forTable(ACL_TABLE);
198 + return Collections.singletonList(ruleBuilder.build());
199 + }
200 +
201 +
202 +}
...@@ -101,7 +101,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -101,7 +101,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
101 protected static final int MAC_LEARNING_TABLE = 254; 101 protected static final int MAC_LEARNING_TABLE = 254;
102 protected static final long OFPP_MAX = 0xffffff00L; 102 protected static final long OFPP_MAX = 0xffffff00L;
103 103
104 - private static final int HIGHEST_PRIORITY = 0xffff; 104 + protected static final int HIGHEST_PRIORITY = 0xffff;
105 protected static final int DEFAULT_PRIORITY = 0x8000; 105 protected static final int DEFAULT_PRIORITY = 0x8000;
106 protected static final int LOWEST_PRIORITY = 0x0; 106 protected static final int LOWEST_PRIORITY = 0x0;
107 107
...@@ -125,7 +125,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -125,7 +125,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
125 125
126 protected OFDPA2GroupHandler ofdpa2GroupHandler; 126 protected OFDPA2GroupHandler ofdpa2GroupHandler;
127 127
128 - private Set<IPCriterion> sentIpFilters = Collections.newSetFromMap( 128 + protected Set<IPCriterion> sentIpFilters = Collections.newSetFromMap(
129 new ConcurrentHashMap<>()); 129 new ConcurrentHashMap<>());
130 130
131 @Override 131 @Override
...@@ -276,8 +276,8 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -276,8 +276,8 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
276 * @param install indicates whether to add or remove the objective 276 * @param install indicates whether to add or remove the objective
277 * @param applicationId the application that sent this objective 277 * @param applicationId the application that sent this objective
278 */ 278 */
279 - private void processFilter(FilteringObjective filt, 279 + protected void processFilter(FilteringObjective filt,
280 - boolean install, ApplicationId applicationId) { 280 + boolean install, ApplicationId applicationId) {
281 // This driver only processes filtering criteria defined with switch 281 // This driver only processes filtering criteria defined with switch
282 // ports as the key 282 // ports as the key
283 PortCriterion portCriterion = null; 283 PortCriterion portCriterion = null;
...@@ -357,7 +357,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -357,7 +357,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
357 /* 357 /*
358 * NOTE: Separate vlan filtering rules and assignment rules 358 * NOTE: Separate vlan filtering rules and assignment rules
359 * into different stage in order to guarantee that filtering rules 359 * into different stage in order to guarantee that filtering rules
360 - * always go first. 360 + * always go first, as required by ofdpa.
361 */ 361 */
362 List<FlowRule> allRules = processVlanIdFilter( 362 List<FlowRule> allRules = processVlanIdFilter(
363 portCriterion, vidCriterion, assignedVlan, applicationId); 363 portCriterion, vidCriterion, assignedVlan, applicationId);
...@@ -464,9 +464,11 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -464,9 +464,11 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
464 selector.extension(ofdpaMatchVlanVid, deviceId); 464 selector.extension(ofdpaMatchVlanVid, deviceId);
465 OfdpaSetVlanVid ofdpaSetVlanVid = new OfdpaSetVlanVid(assignedVlan); 465 OfdpaSetVlanVid ofdpaSetVlanVid = new OfdpaSetVlanVid(assignedVlan);
466 treatment.extension(ofdpaSetVlanVid, deviceId); 466 treatment.extension(ofdpaSetVlanVid, deviceId);
467 - // XXX ofdpa will require an additional vlan match on the assigned vlan 467 + // ofdpa requires an additional vlan match rule for the assigned vlan
468 - // and it may not require the push. This is not in compliance with OF 468 + // and it does not require the push when setting the assigned vlan.
469 - // standard. Waiting on what the exact flows are going to look like. 469 + // It also requires the extra rule to be sent to the switch before we
470 + // send the untagged match rule.
471 + // None of this in compliance with OF standard.
470 storeVlan = assignedVlan; 472 storeVlan = assignedVlan;
471 473
472 preSelector = DefaultTrafficSelector.builder(); 474 preSelector = DefaultTrafficSelector.builder();
...@@ -630,7 +632,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline ...@@ -630,7 +632,7 @@ public class OFDPA2Pipeline extends AbstractHandlerBehaviour implements Pipeline
630 * collection may be returned if there is a problem in processing 632 * collection may be returned if there is a problem in processing
631 * the flow rule 633 * the flow rule
632 */ 634 */
633 - private Collection<FlowRule> processVersatile(ForwardingObjective fwd) { 635 + protected Collection<FlowRule> processVersatile(ForwardingObjective fwd) {
634 log.info("Processing versatile forwarding objective"); 636 log.info("Processing versatile forwarding objective");
635 637
636 EthTypeCriterion ethType = 638 EthTypeCriterion ethType =
......
...@@ -141,6 +141,7 @@ ...@@ -141,6 +141,7 @@
141 manufacturer="NoviFlow Inc" hwVersion="NS.*" swVersion="NW.*"> 141 manufacturer="NoviFlow Inc" hwVersion="NS.*" swVersion="NW.*">
142 </driver> 142 </driver>
143 <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch. 143 <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch.
144 + ~ Use this driver when MPLS functionality is required.
144 ~ To use this driver, configure ONOS with the dpid of the device. 145 ~ To use this driver, configure ONOS with the dpid of the device.
145 --> 146 -->
146 <driver name="ofdpa-cpqd" extends="default" 147 <driver name="ofdpa-cpqd" extends="default"
...@@ -149,6 +150,16 @@ ...@@ -149,6 +150,16 @@
149 <behaviour api="org.onosproject.net.behaviour.Pipeliner" 150 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
150 impl="org.onosproject.driver.pipeline.CpqdOFDPA2Pipeline"/> 151 impl="org.onosproject.driver.pipeline.CpqdOFDPA2Pipeline"/>
151 </driver> 152 </driver>
153 + <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch.
154 + ~ Use this driver when VLAN functionality is required.
155 + ~ To use this driver, configure ONOS with the dpid of the device.
156 + -->
157 + <driver name="ofdpa-cpqd-vlan" extends="default"
158 + manufacturer="ONF"
159 + hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining">
160 + <behaviour api="org.onosproject.net.behaviour.Pipeliner"
161 + impl="org.onosproject.driver.pipeline.CpqdOFDPA2VlanPipeline"/>
162 + </driver>
152 <driver name="calient" extends="default" 163 <driver name="calient" extends="default"
153 manufacturer="calient inc" hwVersion="calient hardware" 164 manufacturer="calient inc" hwVersion="calient hardware"
154 swVersion="ocs switch"> 165 swVersion="ocs switch">
......