blob: 29e2a3a2fb80ac7af36b248282072953ba96b29c [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
Frank Wange254d6c2017-07-20 14:46:36 +080059 private static final ImmutableBiMap<Criterion.Type, PiHeaderFieldId> CRITERION_MAP =
60 new ImmutableBiMap.Builder<Criterion.Type, PiHeaderFieldId>()
61 .put(Criterion.Type.IN_PORT, IN_PORT_ID)
62 .put(Criterion.Type.ETH_DST, ETH_DST_ID)
63 .put(Criterion.Type.ETH_SRC, ETH_SRC_ID)
64 .put(Criterion.Type.ETH_TYPE, ETH_TYPE_ID)
65 .build();
Carmelo Cascone59f57de2017-07-11 19:55:09 -040066
67 private static final ImmutableBiMap<Integer, PiTableId> TABLE_MAP = ImmutableBiMap.of(
68 0, PiTableId.of(TABLE0));
69
70 @Override
71 public PiTableAction mapTreatment(TrafficTreatment treatment, PiPipeconf pipeconf) throws PiInterpreterException {
72
73 if (treatment.allInstructions().size() == 0) {
74 // No instructions means drop for us.
75 return actionWithName(DROP);
76 } else if (treatment.allInstructions().size() > 1) {
77 // Otherwise, we understand treatments with only 1 instruction.
78 throw new PiPipelineInterpreter.PiInterpreterException("Treatment has multiple instructions");
79 }
80
81 Instruction instruction = treatment.allInstructions().get(0);
82
83 switch (instruction.type()) {
84 case OUTPUT:
85 Instructions.OutputInstruction outInstruction = (Instructions.OutputInstruction) instruction;
86 PortNumber port = outInstruction.port();
87 if (!port.isLogical()) {
88 PiAction.builder()
89 .withId(PiActionId.of(SET_EGRESS_PORT))
90 .withParameter(new PiActionParam(PiActionParamId.of(PORT),
91 ImmutableByteSequence.copyFrom(port.toLong())))
92 .build();
93 } else if (port.equals(CONTROLLER)) {
94 return actionWithName(SEND_TO_CPU);
95 } else {
96 throw new PiInterpreterException("Egress on logical port not supported: " + port);
97 }
98 case NOACTION:
99 return actionWithName(DROP);
100 default:
101 throw new PiInterpreterException("Instruction type not supported: " + instruction.type().name());
102 }
103 }
104
Andrea Campanella432f7182017-07-14 18:43:27 +0200105 @Override
106 public Collection<PiPacketMetadata> mapOutboundPacket(OutboundPacket packet, PiPipeconf pipeconf)
107 throws PiInterpreterException {
108 throw new UnsupportedOperationException("Currently unsupported");
109 }
110
Carmelo Cascone59f57de2017-07-11 19:55:09 -0400111 /**
112 * Returns an action instance with no runtime parameters.
113 */
114 private PiAction actionWithName(String name) {
115 return PiAction.builder().withId(PiActionId.of(name)).build();
116 }
117
118 @Override
119 public Optional<PiHeaderFieldId> mapCriterionType(Criterion.Type type) {
120 return Optional.ofNullable(CRITERION_MAP.get(type));
121 }
122
123 @Override
124 public Optional<Criterion.Type> mapPiHeaderFieldId(PiHeaderFieldId headerFieldId) {
125 return Optional.ofNullable(CRITERION_MAP.inverse().get(headerFieldId));
126 }
127
128 @Override
129 public Optional<PiTableId> mapFlowRuleTableId(int flowRuleTableId) {
130 return Optional.ofNullable(TABLE_MAP.get(flowRuleTableId));
131 }
132}