blob: 04535aa740f1fb5d756f07e6c25ad195fee960dd [file] [log] [blame]
Carmelo Cascone00a59962017-06-16 17:51:49 +09001/*
2 * Copyright 2017-present 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.net.pi.impl;
18
19import com.google.common.collect.ImmutableBiMap;
Andrea Campanellafc1d34c2017-07-18 17:01:41 +020020import com.google.common.collect.ImmutableList;
Carmelo Cascone00a59962017-06-16 17:51:49 +090021import org.onlab.util.ImmutableByteSequence;
22import org.onosproject.net.PortNumber;
23import org.onosproject.net.driver.AbstractHandlerBehaviour;
24import org.onosproject.net.flow.TrafficTreatment;
25import org.onosproject.net.flow.criteria.Criterion;
26import org.onosproject.net.flow.instructions.Instruction;
Andrea Campanella432f7182017-07-14 18:43:27 +020027import org.onosproject.net.packet.OutboundPacket;
Carmelo Cascone00a59962017-06-16 17:51:49 +090028import org.onosproject.net.pi.model.PiPipelineInterpreter;
29import org.onosproject.net.pi.runtime.PiAction;
30import org.onosproject.net.pi.runtime.PiActionId;
31import org.onosproject.net.pi.runtime.PiActionParam;
32import org.onosproject.net.pi.runtime.PiActionParamId;
33import org.onosproject.net.pi.runtime.PiHeaderFieldId;
Andrea Campanellafc1d34c2017-07-18 17:01:41 +020034import org.onosproject.net.pi.runtime.PiPacketOperation;
Carmelo Cascone00a59962017-06-16 17:51:49 +090035import org.onosproject.net.pi.runtime.PiTableId;
36
Andrea Campanella432f7182017-07-14 18:43:27 +020037import java.util.Collection;
Carmelo Cascone00a59962017-06-16 17:51:49 +090038import java.util.Optional;
39
40import static org.onosproject.net.PortNumber.CONTROLLER;
41import static org.onosproject.net.flow.instructions.Instructions.OutputInstruction;
42
43/**
44 * Mock interpreter implementation.
45 */
46public class MockInterpreter extends AbstractHandlerBehaviour implements PiPipelineInterpreter {
47
48 static final String TABLE0 = "table0";
49 static final String SEND_TO_CPU = "send_to_cpu_0";
50 static final String PORT = "port";
51 static final String DROP = "_drop_0";
52 static final String SET_EGRESS_PORT = "set_egress_port_0";
53
54 static final PiHeaderFieldId IN_PORT_ID = PiHeaderFieldId.of("standard_metadata", "ingress_port");
55 static final PiHeaderFieldId ETH_DST_ID = PiHeaderFieldId.of("ethernet_t", "dstAddr");
56 static final PiHeaderFieldId ETH_SRC_ID = PiHeaderFieldId.of("ethernet_t", "srcAddr");
57 static final PiHeaderFieldId ETH_TYPE_ID = PiHeaderFieldId.of("ethernet_t", "etherType");
58
59 private static final ImmutableBiMap<Criterion.Type, PiHeaderFieldId> CRITERION_MAP = ImmutableBiMap.of(
60 Criterion.Type.IN_PORT, IN_PORT_ID,
61 Criterion.Type.ETH_DST, ETH_DST_ID,
62 Criterion.Type.ETH_SRC, ETH_SRC_ID,
63 Criterion.Type.ETH_TYPE, ETH_TYPE_ID);
64
65 private static final ImmutableBiMap<Integer, PiTableId> TABLE_MAP = ImmutableBiMap.of(
66 0, PiTableId.of(TABLE0));
67
68 @Override
Carmelo Casconef3a1a382017-07-27 12:04:39 -040069 public PiAction mapTreatment(TrafficTreatment treatment, PiTableId piTableId) throws PiInterpreterException {
Carmelo Cascone00a59962017-06-16 17:51:49 +090070
71 if (treatment.allInstructions().size() == 0) {
72 // No instructions means drop for us.
73 return actionWithName(DROP);
74 } else if (treatment.allInstructions().size() > 1) {
75 // Otherwise, we understand treatments with only 1 instruction.
76 throw new PiPipelineInterpreter.PiInterpreterException("Treatment has multiple instructions");
77 }
78
79 Instruction instruction = treatment.allInstructions().get(0);
80
81 switch (instruction.type()) {
82 case OUTPUT:
83 OutputInstruction outInstruction = (OutputInstruction) instruction;
84 PortNumber port = outInstruction.port();
85 if (!port.isLogical()) {
86 PiAction.builder()
87 .withId(PiActionId.of(SET_EGRESS_PORT))
88 .withParameter(new PiActionParam(PiActionParamId.of(PORT),
89 ImmutableByteSequence.copyFrom(port.toLong())))
90 .build();
91 } else if (port.equals(CONTROLLER)) {
92 return actionWithName(SEND_TO_CPU);
93 } else {
94 throw new PiInterpreterException("Egress on logical port not supported: " + port);
95 }
96 case NOACTION:
97 return actionWithName(DROP);
98 default:
99 throw new PiInterpreterException("Instruction type not supported: " + instruction.type().name());
100 }
101 }
102
Andrea Campanella432f7182017-07-14 18:43:27 +0200103 @Override
Carmelo Casconef3a1a382017-07-27 12:04:39 -0400104 public Collection<PiPacketOperation> mapOutboundPacket(OutboundPacket packet)
Andrea Campanella432f7182017-07-14 18:43:27 +0200105 throws PiInterpreterException {
Andrea Campanellafc1d34c2017-07-18 17:01:41 +0200106 return ImmutableList.of();
Andrea Campanella432f7182017-07-14 18:43:27 +0200107 }
108
Carmelo Cascone00a59962017-06-16 17:51:49 +0900109 /**
110 * Returns an action instance with no runtime parameters.
111 */
112 private PiAction actionWithName(String name) {
113 return PiAction.builder().withId(PiActionId.of(name)).build();
114 }
115
116 @Override
117 public Optional<PiHeaderFieldId> mapCriterionType(Criterion.Type type) {
118 return Optional.ofNullable(CRITERION_MAP.get(type));
119 }
120
121 @Override
122 public Optional<Criterion.Type> mapPiHeaderFieldId(PiHeaderFieldId headerFieldId) {
123 return Optional.ofNullable(CRITERION_MAP.inverse().get(headerFieldId));
124 }
125
126 @Override
127 public Optional<PiTableId> mapFlowRuleTableId(int flowRuleTableId) {
128 return Optional.ofNullable(TABLE_MAP.get(flowRuleTableId));
129 }
130
131}