blob: c7832366586d53b890a30a5ed5fa44c56eaa0c67 [file] [log] [blame]
Carmelo Cascone770507f2017-09-14 20:58:04 +02001/*
2 * Copyright 2017-present Open Networking Foundation
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.p4tutorial.pipeconf;
18
19import com.google.common.collect.BiMap;
20import com.google.common.collect.ImmutableBiMap;
21import com.google.common.collect.ImmutableList;
22import org.onlab.packet.Ethernet;
23import org.onlab.util.ImmutableByteSequence;
24import org.onosproject.net.ConnectPoint;
25import org.onosproject.net.DeviceId;
26import org.onosproject.net.Port;
27import org.onosproject.net.PortNumber;
28import org.onosproject.net.device.DeviceService;
29import org.onosproject.net.driver.AbstractHandlerBehaviour;
30import org.onosproject.net.flow.TrafficTreatment;
31import org.onosproject.net.flow.criteria.Criterion;
32import org.onosproject.net.flow.instructions.Instruction;
33import org.onosproject.net.flow.instructions.Instructions;
34import org.onosproject.net.packet.DefaultInboundPacket;
35import org.onosproject.net.packet.InboundPacket;
36import org.onosproject.net.packet.OutboundPacket;
37import org.onosproject.net.pi.model.PiPipelineInterpreter;
38import org.onosproject.net.pi.runtime.PiAction;
39import org.onosproject.net.pi.runtime.PiActionId;
40import org.onosproject.net.pi.runtime.PiActionParam;
41import org.onosproject.net.pi.runtime.PiActionParamId;
42import org.onosproject.net.pi.runtime.PiCounterId;
43import org.onosproject.net.pi.runtime.PiHeaderFieldId;
44import org.onosproject.net.pi.runtime.PiPacketMetadata;
45import org.onosproject.net.pi.runtime.PiPacketMetadataId;
46import org.onosproject.net.pi.runtime.PiPacketOperation;
47import org.onosproject.net.pi.runtime.PiTableId;
48
49import java.nio.ByteBuffer;
50import java.util.Collection;
51import java.util.List;
52import java.util.Optional;
53
54import static java.lang.String.format;
55import static java.util.stream.Collectors.toList;
56import static org.onlab.util.ImmutableByteSequence.copyFrom;
57import static org.onlab.util.ImmutableByteSequence.fit;
58import static org.onosproject.net.PortNumber.CONTROLLER;
59import static org.onosproject.net.PortNumber.FLOOD;
60import static org.onosproject.net.flow.instructions.Instruction.Type.OUTPUT;
61import static org.onosproject.net.pi.runtime.PiPacketOperation.Type.PACKET_OUT;
62
63/**
64 * Implementation of a PI interpreter for the main.p4 program.
65 */
66public final class PipelineInterpreterImpl extends AbstractHandlerBehaviour implements PiPipelineInterpreter {
67
68 private static final String TABLE0 = "table0";
69 private static final String IP_PROTO_FILTER_TABLE = "ip_proto_filter_table";
70 private static final String SEND_TO_CPU = "send_to_cpu";
71 private static final String PORT = "port";
72 private static final String DROP = "_drop";
73 private static final String SET_EGRESS_PORT = "set_egress_port";
74 private static final String EGRESS_PORT = "egress_port";
75 private static final String INGRESS_PORT = "ingress_port";
76 private static final String ETHERNET = "ethernet";
77 private static final String STANDARD_METADATA = "standard_metadata";
78 private static final int PORT_FIELD_BITWIDTH = 9;
79
80 private static final PiHeaderFieldId INGRESS_PORT_ID = PiHeaderFieldId.of(STANDARD_METADATA, "ingress_port");
81 private static final PiHeaderFieldId ETH_DST_ID = PiHeaderFieldId.of(ETHERNET, "dst_addr");
82 private static final PiHeaderFieldId ETH_SRC_ID = PiHeaderFieldId.of(ETHERNET, "src_addr");
83 private static final PiHeaderFieldId ETH_TYPE_ID = PiHeaderFieldId.of(ETHERNET, "ether_type");
84 private static final PiTableId TABLE0_ID = PiTableId.of(TABLE0);
85 private static final PiTableId IP_PROTO_FILTER_TABLE_ID = PiTableId.of(IP_PROTO_FILTER_TABLE);
86
87 private static final BiMap<Integer, PiTableId> TABLE_MAP = ImmutableBiMap.of(
88 0, TABLE0_ID,
89 1, IP_PROTO_FILTER_TABLE_ID);
90
91 private static final BiMap<Criterion.Type, PiHeaderFieldId> CRITERION_MAP =
92 new ImmutableBiMap.Builder<Criterion.Type, PiHeaderFieldId>()
93 .put(Criterion.Type.IN_PORT, INGRESS_PORT_ID)
94 .put(Criterion.Type.ETH_DST, ETH_DST_ID)
95 .put(Criterion.Type.ETH_SRC, ETH_SRC_ID)
96 .put(Criterion.Type.ETH_TYPE, ETH_TYPE_ID)
97 .build();
98
99 @Override
100 public PiAction mapTreatment(TrafficTreatment treatment, PiTableId piTableId)
101 throws PiInterpreterException {
102
103 if (treatment.allInstructions().size() == 0) {
104 // No instructions means drop for us.
105 return PiAction.builder()
106 .withId(PiActionId.of(DROP))
107 .build();
108 } else if (treatment.allInstructions().size() > 1) {
109 // We understand treatments with only 1 instruction.
110 throw new PiInterpreterException("Treatment has multiple instructions");
111 }
112
113 // Get the first and only instruction.
114 Instruction instruction = treatment.allInstructions().get(0);
115
116 switch (instruction.type()) {
117 case OUTPUT:
118 // We understand only instructions of type OUTPUT.
119 Instructions.OutputInstruction outInstruction = (Instructions.OutputInstruction) instruction;
120 PortNumber port = outInstruction.port();
121 if (!port.isLogical()) {
122 return PiAction.builder()
123 .withId(PiActionId.of(SET_EGRESS_PORT))
124 .withParameter(new PiActionParam(PiActionParamId.of(PORT), copyFrom(port.toLong())))
125 .build();
126 } else if (port.equals(CONTROLLER)) {
127 return PiAction.builder()
128 .withId(PiActionId.of(SEND_TO_CPU))
129 .build();
130 } else {
131 throw new PiInterpreterException(format("Output on logical port '%s' not supported", port));
132 }
133 default:
134 throw new PiInterpreterException(format("Instruction of type '%s' not supported", instruction.type()));
135 }
136 }
137
138 @Override
139 public Optional<PiCounterId> mapTableCounter(PiTableId piTableId) {
140 return Optional.empty();
141 }
142
143 @Override
144 public Collection<PiPacketOperation> mapOutboundPacket(OutboundPacket packet)
145 throws PiInterpreterException {
146
147 TrafficTreatment treatment = packet.treatment();
148
149 // We support only packet-out with OUTPUT instructions.
150 List<Instructions.OutputInstruction> outInstructions = treatment.allInstructions().stream()
151 .filter(i -> i.type().equals(OUTPUT))
152 .map(i -> (Instructions.OutputInstruction) i)
153 .collect(toList());
154
155 if (treatment.allInstructions().size() != outInstructions.size()) {
156 // There are other instructions that are not of type OUTPUT.
157 throw new PiInterpreterException("Treatment not supported: " + treatment);
158 }
159
160 ImmutableList.Builder<PiPacketOperation> builder = ImmutableList.builder();
161
162 for (Instructions.OutputInstruction outInst : outInstructions) {
163 if (outInst.port().isLogical() && !outInst.port().equals(FLOOD)) {
164 throw new PiInterpreterException(format("Output on logical port '%s' not supported", outInst.port()));
165 } else if (outInst.port().equals(FLOOD)) {
166 // Since main.p4 does not support flooding, we create a packet operation for each switch port.
167 DeviceService deviceService = handler().get(DeviceService.class);
168 for (Port port : deviceService.getPorts(packet.sendThrough())) {
169 builder.add(createPiPacketOperation(packet.data(), port.number().toLong()));
170 }
171 } else {
172 builder.add(createPiPacketOperation(packet.data(), outInst.port().toLong()));
173 }
174 }
175 return builder.build();
176 }
177
178 @Override
179 public InboundPacket mapInboundPacket(DeviceId deviceId, PiPacketOperation packetIn)
180 throws PiInterpreterException {
181 // We assume that the packet is ethernet, which is fine since default.p4 can deparse only ethernet packets.
182 Ethernet ethPkt = new Ethernet();
183
184 ethPkt.deserialize(packetIn.data().asArray(), 0, packetIn.data().size());
185
186 // Returns the ingress port packet metadata.
187 Optional<PiPacketMetadata> packetMetadata = packetIn.metadatas().stream()
188 .filter(metadata -> metadata.id().name().equals(INGRESS_PORT))
189 .findFirst();
190
191 if (packetMetadata.isPresent()) {
192 ImmutableByteSequence portByteSequence = packetMetadata.get().value();
193 short s = portByteSequence.asReadOnlyBuffer().getShort();
194 ConnectPoint receivedFrom = new ConnectPoint(deviceId, PortNumber.portNumber(s));
195 return new DefaultInboundPacket(receivedFrom, ethPkt, packetIn.data().asReadOnlyBuffer());
196 } else {
197 throw new PiInterpreterException(format(
198 "Missing metadata '%s' in packet-in received from '%s': %s", INGRESS_PORT, deviceId, packetIn));
199 }
200 }
201
202 private PiPacketOperation createPiPacketOperation(ByteBuffer data, long portNumber) throws PiInterpreterException {
203 PiPacketMetadata metadata = createPacketMetadata(portNumber);
204 return PiPacketOperation.builder()
205 .withType(PACKET_OUT)
206 .withData(copyFrom(data))
207 .withMetadatas(ImmutableList.of(metadata))
208 .build();
209 }
210
211 private PiPacketMetadata createPacketMetadata(long portNumber) throws PiInterpreterException {
212 try {
213 return PiPacketMetadata.builder()
214 .withId(PiPacketMetadataId.of(EGRESS_PORT))
215 .withValue(fit(copyFrom(portNumber), PORT_FIELD_BITWIDTH))
216 .build();
217 } catch (ImmutableByteSequence.ByteSequenceTrimException e) {
218 throw new PiInterpreterException(format("Port number %d too big, %s", portNumber, e.getMessage()));
219 }
220 }
221
222 @Override
223 public Optional<PiHeaderFieldId> mapCriterionType(Criterion.Type type) {
224 return Optional.ofNullable(CRITERION_MAP.get(type));
225 }
226
227 @Override
228 public Optional<Criterion.Type> mapPiHeaderFieldId(PiHeaderFieldId headerFieldId) {
229 return Optional.ofNullable(CRITERION_MAP.inverse().get(headerFieldId));
230 }
231
232 @Override
233 public Optional<PiTableId> mapFlowRuleTableId(int flowRuleTableId) {
234 return Optional.ofNullable(TABLE_MAP.get(flowRuleTableId));
235 }
236
237 @Override
238 public Optional<Integer> mapPiTableId(PiTableId piTableId) {
239 return Optional.ofNullable(TABLE_MAP.inverse().get(piTableId));
240 }
241}