blob: c9fe49d834dae1536960b82b77f221d830fa3f61 [file] [log] [blame]
Frank Wang0e805082017-07-21 14:37:35 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Frank Wang0e805082017-07-21 14:37:35 +08003 *
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
Andrea Campanella0288c872017-08-07 18:32:51 +020017package org.onosproject.drivers.p4runtime;
Frank Wang0e805082017-07-21 14:37:35 +080018
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020019import com.google.common.collect.ImmutableList;
20import com.google.common.collect.Lists;
Frank Wang0e805082017-07-21 14:37:35 +080021import com.google.common.collect.Maps;
Carmelo Cascone7f75be42017-09-07 14:37:02 +020022import io.grpc.StatusRuntimeException;
Frank Wang0e805082017-07-21 14:37:35 +080023import org.onosproject.net.flow.DefaultFlowEntry;
24import org.onosproject.net.flow.FlowEntry;
25import org.onosproject.net.flow.FlowRule;
26import org.onosproject.net.flow.FlowRuleProgrammable;
Frank Wang0e805082017-07-21 14:37:35 +080027import org.onosproject.net.pi.model.PiPipelineInterpreter;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020028import org.onosproject.net.pi.model.PiPipelineModel;
29import org.onosproject.net.pi.model.PiTableModel;
Carmelo Cascone7f75be42017-09-07 14:37:02 +020030import org.onosproject.net.pi.runtime.PiCounterCellData;
31import org.onosproject.net.pi.runtime.PiCounterCellId;
32import org.onosproject.net.pi.runtime.PiCounterId;
33import org.onosproject.net.pi.runtime.PiDirectCounterCellId;
Carmelo Cascone87b9b392017-10-02 18:33:20 +020034import org.onosproject.net.pi.runtime.PiTranslationService;
Frank Wang0e805082017-07-21 14:37:35 +080035import org.onosproject.net.pi.runtime.PiTableEntry;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020036import org.onosproject.net.pi.runtime.PiTableId;
Frank Wang0e805082017-07-21 14:37:35 +080037import org.onosproject.p4runtime.api.P4RuntimeClient.WriteOperationType;
Andrea Campanella0288c872017-08-07 18:32:51 +020038import org.onosproject.p4runtime.api.P4RuntimeFlowRuleWrapper;
39import org.onosproject.p4runtime.api.P4RuntimeTableEntryReference;
Frank Wang0e805082017-07-21 14:37:35 +080040
41import java.util.Collection;
42import java.util.Collections;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020043import java.util.List;
Carmelo Cascone7f75be42017-09-07 14:37:02 +020044import java.util.Map;
45import java.util.Set;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020046import java.util.concurrent.ConcurrentMap;
47import java.util.concurrent.ExecutionException;
48import java.util.concurrent.locks.Lock;
49import java.util.concurrent.locks.ReentrantLock;
Carmelo Casconefe99be92017-09-11 21:55:54 +020050import java.util.stream.Collectors;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020051
52import static com.google.common.collect.Lists.newArrayList;
Andrea Campanella0288c872017-08-07 18:32:51 +020053import static org.onosproject.drivers.p4runtime.P4RuntimeFlowRuleProgrammable.Operation.APPLY;
54import static org.onosproject.drivers.p4runtime.P4RuntimeFlowRuleProgrammable.Operation.REMOVE;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020055import static org.onosproject.net.flow.FlowEntry.FlowEntryState.ADDED;
Carmelo Cascone2308e522017-08-25 02:35:12 +020056import static org.onosproject.p4runtime.api.P4RuntimeClient.WriteOperationType.*;
Frank Wang0e805082017-07-21 14:37:35 +080057
58/**
Carmelo Casconee3a7c742017-09-01 01:25:52 +020059 * Implementation of the flow rule programmable behaviour for P4Runtime.
Frank Wang0e805082017-07-21 14:37:35 +080060 */
Carmelo Casconee3a7c742017-09-01 01:25:52 +020061public class P4RuntimeFlowRuleProgrammable extends AbstractP4RuntimeHandlerBehaviour implements FlowRuleProgrammable {
Frank Wang0e805082017-07-21 14:37:35 +080062
Carmelo Cascone2308e522017-08-25 02:35:12 +020063 /*
64 When updating an existing rule, if true, we issue a DELETE operation before inserting the new one, otherwise we
65 issue a MODIFY operation. This is useful fore devices that do not support MODIFY operations for table entries.
66 */
Carmelo Casconefe99be92017-09-11 21:55:54 +020067 // TODO: make this attribute configurable by child drivers (e.g. BMv2 or Tofino)
Carmelo Cascone2308e522017-08-25 02:35:12 +020068 private boolean deleteEntryBeforeUpdate = true;
69
Carmelo Cascone2308e522017-08-25 02:35:12 +020070 /*
71 If true, we ignore re-installing rules that are already known in the ENTRY_STORE, i.e. same match key and action.
72 */
Carmelo Casconefe99be92017-09-11 21:55:54 +020073 // TODO: can remove this check as soon as the multi-apply-per-same-flow rule bug is fixed.
Carmelo Cascone2308e522017-08-25 02:35:12 +020074 private boolean checkEntryStoreBeforeUpdate = true;
75
Carmelo Casconefe99be92017-09-11 21:55:54 +020076 /*
77 If true, we avoid querying the device and return the content of the ENTRY_STORE.
78 */
Carmelo Casconef2a5ea62017-09-15 01:19:28 +020079 private boolean ignoreDeviceWhenGet = false;
Carmelo Casconefe99be92017-09-11 21:55:54 +020080
Carmelo Cascone7f75be42017-09-07 14:37:02 +020081 /*
82 If true, we read all direct counters of a table with one request. Otherwise, send as many request as the number of
83 table entries.
84 */
85 // TODO: set to true as soon as the feature is implemented in P4Runtime.
86 private boolean readAllDirectCounters = false;
87
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020088 // Needed to synchronize operations over the same table entry.
Andrea Campanella0288c872017-08-07 18:32:51 +020089 private static final ConcurrentMap<P4RuntimeTableEntryReference, Lock> ENTRY_LOCKS = Maps.newConcurrentMap();
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020090
91 // TODO: replace with distributed store.
Carmelo Cascone2cad9ef2017-08-01 21:52:07 +020092 // Can reuse old BMv2TableEntryService from ONOS 1.6
Andrea Campanella0288c872017-08-07 18:32:51 +020093 private static final ConcurrentMap<P4RuntimeTableEntryReference, P4RuntimeFlowRuleWrapper> ENTRY_STORE =
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020094 Maps.newConcurrentMap();
95
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +020096 private PiPipelineModel pipelineModel;
97 private PiPipelineInterpreter interpreter;
Frank Wang0e805082017-07-21 14:37:35 +080098
Carmelo Casconee3a7c742017-09-01 01:25:52 +020099 @Override
100 protected boolean setupBehaviour() {
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200101
Carmelo Casconee3a7c742017-09-01 01:25:52 +0200102 if (!super.setupBehaviour()) {
Frank Wang0e805082017-07-21 14:37:35 +0800103 return false;
104 }
105
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200106 if (!device.is(PiPipelineInterpreter.class)) {
107 log.warn("Unable to get interpreter of {}", deviceId);
Frank Wang0e805082017-07-21 14:37:35 +0800108 return false;
109 }
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200110 interpreter = device.as(PiPipelineInterpreter.class);
Carmelo Casconee3a7c742017-09-01 01:25:52 +0200111 pipelineModel = pipeconf.pipelineModel();
Frank Wang0e805082017-07-21 14:37:35 +0800112 return true;
113 }
114
115 @Override
116 public Collection<FlowEntry> getFlowEntries() {
117
Carmelo Casconee3a7c742017-09-01 01:25:52 +0200118 if (!setupBehaviour()) {
Frank Wang0e805082017-07-21 14:37:35 +0800119 return Collections.emptyList();
120 }
121
Carmelo Casconefe99be92017-09-11 21:55:54 +0200122 if (ignoreDeviceWhenGet) {
123 return ENTRY_STORE.values().stream()
124 .filter(frWrapper -> frWrapper.rule().deviceId().equals(this.deviceId))
125 .map(frWrapper -> new DefaultFlowEntry(frWrapper.rule(), ADDED, frWrapper.lifeInSeconds(),
126 0, 0))
127 .collect(Collectors.toList());
128 }
129
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200130 ImmutableList.Builder<FlowEntry> resultBuilder = ImmutableList.builder();
131 List<PiTableEntry> inconsistentEntries = Lists.newArrayList();
Frank Wang0e805082017-07-21 14:37:35 +0800132
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200133 for (PiTableModel tableModel : pipelineModel.tables()) {
134
135 PiTableId piTableId = PiTableId.of(tableModel.name());
136
137 // Only dump tables that are exposed by the interpreter.
138 // The reason is that some P4 targets (e.g. BMv2's simple_switch) use more table than those defined in the
139 // P4 program, to implement other capabilities, e.g. action execution in control flow.
140 if (!interpreter.mapPiTableId(piTableId).isPresent()) {
141 continue; // next table
142 }
143
144 Collection<PiTableEntry> installedEntries;
145 try {
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200146 // TODO: optimize by dumping entries and counters in parallel, from ALL tables with the same request.
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200147 installedEntries = client.dumpTable(piTableId, pipeconf).get();
148 } catch (InterruptedException | ExecutionException e) {
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200149 if (!(e.getCause() instanceof StatusRuntimeException)) {
150 // gRPC errors are logged in the client.
151 log.error("Exception while dumping table {} of {}", piTableId, deviceId, e);
152 }
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200153 return Collections.emptyList();
154 }
155
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200156 Map<PiTableEntry, PiCounterCellData> counterCellMap;
157 try {
158 if (interpreter.mapTableCounter(piTableId).isPresent()) {
159 PiCounterId piCounterId = interpreter.mapTableCounter(piTableId).get();
160 Collection<PiCounterCellData> cellDatas;
161 if (readAllDirectCounters) {
162 cellDatas = client.readAllCounterCells(Collections.singleton(piCounterId), pipeconf).get();
163 } else {
164 Set<PiCounterCellId> cellIds = installedEntries.stream()
165 .map(entry -> PiDirectCounterCellId.of(piCounterId, entry))
166 .collect(Collectors.toSet());
167 cellDatas = client.readCounterCells(cellIds, pipeconf).get();
168 }
169 counterCellMap = cellDatas.stream()
170 .collect(Collectors.toMap(c -> ((PiDirectCounterCellId) c.cellId()).tableEntry(), c -> c));
171 } else {
172 counterCellMap = Collections.emptyMap();
173 }
174 installedEntries = client.dumpTable(piTableId, pipeconf).get();
175 } catch (InterruptedException | ExecutionException e) {
176 if (!(e.getCause() instanceof StatusRuntimeException)) {
177 // gRPC errors are logged in the client.
178 log.error("Exception while reading counters of table {} of {}", piTableId, deviceId, e);
179 }
180 counterCellMap = Collections.emptyMap();
181 }
182
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200183 for (PiTableEntry installedEntry : installedEntries) {
184
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200185 P4RuntimeTableEntryReference entryRef = new P4RuntimeTableEntryReference(deviceId,
186 piTableId,
Carmelo Cascone2308e522017-08-25 02:35:12 +0200187 installedEntry.matchKey());
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200188
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200189 if (!ENTRY_STORE.containsKey(entryRef)) {
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200190 // Inconsistent entry
191 inconsistentEntries.add(installedEntry);
192 continue; // next one.
193 }
194
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200195 P4RuntimeFlowRuleWrapper frWrapper = ENTRY_STORE.get(entryRef);
196
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200197 long bytes = 0L;
198 long packets = 0L;
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200199 if (counterCellMap.containsKey(installedEntry)) {
200 PiCounterCellData counterCellData = counterCellMap.get(installedEntry);
201 bytes = counterCellData.bytes();
202 packets = counterCellData.packets();
203 }
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200204
Carmelo Cascone7f75be42017-09-07 14:37:02 +0200205 resultBuilder.add(new DefaultFlowEntry(frWrapper.rule(),
206 ADDED,
207 frWrapper.lifeInSeconds(),
208 packets,
209 bytes));
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200210 }
211 }
212
213 if (inconsistentEntries.size() > 0) {
214 log.warn("Found {} entries in {} that are not known by table entry service," +
Carmelo Cascone2308e522017-08-25 02:35:12 +0200215 " removing them", inconsistentEntries.size(), deviceId);
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200216 inconsistentEntries.forEach(entry -> log.debug(entry.toString()));
217 // Async remove them.
218 client.writeTableEntries(inconsistentEntries, DELETE, pipeconf);
219 }
220
221 return resultBuilder.build();
Frank Wang0e805082017-07-21 14:37:35 +0800222 }
223
224 @Override
225 public Collection<FlowRule> applyFlowRules(Collection<FlowRule> rules) {
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200226 return processFlowRules(rules, APPLY);
Frank Wang0e805082017-07-21 14:37:35 +0800227 }
228
229 @Override
230 public Collection<FlowRule> removeFlowRules(Collection<FlowRule> rules) {
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200231 return processFlowRules(rules, REMOVE);
Frank Wang0e805082017-07-21 14:37:35 +0800232 }
233
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200234 private Collection<FlowRule> processFlowRules(Collection<FlowRule> rules, Operation operation) {
Frank Wang0e805082017-07-21 14:37:35 +0800235
Carmelo Casconee3a7c742017-09-01 01:25:52 +0200236 if (!setupBehaviour()) {
Frank Wang0e805082017-07-21 14:37:35 +0800237 return Collections.emptyList();
238 }
239
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200240 ImmutableList.Builder<FlowRule> processedFlowRuleListBuilder = ImmutableList.builder();
241
242 // TODO: send write operations in bulk (e.g. all entries to insert, modify or delete).
243 // Instead of calling the client for each one of them.
244
245 for (FlowRule rule : rules) {
246
247 PiTableEntry piTableEntry;
248
Frank Wang0e805082017-07-21 14:37:35 +0800249 try {
Carmelo Cascone87b9b392017-10-02 18:33:20 +0200250 piTableEntry = piTranslationService.translateFlowRule(rule, pipeconf);
251 } catch (PiTranslationService.PiTranslationException e) {
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200252 log.warn("Unable to translate flow rule: {} - {}", e.getMessage(), rule);
253 continue; // next rule
Frank Wang0e805082017-07-21 14:37:35 +0800254 }
Frank Wang0e805082017-07-21 14:37:35 +0800255
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200256 PiTableId tableId = piTableEntry.table();
Andrea Campanella0288c872017-08-07 18:32:51 +0200257 P4RuntimeTableEntryReference entryRef = new P4RuntimeTableEntryReference(deviceId,
Carmelo Cascone2308e522017-08-25 02:35:12 +0200258 tableId, piTableEntry.matchKey());
Frank Wang0e805082017-07-21 14:37:35 +0800259
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200260 Lock lock = ENTRY_LOCKS.computeIfAbsent(entryRef, k -> new ReentrantLock());
261 lock.lock();
Frank Wang0e805082017-07-21 14:37:35 +0800262
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200263 try {
264
Andrea Campanella0288c872017-08-07 18:32:51 +0200265 P4RuntimeFlowRuleWrapper frWrapper = ENTRY_STORE.get(entryRef);
Carmelo Cascone2308e522017-08-25 02:35:12 +0200266 WriteOperationType opType = null;
267 boolean doApply = true;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200268
Andrea Campanella0288c872017-08-07 18:32:51 +0200269 if (operation == APPLY) {
Carmelo Cascone2308e522017-08-25 02:35:12 +0200270 if (frWrapper == null) {
271 // Entry is first-timer.
272 opType = INSERT;
273 } else {
274 // This match key already exists in the device.
275 if (checkEntryStoreBeforeUpdate &&
276 piTableEntry.action().equals(frWrapper.piTableEntry().action())) {
277 doApply = false;
278 log.debug("Ignoring re-apply of existing entry: {}", piTableEntry);
279 }
280 if (doApply) {
281 if (deleteEntryBeforeUpdate) {
282 // We've seen some strange error when trying to modify existing flow rules.
283 // Remove before re-adding the modified one.
284 try {
285 if (client.writeTableEntries(newArrayList(piTableEntry), DELETE, pipeconf).get()) {
286 frWrapper = null;
287 } else {
288 log.warn("Unable to DELETE table entry (before re-adding) in {}: {}",
289 deviceId, piTableEntry);
290 }
291 } catch (InterruptedException | ExecutionException e) {
292 log.warn("Exception while deleting table entry:", operation.name(), e);
293 }
294 opType = INSERT;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200295 } else {
Carmelo Cascone2308e522017-08-25 02:35:12 +0200296 opType = MODIFY;
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200297 }
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200298 }
299 }
300 } else {
301 opType = DELETE;
Frank Wang0e805082017-07-21 14:37:35 +0800302 }
Frank Wang0e805082017-07-21 14:37:35 +0800303
Carmelo Cascone2308e522017-08-25 02:35:12 +0200304 if (doApply) {
305 try {
306 if (client.writeTableEntries(newArrayList(piTableEntry), opType, pipeconf).get()) {
307 processedFlowRuleListBuilder.add(rule);
308 if (operation == APPLY) {
309 frWrapper = new P4RuntimeFlowRuleWrapper(rule, piTableEntry,
310 System.currentTimeMillis());
311 } else {
312 frWrapper = null;
313 }
314 } else {
315 log.warn("Unable to {} table entry in {}: {}", opType.name(), deviceId, piTableEntry);
316 }
317 } catch (InterruptedException | ExecutionException e) {
318 log.warn("Exception while performing {} table entry operation:", operation.name(), e);
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200319 }
Carmelo Cascone2308e522017-08-25 02:35:12 +0200320 } else {
321 processedFlowRuleListBuilder.add(rule);
Carmelo Cascone0b22d8f2017-07-31 07:22:27 +0200322 }
323
324 // Update entryRef binding in table entry service.
325 if (frWrapper != null) {
326 ENTRY_STORE.put(entryRef, frWrapper);
327 } else {
328 ENTRY_STORE.remove(entryRef);
329 }
330
331 } finally {
332 lock.unlock();
333 }
334 }
335
336 return processedFlowRuleListBuilder.build();
337 }
338
339 enum Operation {
340 APPLY, REMOVE
Frank Wang0e805082017-07-21 14:37:35 +0800341 }
342}