blob: b1848f209763613924cb8508221602db298465f6 [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.provider.of.flow.impl;
Jonathan Hart86e59352014-10-22 10:42:16 -070017
Jonathan Hart29afca32015-01-20 18:17:39 -080018import org.onlab.packet.Ip4Address;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -080019import org.onlab.packet.Ip6Address;
Charles M.C. Chanfe421812015-01-12 18:20:51 +080020import org.onosproject.net.PortNumber;
Brian O'Connorabafb502014-12-02 22:26:20 -080021import org.onosproject.net.flow.FlowRule;
22import org.onosproject.net.flow.TrafficTreatment;
23import org.onosproject.net.flow.instructions.Instruction;
alshabib9af70072015-02-09 14:34:16 -080024import org.onosproject.net.flow.instructions.Instructions;
sangho8995ac52015-02-04 11:29:03 -080025import org.onosproject.net.flow.instructions.Instructions.GroupInstruction;
alshabib9af70072015-02-09 14:34:16 -080026import org.onosproject.net.flow.instructions.Instructions.OutputInstruction;
Brian O'Connorabafb502014-12-02 22:26:20 -080027import org.onosproject.net.flow.instructions.L0ModificationInstruction;
28import org.onosproject.net.flow.instructions.L0ModificationInstruction.ModLambdaInstruction;
29import org.onosproject.net.flow.instructions.L2ModificationInstruction;
30import org.onosproject.net.flow.instructions.L2ModificationInstruction.ModEtherInstruction;
Jonathan Hart29afca32015-01-20 18:17:39 -080031import org.onosproject.net.flow.instructions.L2ModificationInstruction.ModMplsLabelInstruction;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import org.onosproject.net.flow.instructions.L2ModificationInstruction.ModVlanIdInstruction;
33import org.onosproject.net.flow.instructions.L2ModificationInstruction.ModVlanPcpInstruction;
Brian O'Connorabafb502014-12-02 22:26:20 -080034import org.onosproject.net.flow.instructions.L2ModificationInstruction.PushHeaderInstructions;
35import org.onosproject.net.flow.instructions.L3ModificationInstruction;
36import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModIPInstruction;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -080037import org.onosproject.net.flow.instructions.L3ModificationInstruction.ModIPv6FlowLabelInstruction;
alshabib9af70072015-02-09 14:34:16 -080038import org.onosproject.openflow.controller.OpenFlowSwitch;
Jonathan Hart86e59352014-10-22 10:42:16 -070039import org.projectfloodlight.openflow.protocol.OFFactory;
40import org.projectfloodlight.openflow.protocol.OFFlowAdd;
41import org.projectfloodlight.openflow.protocol.OFFlowDelete;
42import org.projectfloodlight.openflow.protocol.OFFlowMod;
43import org.projectfloodlight.openflow.protocol.OFFlowModFlags;
44import org.projectfloodlight.openflow.protocol.action.OFAction;
sangho8995ac52015-02-04 11:29:03 -080045import org.projectfloodlight.openflow.protocol.action.OFActionGroup;
Charles M.C. Chanfe421812015-01-12 18:20:51 +080046import org.projectfloodlight.openflow.protocol.action.OFActionOutput;
alshabib9af70072015-02-09 14:34:16 -080047import org.projectfloodlight.openflow.protocol.instruction.OFInstruction;
Jonathan Hart86e59352014-10-22 10:42:16 -070048import org.projectfloodlight.openflow.protocol.match.Match;
49import org.projectfloodlight.openflow.protocol.oxm.OFOxm;
50import org.projectfloodlight.openflow.types.CircuitSignalID;
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -080051import org.projectfloodlight.openflow.types.EthType;
Jonathan Hart86e59352014-10-22 10:42:16 -070052import org.projectfloodlight.openflow.types.IPv4Address;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -080053import org.projectfloodlight.openflow.types.IPv6Address;
54import org.projectfloodlight.openflow.types.IPv6FlowLabel;
Jonathan Hart86e59352014-10-22 10:42:16 -070055import org.projectfloodlight.openflow.types.MacAddress;
56import org.projectfloodlight.openflow.types.OFBufferId;
sangho8995ac52015-02-04 11:29:03 -080057import org.projectfloodlight.openflow.types.OFGroup;
Jonathan Hart86e59352014-10-22 10:42:16 -070058import org.projectfloodlight.openflow.types.OFPort;
59import org.projectfloodlight.openflow.types.OFVlanVidMatch;
alshabib9af70072015-02-09 14:34:16 -080060import org.projectfloodlight.openflow.types.TableId;
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -080061import org.projectfloodlight.openflow.types.U32;
Jonathan Hart86e59352014-10-22 10:42:16 -070062import org.projectfloodlight.openflow.types.U64;
63import org.projectfloodlight.openflow.types.VlanPcp;
64import org.slf4j.Logger;
65import org.slf4j.LoggerFactory;
66
Jonathan Hart29afca32015-01-20 18:17:39 -080067import java.util.Collections;
68import java.util.LinkedList;
69import java.util.List;
70import java.util.Optional;
71
Jonathan Hart86e59352014-10-22 10:42:16 -070072/**
73 * Flow mod builder for OpenFlow 1.3+.
74 */
75public class FlowModBuilderVer13 extends FlowModBuilder {
76
alshabib10580802015-02-18 18:30:33 -080077 private final Logger log = LoggerFactory.getLogger(getClass());
Charles M.C. Chanfe421812015-01-12 18:20:51 +080078 private static final int OFPCML_NO_BUFFER = 0xffff;
Jonathan Hart86e59352014-10-22 10:42:16 -070079
80 private final TrafficTreatment treatment;
81
82 /**
83 * Constructor for a flow mod builder for OpenFlow 1.3.
84 *
85 * @param flowRule the flow rule to transform into a flow mod
86 * @param factory the OpenFlow factory to use to build the flow mod
Pavlin Radoslavov119fd5c2014-11-25 19:08:19 -080087 * @param xid the transaction ID
Jonathan Hart86e59352014-10-22 10:42:16 -070088 */
Brian O'Connor427a1762014-11-19 18:40:32 -080089 protected FlowModBuilderVer13(FlowRule flowRule, OFFactory factory, Optional<Long> xid) {
90 super(flowRule, factory, xid);
Jonathan Hart86e59352014-10-22 10:42:16 -070091
92 this.treatment = flowRule.treatment();
93 }
94
95 @Override
96 public OFFlowAdd buildFlowAdd() {
97 Match match = buildMatch();
Jonathan Hartd4a8bba2014-10-28 12:44:20 -070098 List<OFAction> actions = buildActions();
alshabib9af70072015-02-09 14:34:16 -080099 List<OFInstruction> instructions = buildInstructions();
Jonathan Hartd4a8bba2014-10-28 12:44:20 -0700100 // FIXME had to revert back to using apply-actions instead of
101 // write-actions because LINC-OE apparently doesn't support
102 // write-actions. I would prefer to change this back in the future
103 // because apply-actions is an optional instruction in OF 1.3.
104
Jonathan Harteda33872015-02-18 10:22:32 -0800105 OFInstruction applyActions =
106 factory().instructions().applyActions(actions);
107
108 instructions.add(applyActions);
Jonathan Hart86e59352014-10-22 10:42:16 -0700109
110 long cookie = flowRule().id().value();
111
alshabib4785eec2014-12-04 16:45:45 -0800112
Jonathan Hart86e59352014-10-22 10:42:16 -0700113 OFFlowAdd fm = factory().buildFlowAdd()
Brian O'Connor427a1762014-11-19 18:40:32 -0800114 .setXid(xid)
Jonathan Hart86e59352014-10-22 10:42:16 -0700115 .setCookie(U64.of(cookie))
116 .setBufferId(OFBufferId.NO_BUFFER)
alshabib9af70072015-02-09 14:34:16 -0800117 .setInstructions(instructions)
Jonathan Hart86e59352014-10-22 10:42:16 -0700118 .setMatch(match)
119 .setFlags(Collections.singleton(OFFlowModFlags.SEND_FLOW_REM))
120 .setPriority(flowRule().priority())
alshabib10580802015-02-18 18:30:33 -0800121 .setTableId(TableId.of(flowRule().type().ordinal()))
Jonathan Hart86e59352014-10-22 10:42:16 -0700122 .build();
123
124 return fm;
125 }
126
127 @Override
128 public OFFlowMod buildFlowMod() {
129 Match match = buildMatch();
Jonathan Hartd4a8bba2014-10-28 12:44:20 -0700130 List<OFAction> actions = buildActions();
alshabib9af70072015-02-09 14:34:16 -0800131 List<OFInstruction> instructions = buildInstructions();
Jonathan Harteda33872015-02-18 10:22:32 -0800132 OFInstruction applyActions =
133 factory().instructions().applyActions(actions);
134
135 instructions.add(applyActions);
Jonathan Hart86e59352014-10-22 10:42:16 -0700136
137 long cookie = flowRule().id().value();
138
alshabib4785eec2014-12-04 16:45:45 -0800139
Jonathan Hart86e59352014-10-22 10:42:16 -0700140 OFFlowMod fm = factory().buildFlowModify()
Brian O'Connor427a1762014-11-19 18:40:32 -0800141 .setXid(xid)
Jonathan Hart86e59352014-10-22 10:42:16 -0700142 .setCookie(U64.of(cookie))
143 .setBufferId(OFBufferId.NO_BUFFER)
alshabib9af70072015-02-09 14:34:16 -0800144 .setInstructions(instructions)
Jonathan Hart86e59352014-10-22 10:42:16 -0700145 .setMatch(match)
146 .setFlags(Collections.singleton(OFFlowModFlags.SEND_FLOW_REM))
147 .setPriority(flowRule().priority())
alshabib10580802015-02-18 18:30:33 -0800148 .setTableId(TableId.of(flowRule().type().ordinal()))
Jonathan Hart86e59352014-10-22 10:42:16 -0700149 .build();
150
151 return fm;
152 }
153
154 @Override
155 public OFFlowDelete buildFlowDel() {
156 Match match = buildMatch();
Jonathan Hart86e59352014-10-22 10:42:16 -0700157
158 long cookie = flowRule().id().value();
159
160 OFFlowDelete fm = factory().buildFlowDelete()
Brian O'Connor427a1762014-11-19 18:40:32 -0800161 .setXid(xid)
Jonathan Hart86e59352014-10-22 10:42:16 -0700162 .setCookie(U64.of(cookie))
163 .setBufferId(OFBufferId.NO_BUFFER)
Jonathan Hart86e59352014-10-22 10:42:16 -0700164 .setMatch(match)
165 .setFlags(Collections.singleton(OFFlowModFlags.SEND_FLOW_REM))
166 .setPriority(flowRule().priority())
167 .build();
168
169 return fm;
170 }
171
alshabib9af70072015-02-09 14:34:16 -0800172
173 private List<OFInstruction> buildInstructions() {
174 List<OFInstruction> instructions = new LinkedList<>();
175 if (treatment == null) {
176 return instructions;
177 }
178 for (Instruction i : treatment.instructions()) {
179 switch (i.type()) {
180 case TABLE:
181 instructions.add(buildTableGoto(((Instructions.TableTypeTransition) i)));
182 break;
183 default:
184 break;
185 }
186 }
187 return instructions;
188 }
189
Jonathan Hart86e59352014-10-22 10:42:16 -0700190 private List<OFAction> buildActions() {
191 List<OFAction> actions = new LinkedList<>();
192 if (treatment == null) {
193 return actions;
194 }
195 for (Instruction i : treatment.instructions()) {
196 switch (i.type()) {
alshabib9af70072015-02-09 14:34:16 -0800197 case DROP:
198 log.warn("Saw drop action; assigning drop action");
199 return new LinkedList<>();
200 case L0MODIFICATION:
201 actions.add(buildL0Modification(i));
202 break;
203 case L2MODIFICATION:
204 actions.add(buildL2Modification(i));
205 break;
206 case L3MODIFICATION:
207 actions.add(buildL3Modification(i));
208 break;
209 case OUTPUT:
210 OutputInstruction out = (OutputInstruction) i;
211 OFActionOutput.Builder action = factory().actions().buildOutput()
212 .setPort(OFPort.of((int) out.port().toLong()));
213 if (out.port().equals(PortNumber.CONTROLLER)) {
214 action.setMaxLen(OFPCML_NO_BUFFER);
215 }
216 actions.add(action.build());
217 break;
218 case GROUP:
219 GroupInstruction group = (GroupInstruction) i;
220 OFActionGroup.Builder groupBuilder = factory().actions().buildGroup()
221 .setGroup(OFGroup.of(group.groupId().id()));
222 actions.add(groupBuilder.build());
223 break;
alshabib10580802015-02-18 18:30:33 -0800224 case TABLE:
225 //FIXME: should not occur here.
226 break;
alshabib9af70072015-02-09 14:34:16 -0800227 default:
228 log.warn("Instruction type {} not yet implemented.", i.type());
Jonathan Hart86e59352014-10-22 10:42:16 -0700229 }
230 }
231
232 return actions;
233 }
234
alshabib9af70072015-02-09 14:34:16 -0800235 private OFInstruction buildTableGoto(Instructions.TableTypeTransition i) {
236 OFInstruction instruction = factory().instructions().gotoTable(
237 TableId.of(getTableType(i.tableType()).ordinal()));
238 return instruction;
239 }
240
241 // FIXME: this has to go as well perhaps when we implement the SelectorService.
242 private OpenFlowSwitch.TableType getTableType(FlowRule.Type type) {
243 switch (type) {
244
245 case DEFAULT:
246 return OpenFlowSwitch.TableType.NONE;
247 case IP:
248 return OpenFlowSwitch.TableType.IP;
249 case MPLS:
250 return OpenFlowSwitch.TableType.MPLS;
251 case ACL:
252 return OpenFlowSwitch.TableType.ACL;
253 case VLAN_MPLS:
254 return OpenFlowSwitch.TableType.VLAN_MPLS;
255 case VLAN:
256 return OpenFlowSwitch.TableType.VLAN;
257 case ETHER:
258 return OpenFlowSwitch.TableType.ETHER;
259 case COS:
260 return OpenFlowSwitch.TableType.COS;
261 default:
262 return OpenFlowSwitch.TableType.NONE;
263 }
264 }
265
266
Jonathan Hart86e59352014-10-22 10:42:16 -0700267 private OFAction buildL0Modification(Instruction i) {
268 L0ModificationInstruction l0m = (L0ModificationInstruction) i;
269 switch (l0m.subtype()) {
270 case LAMBDA:
271 ModLambdaInstruction ml = (ModLambdaInstruction) i;
272 return factory().actions().circuit(factory().oxms().ochSigidBasic(
273 new CircuitSignalID((byte) 1, (byte) 2, ml.lambda(), (short) 1)));
274 default:
275 log.warn("Unimplemented action type {}.", l0m.subtype());
276 break;
277 }
278 return null;
279 }
280
281 private OFAction buildL2Modification(Instruction i) {
282 L2ModificationInstruction l2m = (L2ModificationInstruction) i;
283 ModEtherInstruction eth;
284 OFOxm<?> oxm = null;
285 switch (l2m.subtype()) {
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800286 case ETH_DST:
287 eth = (ModEtherInstruction) l2m;
288 oxm = factory().oxms().ethDst(MacAddress.of(eth.mac().toLong()));
289 break;
290 case ETH_SRC:
291 eth = (ModEtherInstruction) l2m;
292 oxm = factory().oxms().ethSrc(MacAddress.of(eth.mac().toLong()));
293 break;
294 case VLAN_ID:
295 ModVlanIdInstruction vlanId = (ModVlanIdInstruction) l2m;
296 oxm = factory().oxms().vlanVid(OFVlanVidMatch.ofVlan(vlanId.vlanId().toShort()));
297 break;
298 case VLAN_PCP:
299 ModVlanPcpInstruction vlanPcp = (ModVlanPcpInstruction) l2m;
300 oxm = factory().oxms().vlanPcp(VlanPcp.of(vlanPcp.vlanPcp()));
301 break;
302 case MPLS_PUSH:
303 PushHeaderInstructions pushHeaderInstructions =
304 (PushHeaderInstructions) l2m;
305 return factory().actions().pushMpls(EthType.of(pushHeaderInstructions
Yuta HIGUCHI32a53c52015-02-08 01:25:40 -0800306 .ethernetType()));
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800307 case MPLS_POP:
308 PushHeaderInstructions popHeaderInstructions =
309 (PushHeaderInstructions) l2m;
310 return factory().actions().popMpls(EthType.of(popHeaderInstructions
Yuta HIGUCHI32a53c52015-02-08 01:25:40 -0800311 .ethernetType()));
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800312 case MPLS_LABEL:
313 ModMplsLabelInstruction mplsLabel =
314 (ModMplsLabelInstruction) l2m;
315 oxm = factory().oxms().mplsLabel(U32.of(mplsLabel.label()
316 .longValue()));
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800317 break;
sangho3f97a17d2015-01-29 22:56:29 -0800318 case DEC_MPLS_TTL:
319 return factory().actions().decMplsTtl();
Praseed Balakrishnan8c67d172014-11-10 10:15:41 -0800320 default:
321 log.warn("Unimplemented action type {}.", l2m.subtype());
322 break;
Jonathan Hart86e59352014-10-22 10:42:16 -0700323 }
324
325 if (oxm != null) {
326 return factory().actions().buildSetField().setField(oxm).build();
327 }
328 return null;
329 }
330
331 private OFAction buildL3Modification(Instruction i) {
332 L3ModificationInstruction l3m = (L3ModificationInstruction) i;
333 ModIPInstruction ip;
Pavlin Radoslavov23e398d2014-11-05 15:17:57 -0800334 Ip4Address ip4;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800335 Ip6Address ip6;
Jonathan Hart86e59352014-10-22 10:42:16 -0700336 OFOxm<?> oxm = null;
337 switch (l3m.subtype()) {
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800338 case IPV4_SRC:
339 ip = (ModIPInstruction) i;
340 ip4 = ip.ip().getIp4Address();
341 oxm = factory().oxms().ipv4Src(IPv4Address.of(ip4.toInt()));
342 break;
343 case IPV4_DST:
Jonathan Hart86e59352014-10-22 10:42:16 -0700344 ip = (ModIPInstruction) i;
Pavlin Radoslavov23e398d2014-11-05 15:17:57 -0800345 ip4 = ip.ip().getIp4Address();
346 oxm = factory().oxms().ipv4Dst(IPv4Address.of(ip4.toInt()));
Ray Milkey241b96a2014-11-17 13:08:20 -0800347 break;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800348 case IPV6_SRC:
Jonathan Hart86e59352014-10-22 10:42:16 -0700349 ip = (ModIPInstruction) i;
Pavlin Radoslavovfebe82c2015-02-11 19:08:15 -0800350 ip6 = ip.ip().getIp6Address();
351 oxm = factory().oxms().ipv6Src(IPv6Address.of(ip6.toOctets()));
352 break;
353 case IPV6_DST:
354 ip = (ModIPInstruction) i;
355 ip6 = ip.ip().getIp6Address();
356 oxm = factory().oxms().ipv6Dst(IPv6Address.of(ip6.toOctets()));
357 break;
358 case IPV6_FLABEL:
359 ModIPv6FlowLabelInstruction flowLabelInstruction =
360 (ModIPv6FlowLabelInstruction) i;
361 int flowLabel = flowLabelInstruction.flowLabel();
362 oxm = factory().oxms().ipv6Flabel(IPv6FlowLabel.of(flowLabel));
Ray Milkey241b96a2014-11-17 13:08:20 -0800363 break;
sangho3f97a17d2015-01-29 22:56:29 -0800364 case DEC_TTL:
365 return factory().actions().decNwTtl();
366 case TTL_IN:
367 return factory().actions().copyTtlIn();
368 case TTL_OUT:
369 return factory().actions().copyTtlOut();
Jonathan Hart86e59352014-10-22 10:42:16 -0700370 default:
371 log.warn("Unimplemented action type {}.", l3m.subtype());
372 break;
373 }
374
375 if (oxm != null) {
376 return factory().actions().buildSetField().setField(oxm).build();
377 }
378 return null;
379 }
380
381}