blob: 5e374d9bdd12f4d612a4e75e9ef04d07bd60e655 [file] [log] [blame]
Jonathan Hart3c259162015-10-21 21:31:19 -07001/*
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
17package org.onosproject.driver.extensions;
18
19import org.onlab.packet.Ip4Address;
alshabib880b6442015-11-23 22:13:04 -080020import org.onosproject.net.behaviour.ExtensionTreatmentResolver;
Jonathan Hart3c259162015-10-21 21:31:19 -070021import org.onosproject.net.driver.AbstractHandlerBehaviour;
alshabib880b6442015-11-23 22:13:04 -080022import org.onosproject.net.flow.instructions.ExtensionTreatment;
23import org.onosproject.net.flow.instructions.ExtensionTreatmentType;
24import org.onosproject.openflow.controller.ExtensionTreatmentInterpreter;
Jonathan Hart3c259162015-10-21 21:31:19 -070025import org.projectfloodlight.openflow.protocol.OFActionType;
26import org.projectfloodlight.openflow.protocol.OFFactory;
27import org.projectfloodlight.openflow.protocol.action.OFAction;
28import org.projectfloodlight.openflow.protocol.action.OFActionSetField;
29import org.projectfloodlight.openflow.protocol.oxm.OFOxm;
30import org.projectfloodlight.openflow.protocol.oxm.OFOxmTunnelIpv4Dst;
31import org.projectfloodlight.openflow.types.IPv4Address;
32
33/**
Jonathan Hart26a8d952015-12-02 15:16:35 -080034 * Interpreter for Nicira OpenFlow treatment extensions.
Jonathan Hart3c259162015-10-21 21:31:19 -070035 */
alshabib880b6442015-11-23 22:13:04 -080036public class NiciraExtensionTreatmentInterpreter extends AbstractHandlerBehaviour
37 implements ExtensionTreatmentInterpreter, ExtensionTreatmentResolver {
Jonathan Hart3c259162015-10-21 21:31:19 -070038
39 @Override
alshabib880b6442015-11-23 22:13:04 -080040 public boolean supported(ExtensionTreatmentType extensionTreatmentType) {
41 if (extensionTreatmentType.equals(
42 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_TUNNEL_DST.type())) {
Jonathan Hart3c259162015-10-21 21:31:19 -070043 return true;
44 }
alshabib880b6442015-11-23 22:13:04 -080045 if (extensionTreatmentType.equals(
46 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT.type())) {
BitOhenryb53ac6c2015-11-16 20:58:58 +080047 return true;
48 }
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053049 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SPI.type())) {
50 return true;
51 }
52 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SI.type())) {
53 return true;
54 }
55 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH1.type())) {
56 return true;
57 }
58 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH2.type())) {
59 return true;
60 }
61 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH3.type())) {
62 return true;
63 }
64 if (extensionTreatmentType.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH4.type())) {
Phaneendra Mandace66cbc2015-11-26 18:07:48 +053065 return true;
66 }
BitOhenry74dd7e12015-12-01 09:07:19 +080067 if (extensionTreatmentType.equals(
68 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT_TABLE.type())) {
69 return true;
70 }
samueljcc4a527ed2015-12-03 13:59:49 +080071 if (extensionTreatmentType.equals(
72 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ARP_SHA_TO_THA.type())) {
73 return true;
74 }
75 if (extensionTreatmentType.equals(
76 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ARP_SPA_TO_TPA.type())) {
77 return true;
78 }
79 if (extensionTreatmentType.equals(
80 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ETH_SRC_TO_DST.type())) {
81 return true;
82 }
83 if (extensionTreatmentType.equals(
84 ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_IP_SRC_TO_DST.type())) {
85 return true;
86 }
Jonathan Hart3c259162015-10-21 21:31:19 -070087 return false;
88 }
89
90 @Override
alshabib880b6442015-11-23 22:13:04 -080091 public OFAction mapInstruction(OFFactory factory, ExtensionTreatment extensionTreatment) {
92 ExtensionTreatmentType type = extensionTreatment.type();
93 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_TUNNEL_DST.type())) {
94 NiciraSetTunnelDst tunnelDst = (NiciraSetTunnelDst) extensionTreatment;
Jonathan Hart3c259162015-10-21 21:31:19 -070095 return factory.actions().setField(factory.oxms().tunnelIpv4Dst(
96 IPv4Address.of(tunnelDst.tunnelDst().toInt())));
97 }
alshabib880b6442015-11-23 22:13:04 -080098 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT.type())) {
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053099 // TODO this will be implemented later
BitOhenryb53ac6c2015-11-16 20:58:58 +0800100 }
Phaneendra Mandace66cbc2015-11-26 18:07:48 +0530101 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SPI.type())) {
102 // TODO this will be implemented later
103 }
BitOhenry74dd7e12015-12-01 09:07:19 +0800104 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT_TABLE.type())) {
105 // TODO this will be implemented later
Phaneendra Mandaab5a7362015-12-02 01:10:01 +0530106 }
107 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SI.type())) {
108 // TODO this will be implemented later
109 }
110 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH1.type())) {
111 // TODO this will be implemented later
112 }
113 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH2.type())) {
114 // TODO this will be implemented later
115 }
116 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH3.type())) {
117 // TODO this will be implemented later
118 }
119 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH4.type())) {
120 // TODO this will be implemented later
121 }
samueljcc4a527ed2015-12-03 13:59:49 +0800122 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ETH_SRC_TO_DST.type())
123 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ARP_SPA_TO_TPA.type())
124 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ETH_SRC_TO_DST.type())
125 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_IP_SRC_TO_DST.type())) {
126 // TODO this will be implemented later
127 }
Jonathan Hart3c259162015-10-21 21:31:19 -0700128 return null;
129 }
130
131 @Override
alshabib880b6442015-11-23 22:13:04 -0800132 public ExtensionTreatment mapAction(OFAction action) {
Jonathan Hart3c259162015-10-21 21:31:19 -0700133 if (action.getType().equals(OFActionType.SET_FIELD)) {
134 OFActionSetField setFieldAction = (OFActionSetField) action;
135 OFOxm<?> oxm = setFieldAction.getField();
136 switch (oxm.getMatchField().id) {
137 case TUNNEL_IPV4_DST:
138 OFOxmTunnelIpv4Dst tunnelIpv4Dst = (OFOxmTunnelIpv4Dst) oxm;
139 return new NiciraSetTunnelDst(Ip4Address.valueOf(tunnelIpv4Dst.getValue().getInt()));
140 default:
141 throw new UnsupportedOperationException(
142 "Driver does not support extension type " + oxm.getMatchField().id);
143 }
144 }
145 return null;
146 }
147
148 @Override
alshabib880b6442015-11-23 22:13:04 -0800149 public ExtensionTreatment getExtensionInstruction(ExtensionTreatmentType type) {
150 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_TUNNEL_DST.type())) {
Jonathan Hart3c259162015-10-21 21:31:19 -0700151 return new NiciraSetTunnelDst();
152 }
alshabib880b6442015-11-23 22:13:04 -0800153 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT.type())) {
BitOhenryb53ac6c2015-11-16 20:58:58 +0800154 return new NiciraResubmit();
155 }
Phaneendra Mandaab5a7362015-12-02 01:10:01 +0530156 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_RESUBMIT_TABLE.type())) {
157 return new NiciraResubmitTable();
158 }
Phaneendra Mandace66cbc2015-11-26 18:07:48 +0530159 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SPI.type())) {
160 return new NiciraSetNshSpi();
161 }
Phaneendra Mandaab5a7362015-12-02 01:10:01 +0530162 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_SI.type())) {
163 return new NiciraSetNshSi();
164 }
165 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH1.type())
166 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH2.type())
167 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH3.type())
168 || type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_SET_NSH_CH4.type())) {
169 return new NiciraSetNshContextHeader(type);
BitOhenry74dd7e12015-12-01 09:07:19 +0800170 }
samueljcc4a527ed2015-12-03 13:59:49 +0800171 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ARP_SHA_TO_THA.type())) {
172 return NiciraMoveTreatmentFactory.createNiciraMovArpShaToTha();
173 }
174 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ARP_SPA_TO_TPA.type())) {
175 return NiciraMoveTreatmentFactory.createNiciraMovArpSpaToTpa();
176 }
177 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_ETH_SRC_TO_DST.type())) {
178 return NiciraMoveTreatmentFactory.createNiciraMovEthSrcToDst();
179 }
180 if (type.equals(ExtensionTreatmentType.ExtensionTreatmentTypes.NICIRA_MOV_IP_SRC_TO_DST.type())) {
181 return NiciraMoveTreatmentFactory.createNiciraMovIpSrcToDst();
182 }
Jonathan Hart3c259162015-10-21 21:31:19 -0700183 throw new UnsupportedOperationException(
184 "Driver does not support extension type " + type.toString());
185 }
186}