blob: ee307b6145fc85d977b53aa8426fdf956132b798 [file] [log] [blame]
Carmelo Cascone59f57de2017-07-11 19:55:09 -04001/*
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.drivers.bmv2;
18
19import com.google.common.collect.ImmutableBiMap;
20import org.onlab.util.ImmutableByteSequence;
21import org.onosproject.net.PortNumber;
22import org.onosproject.net.driver.AbstractHandlerBehaviour;
23import org.onosproject.net.flow.TrafficTreatment;
24import org.onosproject.net.flow.criteria.Criterion;
25import org.onosproject.net.flow.instructions.Instruction;
26import org.onosproject.net.flow.instructions.Instructions;
Andrea Campanella432f7182017-07-14 18:43:27 +020027import org.onosproject.net.packet.OutboundPacket;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040028import org.onosproject.net.pi.model.PiPipeconf;
29import org.onosproject.net.pi.model.PiPipelineInterpreter;
30import org.onosproject.net.pi.runtime.PiAction;
31import org.onosproject.net.pi.runtime.PiActionId;
32import org.onosproject.net.pi.runtime.PiActionParam;
33import org.onosproject.net.pi.runtime.PiActionParamId;
34import org.onosproject.net.pi.runtime.PiHeaderFieldId;
Andrea Campanella432f7182017-07-14 18:43:27 +020035import org.onosproject.net.pi.runtime.PiPacketMetadata;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040036import org.onosproject.net.pi.runtime.PiTableAction;
37import org.onosproject.net.pi.runtime.PiTableId;
38
Andrea Campanella432f7182017-07-14 18:43:27 +020039import java.util.Collection;
Carmelo Cascone59f57de2017-07-11 19:55:09 -040040import java.util.Optional;
41
42import static org.onosproject.net.PortNumber.CONTROLLER;
43
44/**
45 * Interpreter implementation for the default pipeconf.
46 */
47public class Bmv2DefaultInterpreter extends AbstractHandlerBehaviour implements PiPipelineInterpreter {
48 private static final String TABLE0 = "table0";
49 private static final String SEND_TO_CPU = "send_to_cpu_0";
50 private static final String PORT = "port";
51 private static final String DROP = "_drop_0";
52 private static final String SET_EGRESS_PORT = "set_egress_port_0";
53
54 private static final PiHeaderFieldId IN_PORT_ID = PiHeaderFieldId.of("standard_metadata", "ingress_port");
55 private static final PiHeaderFieldId ETH_DST_ID = PiHeaderFieldId.of("ethernet_t", "dstAddr");
56 private static final PiHeaderFieldId ETH_SRC_ID = PiHeaderFieldId.of("ethernet_t", "srcAddr");
57 private 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
69 public PiTableAction mapTreatment(TrafficTreatment treatment, PiPipeconf pipeconf) throws PiInterpreterException {
70
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 Instructions.OutputInstruction outInstruction = (Instructions.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
104 public Collection<PiPacketMetadata> mapOutboundPacket(OutboundPacket packet, PiPipeconf pipeconf)
105 throws PiInterpreterException {
106 throw new UnsupportedOperationException("Currently unsupported");
107 }
108
Carmelo Cascone59f57de2017-07-11 19:55:09 -0400109 /**
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}