blob: 9147de31f9004eeeb1bcdd40f082653ebc9a5190 [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;
Ray Milkeyf0c47612017-09-28 11:29:38 -070022import org.onlab.packet.DeserializationException;
Carmelo Cascone770507f2017-09-14 20:58:04 +020023import org.onlab.packet.Ethernet;
24import org.onlab.util.ImmutableByteSequence;
25import org.onosproject.net.ConnectPoint;
Carmelo Cascone770507f2017-09-14 20:58:04 +020026import 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;
Carmelo Cascone87892e22017-11-13 16:01:29 -080037import org.onosproject.net.pi.model.PiActionId;
38import org.onosproject.net.pi.model.PiActionParamId;
39import org.onosproject.net.pi.model.PiControlMetadataId;
40import org.onosproject.net.pi.model.PiCounterId;
41import org.onosproject.net.pi.model.PiMatchFieldId;
Carmelo Cascone770507f2017-09-14 20:58:04 +020042import org.onosproject.net.pi.model.PiPipelineInterpreter;
Carmelo Cascone87892e22017-11-13 16:01:29 -080043import org.onosproject.net.pi.model.PiTableId;
Carmelo Cascone770507f2017-09-14 20:58:04 +020044import org.onosproject.net.pi.runtime.PiAction;
Carmelo Cascone770507f2017-09-14 20:58:04 +020045import org.onosproject.net.pi.runtime.PiActionParam;
Carmelo Cascone87892e22017-11-13 16:01:29 -080046import org.onosproject.net.pi.runtime.PiControlMetadata;
Carmelo Cascone770507f2017-09-14 20:58:04 +020047import org.onosproject.net.pi.runtime.PiPacketOperation;
Carmelo Cascone770507f2017-09-14 20:58:04 +020048
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;
Carmelo Cascone87892e22017-11-13 16:01:29 -080061import static org.onosproject.net.pi.model.PiPacketOperationType.PACKET_OUT;
Carmelo Cascone770507f2017-09-14 20:58:04 +020062
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
Carmelo Cascone87892e22017-11-13 16:01:29 -080080 private static final PiMatchFieldId INGRESS_PORT_ID = PiMatchFieldId.of(STANDARD_METADATA + ".ingress_port");
81 private static final PiMatchFieldId ETH_DST_ID = PiMatchFieldId.of(ETHERNET + ".dst_addr");
82 private static final PiMatchFieldId ETH_SRC_ID = PiMatchFieldId.of(ETHERNET + ".src_addr");
83 private static final PiMatchFieldId ETH_TYPE_ID = PiMatchFieldId.of(ETHERNET + ".ether_type");
Carmelo Cascone770507f2017-09-14 20:58:04 +020084 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
Carmelo Cascone87892e22017-11-13 16:01:29 -080091 private static final BiMap<Criterion.Type, PiMatchFieldId> CRITERION_MAP =
92 new ImmutableBiMap.Builder<Criterion.Type, PiMatchFieldId>()
Carmelo Cascone770507f2017-09-14 20:58:04 +020093 .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
Carmelo Cascone87892e22017-11-13 16:01:29 -0800179 public InboundPacket mapInboundPacket(PiPacketOperation packetIn)
Carmelo Cascone770507f2017-09-14 20:58:04 +0200180 throws PiInterpreterException {
181 // We assume that the packet is ethernet, which is fine since default.p4 can deparse only ethernet packets.
Ray Milkeyf0c47612017-09-28 11:29:38 -0700182 Ethernet ethPkt;
183 try {
184 ethPkt = Ethernet.deserializer().deserialize(packetIn.data().asArray(), 0, packetIn.data().size());
185 } catch (DeserializationException dex) {
186 throw new PiInterpreterException(dex.getMessage());
187 }
Carmelo Cascone770507f2017-09-14 20:58:04 +0200188
189 // Returns the ingress port packet metadata.
Carmelo Cascone87892e22017-11-13 16:01:29 -0800190 Optional<PiControlMetadata> packetMetadata = packetIn.metadatas().stream()
191 .filter(metadata -> metadata.id().toString().equals(INGRESS_PORT))
Carmelo Cascone770507f2017-09-14 20:58:04 +0200192 .findFirst();
193
194 if (packetMetadata.isPresent()) {
195 ImmutableByteSequence portByteSequence = packetMetadata.get().value();
196 short s = portByteSequence.asReadOnlyBuffer().getShort();
Carmelo Cascone87892e22017-11-13 16:01:29 -0800197 ConnectPoint receivedFrom = new ConnectPoint(packetIn.deviceId(), PortNumber.portNumber(s));
Carmelo Cascone770507f2017-09-14 20:58:04 +0200198 return new DefaultInboundPacket(receivedFrom, ethPkt, packetIn.data().asReadOnlyBuffer());
199 } else {
200 throw new PiInterpreterException(format(
Carmelo Cascone87892e22017-11-13 16:01:29 -0800201 "Missing metadata '%s' in packet-in received from '%s': %s",
202 INGRESS_PORT, packetIn.deviceId(), packetIn));
Carmelo Cascone770507f2017-09-14 20:58:04 +0200203 }
204 }
205
206 private PiPacketOperation createPiPacketOperation(ByteBuffer data, long portNumber) throws PiInterpreterException {
Carmelo Cascone87892e22017-11-13 16:01:29 -0800207 PiControlMetadata metadata = createControlMetadata(portNumber);
Carmelo Cascone770507f2017-09-14 20:58:04 +0200208 return PiPacketOperation.builder()
Carmelo Cascone87892e22017-11-13 16:01:29 -0800209 .forDevice(this.data().deviceId())
Carmelo Cascone770507f2017-09-14 20:58:04 +0200210 .withType(PACKET_OUT)
211 .withData(copyFrom(data))
212 .withMetadatas(ImmutableList.of(metadata))
213 .build();
214 }
215
Carmelo Cascone87892e22017-11-13 16:01:29 -0800216 private PiControlMetadata createControlMetadata(long portNumber) throws PiInterpreterException {
Carmelo Cascone770507f2017-09-14 20:58:04 +0200217 try {
Carmelo Cascone87892e22017-11-13 16:01:29 -0800218 return PiControlMetadata.builder()
219 .withId(PiControlMetadataId.of(EGRESS_PORT))
Carmelo Cascone770507f2017-09-14 20:58:04 +0200220 .withValue(fit(copyFrom(portNumber), PORT_FIELD_BITWIDTH))
221 .build();
222 } catch (ImmutableByteSequence.ByteSequenceTrimException e) {
223 throw new PiInterpreterException(format("Port number %d too big, %s", portNumber, e.getMessage()));
224 }
225 }
226
227 @Override
Carmelo Cascone87892e22017-11-13 16:01:29 -0800228 public Optional<PiMatchFieldId> mapCriterionType(Criterion.Type type) {
Carmelo Cascone770507f2017-09-14 20:58:04 +0200229 return Optional.ofNullable(CRITERION_MAP.get(type));
230 }
231
232 @Override
Carmelo Cascone87892e22017-11-13 16:01:29 -0800233 public Optional<Criterion.Type> mapPiMatchFieldId(PiMatchFieldId headerFieldId) {
Carmelo Cascone770507f2017-09-14 20:58:04 +0200234 return Optional.ofNullable(CRITERION_MAP.inverse().get(headerFieldId));
235 }
236
237 @Override
238 public Optional<PiTableId> mapFlowRuleTableId(int flowRuleTableId) {
239 return Optional.ofNullable(TABLE_MAP.get(flowRuleTableId));
240 }
241
242 @Override
243 public Optional<Integer> mapPiTableId(PiTableId piTableId) {
244 return Optional.ofNullable(TABLE_MAP.inverse().get(piTableId));
245 }
246}