blob: cfe54478b7b1b13702c0be754486c64712574b81 [file] [log] [blame]
Ray Milkeyd43fe452015-05-29 09:35:12 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Ray Milkeyd43fe452015-05-29 09:35:12 -07003 *
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 */
16package org.onosproject.codec.impl;
17
Jian Lidab72562016-04-12 14:10:32 -070018import com.fasterxml.jackson.databind.JsonNode;
Jian Li1ef82db2016-03-03 14:43:21 -080019import com.fasterxml.jackson.databind.node.ObjectNode;
Cem Türker3baff672017-10-12 15:09:01 +030020import com.google.common.collect.Maps;
Jian Lidab72562016-04-12 14:10:32 -070021import org.onlab.osgi.DefaultServiceDirectory;
22import org.onlab.osgi.ServiceDirectory;
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -050023import org.onlab.packet.EthType;
Ray Milkeyd43fe452015-05-29 09:35:12 -070024import org.onlab.packet.IpAddress;
25import org.onlab.packet.MacAddress;
26import org.onlab.packet.MplsLabel;
Hyunsun Moonfab29502015-08-25 13:39:16 -070027import org.onlab.packet.TpPort;
Ray Milkeyd43fe452015-05-29 09:35:12 -070028import org.onlab.packet.VlanId;
Yafit Hadar5796d972015-10-15 13:16:11 +030029import org.onlab.util.HexString;
Frank Wang74ce2c12018-04-11 20:26:45 +080030import org.onlab.util.ImmutableByteSequence;
Jonathan Harte3bcfc32016-08-16 17:12:49 -070031import org.onosproject.codec.CodecContext;
Jian Lice8c5602016-03-03 21:43:24 -080032import org.onosproject.core.GroupId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070033import org.onosproject.net.ChannelSpacing;
Jian Lidab72562016-04-12 14:10:32 -070034import org.onosproject.net.Device;
35import org.onosproject.net.DeviceId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070036import org.onosproject.net.GridType;
Ray Milkeyd43fe452015-05-29 09:35:12 -070037import org.onosproject.net.OchSignal;
Yafit Hadar5796d972015-10-15 13:16:11 +030038import org.onosproject.net.OduSignalId;
Ray Milkeyd43fe452015-05-29 09:35:12 -070039import org.onosproject.net.PortNumber;
Jian Lidab72562016-04-12 14:10:32 -070040import org.onosproject.net.device.DeviceService;
Carmelo Casconecb4327a2018-09-11 15:17:23 -070041import org.onosproject.net.flow.ExtensionTreatmentCodec;
Cem Türker3baff672017-10-12 15:09:01 +030042import org.onosproject.net.flow.StatTriggerField;
43import org.onosproject.net.flow.StatTriggerFlag;
Jian Lidab72562016-04-12 14:10:32 -070044import org.onosproject.net.flow.instructions.ExtensionTreatment;
Ray Milkeyd43fe452015-05-29 09:35:12 -070045import org.onosproject.net.flow.instructions.Instruction;
46import org.onosproject.net.flow.instructions.Instructions;
47import org.onosproject.net.flow.instructions.L0ModificationInstruction;
Yafit Hadar5796d972015-10-15 13:16:11 +030048import org.onosproject.net.flow.instructions.L1ModificationInstruction;
Ray Milkeyd43fe452015-05-29 09:35:12 -070049import org.onosproject.net.flow.instructions.L2ModificationInstruction;
50import org.onosproject.net.flow.instructions.L3ModificationInstruction;
Hyunsun Moonfab29502015-08-25 13:39:16 -070051import org.onosproject.net.flow.instructions.L4ModificationInstruction;
Jian Li47b26232016-03-07 09:59:59 -080052import org.onosproject.net.meter.MeterId;
Frank Wang74ce2c12018-04-11 20:26:45 +080053import org.onosproject.net.pi.model.PiActionId;
54import org.onosproject.net.pi.model.PiActionParamId;
55import org.onosproject.net.pi.runtime.PiAction;
Frank Wang74ce2c12018-04-11 20:26:45 +080056import org.onosproject.net.pi.runtime.PiActionParam;
Carmelo Casconecb4327a2018-09-11 15:17:23 -070057import org.onosproject.net.pi.runtime.PiActionProfileGroupId;
58import org.onosproject.net.pi.runtime.PiActionProfileMemberId;
Frank Wang74ce2c12018-04-11 20:26:45 +080059import org.onosproject.net.pi.runtime.PiTableAction;
Jian Lidab72562016-04-12 14:10:32 -070060import org.slf4j.Logger;
Ray Milkeyd43fe452015-05-29 09:35:12 -070061
Cem Türker3baff672017-10-12 15:09:01 +030062import java.util.Map;
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -050063import java.util.regex.Matcher;
64import java.util.regex.Pattern;
65
Jian Li1ef82db2016-03-03 14:43:21 -080066import static org.onlab.util.Tools.nullIsIllegal;
Cem Türker3baff672017-10-12 15:09:01 +030067import static org.onosproject.codec.impl.InstructionCodec.STAT_PACKET_COUNT;
Jian Lidab72562016-04-12 14:10:32 -070068import static org.slf4j.LoggerFactory.getLogger;
Ray Milkeyd43fe452015-05-29 09:35:12 -070069
70/**
71 * Decoding portion of the instruction codec.
72 */
Ray Milkey6d7968e2015-07-06 14:30:02 -070073public final class DecodeInstructionCodecHelper {
Ray Milkey9c9cde42018-01-12 14:22:06 -080074 private static final Logger log = getLogger(DecodeInstructionCodecHelper.class);
Ray Milkeyd43fe452015-05-29 09:35:12 -070075 private final ObjectNode json;
Jonathan Harte3bcfc32016-08-16 17:12:49 -070076 private final CodecContext context;
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -050077 private static final Pattern ETHTYPE_PATTERN = Pattern.compile("0x([0-9a-fA-F]{4})");
Ray Milkeyd43fe452015-05-29 09:35:12 -070078
79 /**
80 * Creates a decode instruction codec object.
81 *
82 * @param json JSON object to decode
Ray Milkeyef794342016-11-09 16:20:29 -080083 * @param context codec context
Ray Milkeyd43fe452015-05-29 09:35:12 -070084 */
Jonathan Harte3bcfc32016-08-16 17:12:49 -070085 public DecodeInstructionCodecHelper(ObjectNode json, CodecContext context) {
Ray Milkeyd43fe452015-05-29 09:35:12 -070086 this.json = json;
Jonathan Harte3bcfc32016-08-16 17:12:49 -070087 this.context = context;
Ray Milkeyd43fe452015-05-29 09:35:12 -070088 }
89
90 /**
91 * Decodes a Layer 2 instruction.
92 *
93 * @return instruction object decoded from the JSON
94 * @throws IllegalArgumentException if the JSON is invalid
95 */
96 private Instruction decodeL2() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +053097 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
98 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
Ray Milkeyd43fe452015-05-29 09:35:12 -070099
100 if (subType.equals(L2ModificationInstruction.L2SubType.ETH_SRC.name())) {
101 String mac = nullIsIllegal(json.get(InstructionCodec.MAC),
102 InstructionCodec.MAC + InstructionCodec.MISSING_MEMBER_MESSAGE).asText();
103 return Instructions.modL2Src(MacAddress.valueOf(mac));
104 } else if (subType.equals(L2ModificationInstruction.L2SubType.ETH_DST.name())) {
105 String mac = nullIsIllegal(json.get(InstructionCodec.MAC),
106 InstructionCodec.MAC + InstructionCodec.MISSING_MEMBER_MESSAGE).asText();
107 return Instructions.modL2Dst(MacAddress.valueOf(mac));
108 } else if (subType.equals(L2ModificationInstruction.L2SubType.VLAN_ID.name())) {
109 short vlanId = (short) nullIsIllegal(json.get(InstructionCodec.VLAN_ID),
110 InstructionCodec.VLAN_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
111 return Instructions.modVlanId(VlanId.vlanId(vlanId));
112 } else if (subType.equals(L2ModificationInstruction.L2SubType.VLAN_PCP.name())) {
113 byte vlanPcp = (byte) nullIsIllegal(json.get(InstructionCodec.VLAN_PCP),
114 InstructionCodec.VLAN_PCP + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
115 return Instructions.modVlanPcp(vlanPcp);
116 } else if (subType.equals(L2ModificationInstruction.L2SubType.MPLS_LABEL.name())) {
117 int label = nullIsIllegal(json.get(InstructionCodec.MPLS_LABEL),
118 InstructionCodec.MPLS_LABEL + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
119 return Instructions.modMplsLabel(MplsLabel.mplsLabel(label));
120 } else if (subType.equals(L2ModificationInstruction.L2SubType.MPLS_PUSH.name())) {
121 return Instructions.pushMpls();
122 } else if (subType.equals(L2ModificationInstruction.L2SubType.MPLS_POP.name())) {
Sivachidambaram Subramaniandab7f4b2017-05-15 12:28:12 +0530123 if (json.has(InstructionCodec.ETHERNET_TYPE)) {
124 return Instructions.popMpls(getEthType());
125 }
Ray Milkeyd43fe452015-05-29 09:35:12 -0700126 return Instructions.popMpls();
127 } else if (subType.equals(L2ModificationInstruction.L2SubType.DEC_MPLS_TTL.name())) {
128 return Instructions.decMplsTtl();
129 } else if (subType.equals(L2ModificationInstruction.L2SubType.VLAN_POP.name())) {
130 return Instructions.popVlan();
131 } else if (subType.equals(L2ModificationInstruction.L2SubType.VLAN_PUSH.name())) {
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -0500132 if (json.has(InstructionCodec.ETHERNET_TYPE)) {
133 return Instructions.pushVlan(getEthType());
134 }
Ray Milkeyd43fe452015-05-29 09:35:12 -0700135 return Instructions.pushVlan();
Hyunsun Moon7080a0d2015-08-14 19:18:48 -0700136 } else if (subType.equals(L2ModificationInstruction.L2SubType.TUNNEL_ID.name())) {
137 long tunnelId = nullIsIllegal(json.get(InstructionCodec.TUNNEL_ID),
138 InstructionCodec.TUNNEL_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asLong();
139 return Instructions.modTunnelId(tunnelId);
Seyeon Jeong357bcec2020-02-28 01:17:34 -0800140 } else if (subType.equals(L2ModificationInstruction.L2SubType.MPLS_BOS.name())) {
141 return Instructions.modMplsBos(json.get("bos").asBoolean());
Ray Milkeyd43fe452015-05-29 09:35:12 -0700142 }
Seyeon Jeong357bcec2020-02-28 01:17:34 -0800143
Ray Milkeyd43fe452015-05-29 09:35:12 -0700144 throw new IllegalArgumentException("L2 Instruction subtype "
145 + subType + " is not supported");
146 }
147
148 /**
149 * Decodes a Layer 3 instruction.
150 *
151 * @return instruction object decoded from the JSON
152 * @throws IllegalArgumentException if the JSON is invalid
153 */
154 private Instruction decodeL3() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530155 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
156 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700157
158 if (subType.equals(L3ModificationInstruction.L3SubType.IPV4_SRC.name())) {
159 IpAddress ip = IpAddress.valueOf(nullIsIllegal(json.get(InstructionCodec.IP),
160 InstructionCodec.IP + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
161 return Instructions.modL3Src(ip);
162 } else if (subType.equals(L3ModificationInstruction.L3SubType.IPV4_DST.name())) {
163 IpAddress ip = IpAddress.valueOf(nullIsIllegal(json.get(InstructionCodec.IP),
164 InstructionCodec.IP + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
165 return Instructions.modL3Dst(ip);
166 } else if (subType.equals(L3ModificationInstruction.L3SubType.IPV6_SRC.name())) {
167 IpAddress ip = IpAddress.valueOf(nullIsIllegal(json.get(InstructionCodec.IP),
168 InstructionCodec.IP + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
169 return Instructions.modL3IPv6Src(ip);
170 } else if (subType.equals(L3ModificationInstruction.L3SubType.IPV6_DST.name())) {
171 IpAddress ip = IpAddress.valueOf(nullIsIllegal(json.get(InstructionCodec.IP),
172 InstructionCodec.IP + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
173 return Instructions.modL3IPv6Dst(ip);
174 } else if (subType.equals(L3ModificationInstruction.L3SubType.IPV6_FLABEL.name())) {
175 int flowLabel = nullIsIllegal(json.get(InstructionCodec.FLOW_LABEL),
176 InstructionCodec.FLOW_LABEL + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
177 return Instructions.modL3IPv6FlowLabel(flowLabel);
Jonathan Hartcc962d82016-08-09 16:52:22 -0700178 } else if (subType.equals(L3ModificationInstruction.L3SubType.TTL_IN.name())) {
179 return Instructions.copyTtlIn();
180 } else if (subType.equals(L3ModificationInstruction.L3SubType.TTL_OUT.name())) {
181 return Instructions.copyTtlOut();
182 } else if (subType.equals(L3ModificationInstruction.L3SubType.DEC_TTL.name())) {
183 return Instructions.decNwTtl();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700184 }
185 throw new IllegalArgumentException("L3 Instruction subtype "
186 + subType + " is not supported");
187 }
188
189 /**
190 * Decodes a Layer 0 instruction.
191 *
192 * @return instruction object decoded from the JSON
193 * @throws IllegalArgumentException if the JSON is invalid
194 */
195 private Instruction decodeL0() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530196 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
197 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700198
Sho SHIMIZUcc137a92016-03-11 15:10:54 -0800199 if (subType.equals(L0ModificationInstruction.L0SubType.OCH.name())) {
Ray Milkeyd43fe452015-05-29 09:35:12 -0700200 String gridTypeString = nullIsIllegal(json.get(InstructionCodec.GRID_TYPE),
201 InstructionCodec.GRID_TYPE + InstructionCodec.MISSING_MEMBER_MESSAGE).asText();
202 GridType gridType = GridType.valueOf(gridTypeString);
203 if (gridType == null) {
204 throw new IllegalArgumentException("Unknown grid type "
205 + gridTypeString);
206 }
207 String channelSpacingString = nullIsIllegal(json.get(InstructionCodec.CHANNEL_SPACING),
208 InstructionCodec.CHANNEL_SPACING + InstructionCodec.MISSING_MEMBER_MESSAGE).asText();
209 ChannelSpacing channelSpacing = ChannelSpacing.valueOf(channelSpacingString);
210 if (channelSpacing == null) {
211 throw new IllegalArgumentException("Unknown channel spacing "
212 + channelSpacingString);
213 }
214 int spacingMultiplier = nullIsIllegal(json.get(InstructionCodec.SPACING_MULTIPLIER),
215 InstructionCodec.SPACING_MULTIPLIER + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
216 int slotGranularity = nullIsIllegal(json.get(InstructionCodec.SLOT_GRANULARITY),
217 InstructionCodec.SLOT_GRANULARITY + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
218 return Instructions.modL0Lambda(new OchSignal(gridType, channelSpacing,
219 spacingMultiplier, slotGranularity));
220 }
221 throw new IllegalArgumentException("L0 Instruction subtype "
222 + subType + " is not supported");
223 }
224
225 /**
Yafit Hadar5796d972015-10-15 13:16:11 +0300226 * Decodes a Layer 1 instruction.
227 *
228 * @return instruction object decoded from the JSON
229 * @throws IllegalArgumentException if the JSON is invalid
230 */
231 private Instruction decodeL1() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530232 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
233 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
Yafit Hadar5796d972015-10-15 13:16:11 +0300234 if (subType.equals(L1ModificationInstruction.L1SubType.ODU_SIGID.name())) {
235 int tributaryPortNumber = nullIsIllegal(json.get(InstructionCodec.TRIBUTARY_PORT_NUMBER),
236 InstructionCodec.TRIBUTARY_PORT_NUMBER + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
237 int tributarySlotLen = nullIsIllegal(json.get(InstructionCodec.TRIBUTARY_SLOT_LEN),
238 InstructionCodec.TRIBUTARY_SLOT_LEN + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt();
239 byte[] tributarySlotBitmap = null;
240 tributarySlotBitmap = HexString.fromHexString(
241 nullIsIllegal(json.get(InstructionCodec.TRIBUTARY_SLOT_BITMAP),
242 InstructionCodec.TRIBUTARY_SLOT_BITMAP + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
243 return Instructions.modL1OduSignalId(OduSignalId.oduSignalId(tributaryPortNumber, tributarySlotLen,
244 tributarySlotBitmap));
245 }
246 throw new IllegalArgumentException("L1 Instruction subtype "
247 + subType + " is not supported");
248 }
249
250 /**
Hyunsun Moonfab29502015-08-25 13:39:16 -0700251 * Decodes a Layer 4 instruction.
252 *
253 * @return instruction object decoded from the JSON
254 * @throws IllegalArgumentException if the JSON is invalid
255 */
256 private Instruction decodeL4() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530257 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
258 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
Hyunsun Moonfab29502015-08-25 13:39:16 -0700259
260 if (subType.equals(L4ModificationInstruction.L4SubType.TCP_DST.name())) {
261 TpPort tcpPort = TpPort.tpPort(nullIsIllegal(json.get(InstructionCodec.TCP_PORT),
262 InstructionCodec.TCP_PORT + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
263 return Instructions.modTcpDst(tcpPort);
264 } else if (subType.equals(L4ModificationInstruction.L4SubType.TCP_SRC.name())) {
265 TpPort tcpPort = TpPort.tpPort(nullIsIllegal(json.get(InstructionCodec.TCP_PORT),
266 InstructionCodec.TCP_PORT + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
267 return Instructions.modTcpSrc(tcpPort);
268 } else if (subType.equals(L4ModificationInstruction.L4SubType.UDP_DST.name())) {
269 TpPort udpPort = TpPort.tpPort(nullIsIllegal(json.get(InstructionCodec.UDP_PORT),
270 InstructionCodec.UDP_PORT + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
271 return Instructions.modUdpDst(udpPort);
272 } else if (subType.equals(L4ModificationInstruction.L4SubType.UDP_SRC.name())) {
273 TpPort udpPort = TpPort.tpPort(nullIsIllegal(json.get(InstructionCodec.UDP_PORT),
274 InstructionCodec.UDP_PORT + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
275 return Instructions.modUdpSrc(udpPort);
276 }
277 throw new IllegalArgumentException("L4 Instruction subtype "
278 + subType + " is not supported");
279 }
280
Frank Wang74ce2c12018-04-11 20:26:45 +0800281 /**
282 * Decodes a protocol-independent instruction.
283 *
284 * @return instruction object decoded from the JSON
285 * @throws IllegalArgumentException if the JSON is invalid
286 */
287 private Instruction decodePi() {
288 String subType = nullIsIllegal(json.get(InstructionCodec.SUBTYPE),
289 InstructionCodec.SUBTYPE + InstructionCodec.ERROR_MESSAGE).asText();
290
291 if (subType.equals(PiTableAction.Type.ACTION.name())) {
292 PiActionId piActionId = PiActionId.of(nullIsIllegal(
293 json.get(InstructionCodec.PI_ACTION_ID),
294 InstructionCodec.PI_ACTION_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asText());
295 JsonNode params = json.get(InstructionCodec.PI_ACTION_PARAMS);
296
297 PiAction.Builder builder = PiAction.builder();
298 PiActionParam piActionParam;
299 PiActionParamId piActionParamId;
300 if (params != null) {
301 for (Map.Entry<String, String> param : ((Map<String, String>)
302 (context.mapper().convertValue(params, Map.class))).entrySet()) {
303 piActionParamId = PiActionParamId.of(param.getKey());
304 piActionParam = new PiActionParam(piActionParamId,
305 ImmutableByteSequence.copyFrom(
306 HexString.fromHexString(param.getValue(), null)));
307 builder.withParameter(piActionParam);
308 }
309 }
310
311 return Instructions.piTableAction(builder.withId(piActionId).build());
Carmelo Casconecb4327a2018-09-11 15:17:23 -0700312 } else if (subType.equals(PiTableAction.Type.ACTION_PROFILE_GROUP_ID.name())) {
313 PiActionProfileGroupId piActionGroupId = PiActionProfileGroupId.of(nullIsIllegal(
314 json.get(InstructionCodec.PI_ACTION_PROFILE_GROUP_ID),
315 InstructionCodec.PI_ACTION_PROFILE_GROUP_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
Frank Wang74ce2c12018-04-11 20:26:45 +0800316
317 return Instructions.piTableAction(piActionGroupId);
Carmelo Casconecb4327a2018-09-11 15:17:23 -0700318 } else if (subType.equals(PiTableAction.Type.ACTION_PROFILE_MEMBER_ID.name())) {
319 PiActionProfileMemberId piActionProfileMemberId = PiActionProfileMemberId.of(nullIsIllegal(
320 json.get(InstructionCodec.PI_ACTION_PROFILE_MEMBER_ID),
321 InstructionCodec.PI_ACTION_PROFILE_MEMBER_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
Frank Wang74ce2c12018-04-11 20:26:45 +0800322
Carmelo Casconecb4327a2018-09-11 15:17:23 -0700323 return Instructions.piTableAction(piActionProfileMemberId);
Frank Wang74ce2c12018-04-11 20:26:45 +0800324 }
325 throw new IllegalArgumentException("Protocol-independent Instruction subtype "
326 + subType + " is not supported");
327 }
328
Cem Türker3baff672017-10-12 15:09:01 +0300329 private Instruction decodeStatTrigger() {
330 String statTriggerFlag = nullIsIllegal(json.get(InstructionCodec.STAT_TRIGGER_FLAG),
331 InstructionCodec.STAT_TRIGGER_FLAG + InstructionCodec.ERROR_MESSAGE).asText();
332
333 StatTriggerFlag flag = null;
334
335 if (statTriggerFlag.equals(StatTriggerFlag.ONLY_FIRST.name())) {
336 flag = StatTriggerFlag.ONLY_FIRST;
337 } else if (statTriggerFlag.equals(StatTriggerFlag.PERIODIC.name())) {
338 flag = StatTriggerFlag.PERIODIC;
339 } else {
340 throw new IllegalArgumentException("statTriggerFlag "
341 + statTriggerFlag + " is not supported");
342 }
343 if (!json.has(InstructionCodec.STAT_THRESHOLDS)) {
344 throw new IllegalArgumentException("statThreshold is not added");
345 }
346 JsonNode statThresholdsNode = nullIsIllegal(json.get(InstructionCodec.STAT_THRESHOLDS),
347 InstructionCodec.STAT_THRESHOLDS + InstructionCodec.ERROR_MESSAGE);
348 Map<StatTriggerField, Long> statThresholdMap = getStatThreshold(statThresholdsNode);
349 if (statThresholdMap.isEmpty()) {
350 throw new IllegalArgumentException("statThreshold must have at least one property");
351 }
352 return Instructions.statTrigger(statThresholdMap, flag);
353 }
354
355 private Map<StatTriggerField, Long> getStatThreshold(JsonNode statThresholdNode) {
356 Map<StatTriggerField, Long> statThresholdMap = Maps.newEnumMap(StatTriggerField.class);
357 for (JsonNode jsonNode : statThresholdNode) {
358 if (jsonNode.hasNonNull(InstructionCodec.STAT_BYTE_COUNT)) {
359 JsonNode byteCountNode = jsonNode.get(InstructionCodec.STAT_BYTE_COUNT);
360 if (!byteCountNode.isNull() && byteCountNode.isNumber()) {
361 statThresholdMap.put(StatTriggerField.BYTE_COUNT, byteCountNode.asLong());
362 }
363 } else if (jsonNode.hasNonNull(STAT_PACKET_COUNT)) {
364 JsonNode packetCount = jsonNode.get(STAT_PACKET_COUNT);
365 if (!packetCount.isNull() && packetCount.isNumber()) {
366 statThresholdMap.put(StatTriggerField.PACKET_COUNT, packetCount.asLong());
367 }
368 } else if (jsonNode.hasNonNull(InstructionCodec.STAT_DURATION)) {
369 JsonNode duration = jsonNode.get(InstructionCodec.STAT_DURATION);
370 if (!duration.isNull() && duration.isNumber()) {
371 statThresholdMap.put(StatTriggerField.DURATION, duration.asLong());
372 }
373 } else {
374 log.error("Unsupported stat {}", jsonNode.toString());
375 }
376 }
377
378 return statThresholdMap;
379 }
380
Hyunsun Moonfab29502015-08-25 13:39:16 -0700381 /**
Jian Lidab72562016-04-12 14:10:32 -0700382 * Decodes a extension instruction.
383 *
384 * @return extension treatment
385 */
386 private Instruction decodeExtension() {
387 ObjectNode node = (ObjectNode) json.get(InstructionCodec.EXTENSION);
388 if (node != null) {
389 DeviceId deviceId = getDeviceId();
390
391 ServiceDirectory serviceDirectory = new DefaultServiceDirectory();
392 DeviceService deviceService = serviceDirectory.get(DeviceService.class);
393 Device device = deviceService.getDevice(deviceId);
394
Jonathan Harte3bcfc32016-08-16 17:12:49 -0700395 if (device == null) {
396 throw new IllegalArgumentException("Device not found");
397 }
398
Jian Lidab72562016-04-12 14:10:32 -0700399 if (device.is(ExtensionTreatmentCodec.class)) {
400 ExtensionTreatmentCodec treatmentCodec = device.as(ExtensionTreatmentCodec.class);
Jonathan Harte3bcfc32016-08-16 17:12:49 -0700401 ExtensionTreatment treatment = treatmentCodec.decode(node, context);
Jian Lidab72562016-04-12 14:10:32 -0700402 return Instructions.extension(treatment, deviceId);
403 } else {
Jonathan Harte3bcfc32016-08-16 17:12:49 -0700404 throw new IllegalArgumentException(
405 "There is no codec to decode extension for device " + deviceId.toString());
Jian Lidab72562016-04-12 14:10:32 -0700406 }
407 }
408 return null;
409 }
410
411 /**
412 * Returns device identifier.
413 *
414 * @return device identifier
415 * @throws IllegalArgumentException if the JSON is invalid
416 */
417 private DeviceId getDeviceId() {
418 JsonNode deviceIdNode = json.get(InstructionCodec.DEVICE_ID);
419 if (deviceIdNode != null) {
420 return DeviceId.deviceId(deviceIdNode.asText());
421 }
422 throw new IllegalArgumentException("Empty device identifier");
423 }
424
425 /**
Jian Li70dffe42016-03-08 22:23:02 -0800426 * Extracts port number of the given json node.
427 *
428 * @param jsonNode json node
429 * @return port number
430 */
431 private PortNumber getPortNumber(ObjectNode jsonNode) {
432 PortNumber portNumber;
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530433 JsonNode portNode = nullIsIllegal(jsonNode.get(InstructionCodec.PORT),
434 InstructionCodec.PORT + InstructionCodec.ERROR_MESSAGE);
435 if (portNode.isLong() || portNode.isInt()) {
436 portNumber = PortNumber.portNumber(portNode.asLong());
437 } else if (portNode.isTextual()) {
438 portNumber = PortNumber.fromString(portNode.textValue());
Jian Li70dffe42016-03-08 22:23:02 -0800439 } else {
440 throw new IllegalArgumentException("Port value "
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530441 + portNode.toString()
Jian Li70dffe42016-03-08 22:23:02 -0800442 + " is not supported");
443 }
444 return portNumber;
445 }
446
447 /**
Konstantinos Kanonakis9215ff22016-11-04 13:28:11 -0500448 * Returns Ethernet type.
449 *
450 * @return ethernet type
451 * @throws IllegalArgumentException if the JSON is invalid
452 */
453 private EthType getEthType() {
454 String ethTypeStr = nullIsIllegal(json.get(InstructionCodec.ETHERNET_TYPE),
455 InstructionCodec.ETHERNET_TYPE + InstructionCodec.MISSING_MEMBER_MESSAGE).asText();
456 Matcher matcher = ETHTYPE_PATTERN.matcher(ethTypeStr);
457 if (!matcher.matches()) {
458 throw new IllegalArgumentException("ETHERNET_TYPE must be a four digit hex string starting with 0x");
459 }
460 short ethernetType = (short) Integer.parseInt(matcher.group(1), 16);
461 return new EthType(ethernetType);
462 }
463
464 /**
Ray Milkeyd43fe452015-05-29 09:35:12 -0700465 * Decodes the JSON into an instruction object.
466 *
467 * @return Criterion object
468 * @throws IllegalArgumentException if the JSON is invalid
469 */
470 public Instruction decode() {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530471 String type = nullIsIllegal(json.get(InstructionCodec.TYPE),
472 InstructionCodec.TYPE + InstructionCodec.ERROR_MESSAGE).asText();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700473
474 if (type.equals(Instruction.Type.OUTPUT.name())) {
Jian Li70dffe42016-03-08 22:23:02 -0800475 return Instructions.createOutput(getPortNumber(json));
Ray Milkey2be39ed2016-02-22 15:54:19 -0800476 } else if (type.equals(Instruction.Type.NOACTION.name())) {
477 return Instructions.createNoAction();
Jian Li1ef82db2016-03-03 14:43:21 -0800478 } else if (type.equals(Instruction.Type.TABLE.name())) {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530479 return Instructions.transition(nullIsIllegal(json.get(InstructionCodec.TABLE_ID),
480 InstructionCodec.TABLE_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asInt());
Jian Lice8c5602016-03-03 21:43:24 -0800481 } else if (type.equals(Instruction.Type.GROUP.name())) {
Seyeon Jeong11c148b2020-03-03 12:49:48 -0800482 // a group id should be an unsigned integer
483 Long id = nullIsIllegal(json.get(InstructionCodec.GROUP_ID),
484 InstructionCodec.GROUP_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asLong();
485 GroupId groupId = new GroupId(id.intValue());
Jian Lice8c5602016-03-03 21:43:24 -0800486 return Instructions.createGroup(groupId);
Jian Li47b26232016-03-07 09:59:59 -0800487 } else if (type.equals(Instruction.Type.METER.name())) {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530488 MeterId meterId = MeterId.meterId(nullIsIllegal(json.get(InstructionCodec.METER_ID),
489 InstructionCodec.METER_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asLong());
Jian Li47b26232016-03-07 09:59:59 -0800490 return Instructions.meterTraffic(meterId);
Jian Li70dffe42016-03-08 22:23:02 -0800491 } else if (type.equals(Instruction.Type.QUEUE.name())) {
Jayasree Ghosh8aca6772016-10-04 03:32:11 +0530492 long queueId = nullIsIllegal(json.get(InstructionCodec.QUEUE_ID),
493 InstructionCodec.QUEUE_ID + InstructionCodec.MISSING_MEMBER_MESSAGE).asLong();
ke han74702102016-11-29 14:57:29 +0800494 if (json.get(InstructionCodec.PORT) == null ||
495 json.get(InstructionCodec.PORT).isNull()) {
496 return Instructions.setQueue(queueId, null);
497 } else {
498 return Instructions.setQueue(queueId, getPortNumber(json));
499 }
Ray Milkeyd43fe452015-05-29 09:35:12 -0700500 } else if (type.equals(Instruction.Type.L0MODIFICATION.name())) {
501 return decodeL0();
Yafit Hadar5796d972015-10-15 13:16:11 +0300502 } else if (type.equals(Instruction.Type.L1MODIFICATION.name())) {
503 return decodeL1();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700504 } else if (type.equals(Instruction.Type.L2MODIFICATION.name())) {
505 return decodeL2();
506 } else if (type.equals(Instruction.Type.L3MODIFICATION.name())) {
507 return decodeL3();
Hyunsun Moonfab29502015-08-25 13:39:16 -0700508 } else if (type.equals(Instruction.Type.L4MODIFICATION.name())) {
509 return decodeL4();
Jian Lidab72562016-04-12 14:10:32 -0700510 } else if (type.equals(Instruction.Type.EXTENSION.name())) {
511 return decodeExtension();
Cem Türker3baff672017-10-12 15:09:01 +0300512 } else if (type.equals(Instruction.Type.STAT_TRIGGER.name())) {
513 return decodeStatTrigger();
Frank Wang74ce2c12018-04-11 20:26:45 +0800514 } else if (type.equals(Instruction.Type.PROTOCOL_INDEPENDENT.name())) {
515 return decodePi();
Ray Milkeyd43fe452015-05-29 09:35:12 -0700516 }
Frank Wang74ce2c12018-04-11 20:26:45 +0800517
Ray Milkeyd43fe452015-05-29 09:35:12 -0700518 throw new IllegalArgumentException("Instruction type "
Frank Wang74ce2c12018-04-11 20:26:45 +0800519 + type + " is not supported");
Ray Milkeyd43fe452015-05-29 09:35:12 -0700520 }
Ray Milkeyd43fe452015-05-29 09:35:12 -0700521}