blob: 61764f5fd5fefa635726471466b21ab7ed83707f [file] [log] [blame]
Madan Jampani86940d92015-05-06 11:47:57 -07001 /*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Madan Jampani86940d92015-05-06 11:47:57 -07003 *
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 */
16package org.onosproject.store.flow.impl;
17
Brian O'Connora3e5cd52015-12-05 15:59:19 -080018 import java.util.Collections;
Ray Milkey2b6ff422016-08-26 13:03:15 -070019 import java.util.Dictionary;
20 import java.util.HashSet;
21 import java.util.List;
22 import java.util.Map;
23 import java.util.Objects;
24 import java.util.Set;
25 import java.util.concurrent.ExecutorService;
26 import java.util.concurrent.Executors;
27 import java.util.concurrent.ScheduledExecutorService;
28 import java.util.concurrent.ScheduledFuture;
29 import java.util.concurrent.TimeUnit;
30 import java.util.concurrent.atomic.AtomicInteger;
31 import java.util.concurrent.atomic.AtomicReference;
32 import java.util.stream.Collectors;
33
34 import org.apache.felix.scr.annotations.Activate;
35 import org.apache.felix.scr.annotations.Component;
36 import org.apache.felix.scr.annotations.Deactivate;
37 import org.apache.felix.scr.annotations.Modified;
38 import org.apache.felix.scr.annotations.Property;
39 import org.apache.felix.scr.annotations.Reference;
40 import org.apache.felix.scr.annotations.ReferenceCardinality;
41 import org.apache.felix.scr.annotations.Service;
42 import org.onlab.util.KryoNamespace;
43 import org.onlab.util.Tools;
44 import org.onosproject.cfg.ComponentConfigService;
45 import org.onosproject.cluster.ClusterService;
46 import org.onosproject.cluster.NodeId;
47 import org.onosproject.core.CoreService;
48 import org.onosproject.core.IdGenerator;
49 import org.onosproject.mastership.MastershipService;
50 import org.onosproject.net.DeviceId;
51 import org.onosproject.net.device.DeviceService;
52 import org.onosproject.net.flow.CompletedBatchOperation;
53 import org.onosproject.net.flow.DefaultFlowEntry;
54 import org.onosproject.net.flow.FlowEntry;
55 import org.onosproject.net.flow.FlowEntry.FlowEntryState;
56 import org.onosproject.net.flow.FlowId;
57 import org.onosproject.net.flow.FlowRule;
58 import org.onosproject.net.flow.FlowRuleBatchEntry;
59 import org.onosproject.net.flow.FlowRuleBatchEntry.FlowRuleOperation;
60 import org.onosproject.net.flow.FlowRuleBatchEvent;
61 import org.onosproject.net.flow.FlowRuleBatchOperation;
62 import org.onosproject.net.flow.FlowRuleBatchRequest;
63 import org.onosproject.net.flow.FlowRuleEvent;
64 import org.onosproject.net.flow.FlowRuleEvent.Type;
65 import org.onosproject.net.flow.FlowRuleService;
66 import org.onosproject.net.flow.FlowRuleStore;
67 import org.onosproject.net.flow.FlowRuleStoreDelegate;
68 import org.onosproject.net.flow.StoredFlowEntry;
69 import org.onosproject.net.flow.TableStatisticsEntry;
70 import org.onosproject.persistence.PersistenceService;
71 import org.onosproject.store.AbstractStore;
72 import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
73 import org.onosproject.store.cluster.messaging.ClusterMessage;
74 import org.onosproject.store.cluster.messaging.ClusterMessageHandler;
75 import org.onosproject.store.flow.ReplicaInfoEvent;
76 import org.onosproject.store.flow.ReplicaInfoEventListener;
77 import org.onosproject.store.flow.ReplicaInfoService;
78 import org.onosproject.store.impl.MastershipBasedTimestamp;
79 import org.onosproject.store.serializers.KryoNamespaces;
80 import org.onosproject.store.service.EventuallyConsistentMap;
81 import org.onosproject.store.service.EventuallyConsistentMapEvent;
82 import org.onosproject.store.service.EventuallyConsistentMapListener;
83 import org.onosproject.store.service.Serializer;
84 import org.onosproject.store.service.StorageService;
85 import org.onosproject.store.service.WallClockTimestamp;
86 import org.osgi.service.component.ComponentContext;
87 import org.slf4j.Logger;
88
89 import com.google.common.collect.ImmutableList;
90 import com.google.common.collect.Iterables;
91 import com.google.common.collect.Maps;
92 import com.google.common.collect.Sets;
93 import com.google.common.util.concurrent.Futures;
Madan Jampani86940d92015-05-06 11:47:57 -070094
Brian O'Connora3e5cd52015-12-05 15:59:19 -080095 import static com.google.common.base.Strings.isNullOrEmpty;
Ray Milkey2b6ff422016-08-26 13:03:15 -070096 import static org.onlab.util.Tools.get;
97 import static org.onlab.util.Tools.groupedThreads;
98 import static org.onosproject.net.flow.FlowRuleEvent.Type.RULE_REMOVED;
99 import static org.onosproject.store.flow.ReplicaInfoEvent.Type.MASTER_CHANGED;
100 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.APPLY_BATCH_FLOWS;
101 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.FLOW_TABLE_BACKUP;
102 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.GET_DEVICE_FLOW_ENTRIES;
103 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.GET_FLOW_ENTRY;
104 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.REMOTE_APPLY_COMPLETED;
105 import static org.onosproject.store.flow.impl.FlowStoreMessageSubjects.REMOVE_FLOW_ENTRY;
106 import static org.slf4j.LoggerFactory.getLogger;
Madan Jampani86940d92015-05-06 11:47:57 -0700107
108/**
109 * Manages inventory of flow rules using a distributed state management protocol.
110 */
Sho SHIMIZU5c396e32016-08-12 15:19:12 -0700111@Component(immediate = true)
Madan Jampani86940d92015-05-06 11:47:57 -0700112@Service
Madan Jampani37d04c62016-04-25 15:53:55 -0700113public class DistributedFlowRuleStore
Madan Jampani86940d92015-05-06 11:47:57 -0700114 extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate>
115 implements FlowRuleStore {
116
117 private final Logger log = getLogger(getClass());
118
119 private static final int MESSAGE_HANDLER_THREAD_POOL_SIZE = 8;
120 private static final boolean DEFAULT_BACKUP_ENABLED = true;
Madan Jampanic6d69f72016-07-15 15:47:12 -0700121 private static final int DEFAULT_MAX_BACKUP_COUNT = 2;
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700122 private static final boolean DEFAULT_PERSISTENCE_ENABLED = false;
Madan Jampani08bf17b2015-05-06 16:25:26 -0700123 private static final int DEFAULT_BACKUP_PERIOD_MILLIS = 2000;
Madan Jampani86940d92015-05-06 11:47:57 -0700124 private static final long FLOW_RULE_STORE_TIMEOUT_MILLIS = 5000;
Madan Jampaniadea8902015-06-04 17:39:45 -0700125 // number of devices whose flow entries will be backed up in one communication round
126 private static final int FLOW_TABLE_BACKUP_BATCH_SIZE = 1;
Madan Jampani86940d92015-05-06 11:47:57 -0700127
128 @Property(name = "msgHandlerPoolSize", intValue = MESSAGE_HANDLER_THREAD_POOL_SIZE,
129 label = "Number of threads in the message handler pool")
130 private int msgHandlerPoolSize = MESSAGE_HANDLER_THREAD_POOL_SIZE;
131
132 @Property(name = "backupEnabled", boolValue = DEFAULT_BACKUP_ENABLED,
133 label = "Indicates whether backups are enabled or not")
Madan Jampanic6d69f72016-07-15 15:47:12 -0700134 private volatile boolean backupEnabled = DEFAULT_BACKUP_ENABLED;
Madan Jampani86940d92015-05-06 11:47:57 -0700135
Madan Jampani08bf17b2015-05-06 16:25:26 -0700136 @Property(name = "backupPeriod", intValue = DEFAULT_BACKUP_PERIOD_MILLIS,
137 label = "Delay in ms between successive backup runs")
138 private int backupPeriod = DEFAULT_BACKUP_PERIOD_MILLIS;
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700139 @Property(name = "persistenceEnabled", boolValue = false,
140 label = "Indicates whether or not changes in the flow table should be persisted to disk.")
141 private boolean persistenceEnabled = DEFAULT_PERSISTENCE_ENABLED;
Madan Jampani08bf17b2015-05-06 16:25:26 -0700142
Madan Jampanic6d69f72016-07-15 15:47:12 -0700143 @Property(name = "backupCount", intValue = DEFAULT_MAX_BACKUP_COUNT,
144 label = "Max number of backup copies for each device")
145 private volatile int backupCount = DEFAULT_MAX_BACKUP_COUNT;
146
Madan Jampani86940d92015-05-06 11:47:57 -0700147 private InternalFlowTable flowTable = new InternalFlowTable();
148
149 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
150 protected ReplicaInfoService replicaInfoManager;
151
152 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
153 protected ClusterCommunicationService clusterCommunicator;
154
155 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
156 protected ClusterService clusterService;
157
158 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
159 protected DeviceService deviceService;
160
161 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
162 protected CoreService coreService;
163
164 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
165 protected ComponentConfigService configService;
166
167 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
168 protected MastershipService mastershipService;
169
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700170 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
171 protected PersistenceService persistenceService;
172
Madan Jampani86940d92015-05-06 11:47:57 -0700173 private Map<Long, NodeId> pendingResponses = Maps.newConcurrentMap();
174 private ExecutorService messageHandlingExecutor;
Madan Jampani71c32ca2016-06-22 08:23:18 -0700175 private ExecutorService eventHandler;
Madan Jampani86940d92015-05-06 11:47:57 -0700176
Madan Jampani08bf17b2015-05-06 16:25:26 -0700177 private ScheduledFuture<?> backupTask;
Madan Jampani86940d92015-05-06 11:47:57 -0700178 private final ScheduledExecutorService backupSenderExecutor =
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700179 Executors.newSingleThreadScheduledExecutor(groupedThreads("onos/flow", "backup-sender", log));
Madan Jampani86940d92015-05-06 11:47:57 -0700180
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700181 private EventuallyConsistentMap<DeviceId, List<TableStatisticsEntry>> deviceTableStats;
182 private final EventuallyConsistentMapListener<DeviceId, List<TableStatisticsEntry>> tableStatsListener =
183 new InternalTableStatsListener();
184
185 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
186 protected StorageService storageService;
187
Madan Jampani884d4432016-08-23 10:46:55 -0700188 protected final Serializer serializer = Serializer.using(KryoNamespaces.API);
Madan Jampani86940d92015-05-06 11:47:57 -0700189
Madan Jampani884d4432016-08-23 10:46:55 -0700190 protected final KryoNamespace.Builder serializerBuilder = KryoNamespace.newBuilder()
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700191 .register(KryoNamespaces.API)
192 .register(MastershipBasedTimestamp.class);
193
194
Madan Jampani86940d92015-05-06 11:47:57 -0700195 private IdGenerator idGenerator;
196 private NodeId local;
197
198 @Activate
199 public void activate(ComponentContext context) {
200 configService.registerProperties(getClass());
201
202 idGenerator = coreService.getIdGenerator(FlowRuleService.FLOW_OP_TOPIC);
203
204 local = clusterService.getLocalNode().id();
205
Madan Jampani71c32ca2016-06-22 08:23:18 -0700206 eventHandler = Executors.newSingleThreadExecutor(
207 groupedThreads("onos/flow", "event-handler", log));
Madan Jampani86940d92015-05-06 11:47:57 -0700208 messageHandlingExecutor = Executors.newFixedThreadPool(
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700209 msgHandlerPoolSize, groupedThreads("onos/store/flow", "message-handlers", log));
Madan Jampani86940d92015-05-06 11:47:57 -0700210
211 registerMessageHandlers(messageHandlingExecutor);
212
Madan Jampani08bf17b2015-05-06 16:25:26 -0700213 if (backupEnabled) {
Madan Jampanif7536ab2015-05-07 23:23:23 -0700214 replicaInfoManager.addListener(flowTable);
Madan Jampani08bf17b2015-05-06 16:25:26 -0700215 backupTask = backupSenderExecutor.scheduleWithFixedDelay(
216 flowTable::backup,
217 0,
218 backupPeriod,
219 TimeUnit.MILLISECONDS);
220 }
Madan Jampani86940d92015-05-06 11:47:57 -0700221
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700222 deviceTableStats = storageService.<DeviceId, List<TableStatisticsEntry>>eventuallyConsistentMapBuilder()
223 .withName("onos-flow-table-stats")
Madan Jampani884d4432016-08-23 10:46:55 -0700224 .withSerializer(serializerBuilder)
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700225 .withAntiEntropyPeriod(5, TimeUnit.SECONDS)
226 .withTimestampProvider((k, v) -> new WallClockTimestamp())
227 .withTombstonesDisabled()
228 .build();
229 deviceTableStats.addListener(tableStatsListener);
230
Madan Jampani86940d92015-05-06 11:47:57 -0700231 logConfig("Started");
232 }
233
234 @Deactivate
235 public void deactivate(ComponentContext context) {
Madan Jampanif7536ab2015-05-07 23:23:23 -0700236 if (backupEnabled) {
237 replicaInfoManager.removeListener(flowTable);
238 backupTask.cancel(true);
239 }
Madan Jampani86940d92015-05-06 11:47:57 -0700240 configService.unregisterProperties(getClass(), false);
241 unregisterMessageHandlers();
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700242 deviceTableStats.removeListener(tableStatsListener);
243 deviceTableStats.destroy();
Madan Jampani71c32ca2016-06-22 08:23:18 -0700244 eventHandler.shutdownNow();
Madan Jampani86940d92015-05-06 11:47:57 -0700245 messageHandlingExecutor.shutdownNow();
246 backupSenderExecutor.shutdownNow();
247 log.info("Stopped");
248 }
249
250 @SuppressWarnings("rawtypes")
251 @Modified
252 public void modified(ComponentContext context) {
253 if (context == null) {
254 backupEnabled = DEFAULT_BACKUP_ENABLED;
255 logConfig("Default config");
256 return;
257 }
258
259 Dictionary properties = context.getProperties();
260 int newPoolSize;
261 boolean newBackupEnabled;
Madan Jampani08bf17b2015-05-06 16:25:26 -0700262 int newBackupPeriod;
Madan Jampanic6d69f72016-07-15 15:47:12 -0700263 int newBackupCount;
Madan Jampani86940d92015-05-06 11:47:57 -0700264 try {
265 String s = get(properties, "msgHandlerPoolSize");
266 newPoolSize = isNullOrEmpty(s) ? msgHandlerPoolSize : Integer.parseInt(s.trim());
267
268 s = get(properties, "backupEnabled");
269 newBackupEnabled = isNullOrEmpty(s) ? backupEnabled : Boolean.parseBoolean(s.trim());
270
Madan Jampani08bf17b2015-05-06 16:25:26 -0700271 s = get(properties, "backupPeriod");
272 newBackupPeriod = isNullOrEmpty(s) ? backupPeriod : Integer.parseInt(s.trim());
273
Madan Jampanic6d69f72016-07-15 15:47:12 -0700274 s = get(properties, "backupCount");
275 newBackupCount = isNullOrEmpty(s) ? backupCount : Integer.parseInt(s.trim());
Madan Jampani86940d92015-05-06 11:47:57 -0700276 } catch (NumberFormatException | ClassCastException e) {
277 newPoolSize = MESSAGE_HANDLER_THREAD_POOL_SIZE;
278 newBackupEnabled = DEFAULT_BACKUP_ENABLED;
Madan Jampani08bf17b2015-05-06 16:25:26 -0700279 newBackupPeriod = DEFAULT_BACKUP_PERIOD_MILLIS;
Madan Jampanic6d69f72016-07-15 15:47:12 -0700280 newBackupCount = DEFAULT_MAX_BACKUP_COUNT;
Madan Jampani86940d92015-05-06 11:47:57 -0700281 }
282
Madan Jampani08bf17b2015-05-06 16:25:26 -0700283 boolean restartBackupTask = false;
Madan Jampani86940d92015-05-06 11:47:57 -0700284 if (newBackupEnabled != backupEnabled) {
285 backupEnabled = newBackupEnabled;
Madan Jampanif7536ab2015-05-07 23:23:23 -0700286 if (!backupEnabled) {
287 replicaInfoManager.removeListener(flowTable);
288 if (backupTask != null) {
289 backupTask.cancel(false);
290 backupTask = null;
291 }
292 } else {
293 replicaInfoManager.addListener(flowTable);
Madan Jampani08bf17b2015-05-06 16:25:26 -0700294 }
295 restartBackupTask = backupEnabled;
296 }
297 if (newBackupPeriod != backupPeriod) {
298 backupPeriod = newBackupPeriod;
299 restartBackupTask = backupEnabled;
300 }
301 if (restartBackupTask) {
302 if (backupTask != null) {
303 // cancel previously running task
304 backupTask.cancel(false);
305 }
306 backupTask = backupSenderExecutor.scheduleWithFixedDelay(
307 flowTable::backup,
308 0,
309 backupPeriod,
310 TimeUnit.MILLISECONDS);
Madan Jampani86940d92015-05-06 11:47:57 -0700311 }
312 if (newPoolSize != msgHandlerPoolSize) {
313 msgHandlerPoolSize = newPoolSize;
314 ExecutorService oldMsgHandler = messageHandlingExecutor;
315 messageHandlingExecutor = Executors.newFixedThreadPool(
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800316 msgHandlerPoolSize, groupedThreads("onos/store/flow", "message-handlers", log));
Madan Jampani86940d92015-05-06 11:47:57 -0700317
318 // replace previously registered handlers.
319 registerMessageHandlers(messageHandlingExecutor);
320 oldMsgHandler.shutdown();
321 }
Madan Jampanic6d69f72016-07-15 15:47:12 -0700322 if (backupCount != newBackupCount) {
323 backupCount = newBackupCount;
324 }
Madan Jampani86940d92015-05-06 11:47:57 -0700325 logConfig("Reconfigured");
326 }
327
328 private void registerMessageHandlers(ExecutorService executor) {
329
330 clusterCommunicator.addSubscriber(APPLY_BATCH_FLOWS, new OnStoreBatch(), executor);
331 clusterCommunicator.<FlowRuleBatchEvent>addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700332 REMOTE_APPLY_COMPLETED, serializer::decode, this::notifyDelegate, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700333 clusterCommunicator.addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700334 GET_FLOW_ENTRY, serializer::decode, flowTable::getFlowEntry, serializer::encode, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700335 clusterCommunicator.addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700336 GET_DEVICE_FLOW_ENTRIES, serializer::decode, flowTable::getFlowEntries, serializer::encode, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700337 clusterCommunicator.addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700338 REMOVE_FLOW_ENTRY, serializer::decode, this::removeFlowRuleInternal, serializer::encode, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700339 clusterCommunicator.addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700340 REMOVE_FLOW_ENTRY, serializer::decode, this::removeFlowRuleInternal, serializer::encode, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700341 clusterCommunicator.addSubscriber(
Madan Jampani884d4432016-08-23 10:46:55 -0700342 FLOW_TABLE_BACKUP, serializer::decode, flowTable::onBackupReceipt, serializer::encode, executor);
Madan Jampani86940d92015-05-06 11:47:57 -0700343 }
344
345 private void unregisterMessageHandlers() {
346 clusterCommunicator.removeSubscriber(REMOVE_FLOW_ENTRY);
347 clusterCommunicator.removeSubscriber(GET_DEVICE_FLOW_ENTRIES);
348 clusterCommunicator.removeSubscriber(GET_FLOW_ENTRY);
349 clusterCommunicator.removeSubscriber(APPLY_BATCH_FLOWS);
350 clusterCommunicator.removeSubscriber(REMOTE_APPLY_COMPLETED);
351 clusterCommunicator.removeSubscriber(FLOW_TABLE_BACKUP);
352 }
353
354 private void logConfig(String prefix) {
Madan Jampanic6d69f72016-07-15 15:47:12 -0700355 log.info("{} with msgHandlerPoolSize = {}; backupEnabled = {}, backupPeriod = {}, backupCount = {}",
356 prefix, msgHandlerPoolSize, backupEnabled, backupPeriod, backupCount);
Madan Jampani86940d92015-05-06 11:47:57 -0700357 }
358
359 // This is not a efficient operation on a distributed sharded
360 // flow store. We need to revisit the need for this operation or at least
361 // make it device specific.
362 @Override
363 public int getFlowRuleCount() {
364 AtomicInteger sum = new AtomicInteger(0);
365 deviceService.getDevices().forEach(device -> sum.addAndGet(Iterables.size(getFlowEntries(device.id()))));
366 return sum.get();
367 }
368
369 @Override
370 public FlowEntry getFlowEntry(FlowRule rule) {
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700371 NodeId master = mastershipService.getMasterFor(rule.deviceId());
Madan Jampani86940d92015-05-06 11:47:57 -0700372
373 if (master == null) {
Thomas Vachuska88fd6902015-08-04 10:08:34 -0700374 log.debug("Failed to getFlowEntry: No master for {}", rule.deviceId());
Madan Jampani86940d92015-05-06 11:47:57 -0700375 return null;
376 }
377
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800378 if (Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700379 return flowTable.getFlowEntry(rule);
380 }
381
382 log.trace("Forwarding getFlowEntry to {}, which is the primary (master) for device {}",
383 master, rule.deviceId());
384
385 return Tools.futureGetOrElse(clusterCommunicator.sendAndReceive(rule,
386 FlowStoreMessageSubjects.GET_FLOW_ENTRY,
Madan Jampani884d4432016-08-23 10:46:55 -0700387 serializer::encode,
388 serializer::decode,
Madan Jampani86940d92015-05-06 11:47:57 -0700389 master),
390 FLOW_RULE_STORE_TIMEOUT_MILLIS,
391 TimeUnit.MILLISECONDS,
392 null);
393 }
394
395 @Override
396 public Iterable<FlowEntry> getFlowEntries(DeviceId deviceId) {
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700397 NodeId master = mastershipService.getMasterFor(deviceId);
Madan Jampani86940d92015-05-06 11:47:57 -0700398
399 if (master == null) {
Thomas Vachuska88fd6902015-08-04 10:08:34 -0700400 log.debug("Failed to getFlowEntries: No master for {}", deviceId);
Madan Jampani86940d92015-05-06 11:47:57 -0700401 return Collections.emptyList();
402 }
403
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800404 if (Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700405 return flowTable.getFlowEntries(deviceId);
406 }
407
408 log.trace("Forwarding getFlowEntries to {}, which is the primary (master) for device {}",
409 master, deviceId);
410
411 return Tools.futureGetOrElse(clusterCommunicator.sendAndReceive(deviceId,
412 FlowStoreMessageSubjects.GET_DEVICE_FLOW_ENTRIES,
Madan Jampani884d4432016-08-23 10:46:55 -0700413 serializer::encode,
414 serializer::decode,
Madan Jampani86940d92015-05-06 11:47:57 -0700415 master),
416 FLOW_RULE_STORE_TIMEOUT_MILLIS,
417 TimeUnit.MILLISECONDS,
418 Collections.emptyList());
419 }
420
421 @Override
422 public void storeFlowRule(FlowRule rule) {
423 storeBatch(new FlowRuleBatchOperation(
Sho SHIMIZU98ffca82015-05-11 08:39:24 -0700424 Collections.singletonList(new FlowRuleBatchEntry(FlowRuleOperation.ADD, rule)),
Madan Jampani86940d92015-05-06 11:47:57 -0700425 rule.deviceId(), idGenerator.getNewId()));
426 }
427
428 @Override
429 public void storeBatch(FlowRuleBatchOperation operation) {
430 if (operation.getOperations().isEmpty()) {
431 notifyDelegate(FlowRuleBatchEvent.completed(
432 new FlowRuleBatchRequest(operation.id(), Collections.emptySet()),
433 new CompletedBatchOperation(true, Collections.emptySet(), operation.deviceId())));
434 return;
435 }
436
437 DeviceId deviceId = operation.deviceId();
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700438 NodeId master = mastershipService.getMasterFor(deviceId);
Madan Jampani86940d92015-05-06 11:47:57 -0700439
440 if (master == null) {
441 log.warn("No master for {} : flows will be marked for removal", deviceId);
442
443 updateStoreInternal(operation);
444
445 notifyDelegate(FlowRuleBatchEvent.completed(
446 new FlowRuleBatchRequest(operation.id(), Collections.emptySet()),
447 new CompletedBatchOperation(true, Collections.emptySet(), operation.deviceId())));
448 return;
449 }
450
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800451 if (Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700452 storeBatchInternal(operation);
453 return;
454 }
455
456 log.trace("Forwarding storeBatch to {}, which is the primary (master) for device {}",
457 master, deviceId);
458
Madan Jampani175e8fd2015-05-20 14:10:45 -0700459 clusterCommunicator.unicast(operation,
460 APPLY_BATCH_FLOWS,
Madan Jampani884d4432016-08-23 10:46:55 -0700461 serializer::encode,
Madan Jampani175e8fd2015-05-20 14:10:45 -0700462 master)
463 .whenComplete((result, error) -> {
Thomas Vachuskaa267ce42015-05-27 16:14:23 -0700464 if (error != null) {
Madan Jampani15f1bc42015-05-28 10:51:52 -0700465 log.warn("Failed to storeBatch: {} to {}", operation, master, error);
Madan Jampani86940d92015-05-06 11:47:57 -0700466
Thomas Vachuskaa267ce42015-05-27 16:14:23 -0700467 Set<FlowRule> allFailures = operation.getOperations()
468 .stream()
469 .map(op -> op.target())
470 .collect(Collectors.toSet());
Madan Jampani86940d92015-05-06 11:47:57 -0700471
Thomas Vachuskaa267ce42015-05-27 16:14:23 -0700472 notifyDelegate(FlowRuleBatchEvent.completed(
473 new FlowRuleBatchRequest(operation.id(), Collections.emptySet()),
474 new CompletedBatchOperation(false, allFailures, deviceId)));
475 }
Madan Jampani175e8fd2015-05-20 14:10:45 -0700476 });
Madan Jampani86940d92015-05-06 11:47:57 -0700477 }
478
479 private void storeBatchInternal(FlowRuleBatchOperation operation) {
480
481 final DeviceId did = operation.deviceId();
482 //final Collection<FlowEntry> ft = flowTable.getFlowEntries(did);
483 Set<FlowRuleBatchEntry> currentOps = updateStoreInternal(operation);
484 if (currentOps.isEmpty()) {
485 batchOperationComplete(FlowRuleBatchEvent.completed(
486 new FlowRuleBatchRequest(operation.id(), Collections.emptySet()),
487 new CompletedBatchOperation(true, Collections.emptySet(), did)));
488 return;
489 }
490
491 notifyDelegate(FlowRuleBatchEvent.requested(new
492 FlowRuleBatchRequest(operation.id(),
493 currentOps), operation.deviceId()));
494 }
495
496 private Set<FlowRuleBatchEntry> updateStoreInternal(FlowRuleBatchOperation operation) {
497 return operation.getOperations().stream().map(
498 op -> {
499 StoredFlowEntry entry;
500 switch (op.operator()) {
501 case ADD:
502 entry = new DefaultFlowEntry(op.target());
503 // always add requested FlowRule
504 // Note: 2 equal FlowEntry may have different treatment
505 flowTable.remove(entry.deviceId(), entry);
506 flowTable.add(entry);
507
508 return op;
509 case REMOVE:
510 entry = flowTable.getFlowEntry(op.target());
511 if (entry != null) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800512 //FIXME modification of "stored" flow entry outside of flow table
Madan Jampani86940d92015-05-06 11:47:57 -0700513 entry.setState(FlowEntryState.PENDING_REMOVE);
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800514 log.debug("Setting state of rule to pending remove: {}", entry);
Madan Jampani86940d92015-05-06 11:47:57 -0700515 return op;
516 }
517 break;
518 case MODIFY:
519 //TODO: figure this out at some point
520 break;
521 default:
522 log.warn("Unknown flow operation operator: {}", op.operator());
523 }
524 return null;
525 }
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800526 ).filter(Objects::nonNull).collect(Collectors.toSet());
Madan Jampani86940d92015-05-06 11:47:57 -0700527 }
528
529 @Override
530 public void deleteFlowRule(FlowRule rule) {
531 storeBatch(
532 new FlowRuleBatchOperation(
Sho SHIMIZU98ffca82015-05-11 08:39:24 -0700533 Collections.singletonList(
Madan Jampani86940d92015-05-06 11:47:57 -0700534 new FlowRuleBatchEntry(
535 FlowRuleOperation.REMOVE,
536 rule)), rule.deviceId(), idGenerator.getNewId()));
537 }
538
539 @Override
Charles Chan93fa7272016-01-26 22:27:02 -0800540 public FlowRuleEvent pendingFlowRule(FlowEntry rule) {
541 if (mastershipService.isLocalMaster(rule.deviceId())) {
542 StoredFlowEntry stored = flowTable.getFlowEntry(rule);
543 if (stored != null &&
544 stored.state() != FlowEntryState.PENDING_ADD) {
545 stored.setState(FlowEntryState.PENDING_ADD);
546 return new FlowRuleEvent(Type.RULE_UPDATED, rule);
547 }
548 }
549 return null;
550 }
551
552 @Override
Madan Jampani86940d92015-05-06 11:47:57 -0700553 public FlowRuleEvent addOrUpdateFlowRule(FlowEntry rule) {
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700554 NodeId master = mastershipService.getMasterFor(rule.deviceId());
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800555 if (Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700556 return addOrUpdateFlowRuleInternal(rule);
557 }
558
559 log.warn("Tried to update FlowRule {} state,"
560 + " while the Node was not the master.", rule);
561 return null;
562 }
563
564 private FlowRuleEvent addOrUpdateFlowRuleInternal(FlowEntry rule) {
565 // check if this new rule is an update to an existing entry
566 StoredFlowEntry stored = flowTable.getFlowEntry(rule);
567 if (stored != null) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800568 //FIXME modification of "stored" flow entry outside of flow table
Madan Jampani86940d92015-05-06 11:47:57 -0700569 stored.setBytes(rule.bytes());
Thiago Santos877914d2016-07-20 18:29:29 -0300570 stored.setLife(rule.life(TimeUnit.NANOSECONDS), TimeUnit.NANOSECONDS);
Madan Jampani86940d92015-05-06 11:47:57 -0700571 stored.setPackets(rule.packets());
Jonathan Hart89e981f2016-01-04 13:59:55 -0800572 stored.setLastSeen();
Madan Jampani86940d92015-05-06 11:47:57 -0700573 if (stored.state() == FlowEntryState.PENDING_ADD) {
574 stored.setState(FlowEntryState.ADDED);
575 return new FlowRuleEvent(Type.RULE_ADDED, rule);
576 }
577 return new FlowRuleEvent(Type.RULE_UPDATED, rule);
578 }
579
580 // TODO: Confirm if this behavior is correct. See SimpleFlowRuleStore
581 // TODO: also update backup if the behavior is correct.
582 flowTable.add(rule);
583 return null;
584 }
585
586 @Override
587 public FlowRuleEvent removeFlowRule(FlowEntry rule) {
588 final DeviceId deviceId = rule.deviceId();
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700589 NodeId master = mastershipService.getMasterFor(deviceId);
Madan Jampani86940d92015-05-06 11:47:57 -0700590
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800591 if (Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700592 // bypass and handle it locally
593 return removeFlowRuleInternal(rule);
594 }
595
596 if (master == null) {
597 log.warn("Failed to removeFlowRule: No master for {}", deviceId);
598 // TODO: revisit if this should be null (="no-op") or Exception
599 return null;
600 }
601
602 log.trace("Forwarding removeFlowRule to {}, which is the master for device {}",
603 master, deviceId);
604
Madan Jampani222229e2016-07-14 10:43:25 -0700605 return Futures.getUnchecked(clusterCommunicator.sendAndReceive(
Madan Jampani86940d92015-05-06 11:47:57 -0700606 rule,
607 REMOVE_FLOW_ENTRY,
Madan Jampani884d4432016-08-23 10:46:55 -0700608 serializer::encode,
609 serializer::decode,
Madan Jampani222229e2016-07-14 10:43:25 -0700610 master));
Madan Jampani86940d92015-05-06 11:47:57 -0700611 }
612
613 private FlowRuleEvent removeFlowRuleInternal(FlowEntry rule) {
614 final DeviceId deviceId = rule.deviceId();
615 // This is where one could mark a rule as removed and still keep it in the store.
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800616 final FlowEntry removed = flowTable.remove(deviceId, rule);
617 // rule may be partial rule that is missing treatment, we should use rule from store instead
618 return removed != null ? new FlowRuleEvent(RULE_REMOVED, removed) : null;
Madan Jampani86940d92015-05-06 11:47:57 -0700619 }
620
621 @Override
Charles Chan0c7c43b2016-01-14 17:39:20 -0800622 public void purgeFlowRule(DeviceId deviceId) {
623 flowTable.purgeFlowRule(deviceId);
624 }
625
626 @Override
Madan Jampani86940d92015-05-06 11:47:57 -0700627 public void batchOperationComplete(FlowRuleBatchEvent event) {
628 //FIXME: need a per device pending response
629 NodeId nodeId = pendingResponses.remove(event.subject().batchId());
630 if (nodeId == null) {
631 notifyDelegate(event);
632 } else {
633 // TODO check unicast return value
Madan Jampani884d4432016-08-23 10:46:55 -0700634 clusterCommunicator.unicast(event, REMOTE_APPLY_COMPLETED, serializer::encode, nodeId);
Madan Jampani86940d92015-05-06 11:47:57 -0700635 //error log: log.warn("Failed to respond to peer for batch operation result");
636 }
637 }
638
639 private final class OnStoreBatch implements ClusterMessageHandler {
640
641 @Override
642 public void handle(final ClusterMessage message) {
Madan Jampani884d4432016-08-23 10:46:55 -0700643 FlowRuleBatchOperation operation = serializer.decode(message.payload());
Madan Jampani86940d92015-05-06 11:47:57 -0700644 log.debug("received batch request {}", operation);
645
646 final DeviceId deviceId = operation.deviceId();
Madan Jampani6bd2d9f2015-05-14 14:10:42 -0700647 NodeId master = mastershipService.getMasterFor(deviceId);
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800648 if (!Objects.equals(local, master)) {
Madan Jampani86940d92015-05-06 11:47:57 -0700649 Set<FlowRule> failures = new HashSet<>(operation.size());
650 for (FlowRuleBatchEntry op : operation.getOperations()) {
651 failures.add(op.target());
652 }
653 CompletedBatchOperation allFailed = new CompletedBatchOperation(false, failures, deviceId);
654 // This node is no longer the master, respond as all failed.
655 // TODO: we might want to wrap response in envelope
656 // to distinguish sw programming failure and hand over
657 // it make sense in the latter case to retry immediately.
Madan Jampani884d4432016-08-23 10:46:55 -0700658 message.respond(serializer.encode(allFailed));
Madan Jampani86940d92015-05-06 11:47:57 -0700659 return;
660 }
661
662 pendingResponses.put(operation.id(), message.sender());
663 storeBatchInternal(operation);
664 }
665 }
666
Madan Jampanic6d69f72016-07-15 15:47:12 -0700667 private class BackupOperation {
668 private final NodeId nodeId;
669 private final DeviceId deviceId;
670
671 public BackupOperation(NodeId nodeId, DeviceId deviceId) {
672 this.nodeId = nodeId;
673 this.deviceId = deviceId;
674 }
675
676 @Override
677 public int hashCode() {
678 return Objects.hash(nodeId, deviceId);
679 }
680
681 @Override
682 public boolean equals(Object other) {
683 if (other != null && other instanceof BackupOperation) {
684 BackupOperation that = (BackupOperation) other;
685 return this.nodeId.equals(that.nodeId) &&
686 this.deviceId.equals(that.deviceId);
687 } else {
688 return false;
689 }
690 }
691 }
692
Madan Jampanif7536ab2015-05-07 23:23:23 -0700693 private class InternalFlowTable implements ReplicaInfoEventListener {
Madan Jampani86940d92015-05-06 11:47:57 -0700694
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800695 //TODO replace the Map<V,V> with ExtendedSet
696 private final Map<DeviceId, Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>>
Madan Jampani5c3766c2015-06-02 15:54:41 -0700697 flowEntries = Maps.newConcurrentMap();
Madan Jampani86940d92015-05-06 11:47:57 -0700698
Madan Jampanic6d69f72016-07-15 15:47:12 -0700699 private final Map<BackupOperation, Long> lastBackupTimes = Maps.newConcurrentMap();
Madan Jampani86940d92015-05-06 11:47:57 -0700700 private final Map<DeviceId, Long> lastUpdateTimes = Maps.newConcurrentMap();
Madan Jampani86940d92015-05-06 11:47:57 -0700701
Madan Jampanif7536ab2015-05-07 23:23:23 -0700702 @Override
703 public void event(ReplicaInfoEvent event) {
Madan Jampani71c32ca2016-06-22 08:23:18 -0700704 eventHandler.execute(() -> handleEvent(event));
705 }
706
707 private void handleEvent(ReplicaInfoEvent event) {
Madan Jampanic6d69f72016-07-15 15:47:12 -0700708 DeviceId deviceId = event.subject();
709 if (!backupEnabled || !mastershipService.isLocalMaster(deviceId)) {
Madan Jampania98bf932015-06-02 12:01:36 -0700710 return;
711 }
Madan Jampanic6d69f72016-07-15 15:47:12 -0700712 if (event.type() == MASTER_CHANGED) {
713 lastUpdateTimes.put(deviceId, System.currentTimeMillis());
Madan Jampanif7536ab2015-05-07 23:23:23 -0700714 }
Madan Jampanic6d69f72016-07-15 15:47:12 -0700715 backupSenderExecutor.schedule(this::backup, 0, TimeUnit.SECONDS);
Madan Jampanif7536ab2015-05-07 23:23:23 -0700716 }
717
Madan Jampaniadea8902015-06-04 17:39:45 -0700718 private void sendBackups(NodeId nodeId, Set<DeviceId> deviceIds) {
719 // split up the devices into smaller batches and send them separately.
720 Iterables.partition(deviceIds, FLOW_TABLE_BACKUP_BATCH_SIZE)
721 .forEach(ids -> backupFlowEntries(nodeId, Sets.newHashSet(ids)));
722 }
723
Madan Jampanif7536ab2015-05-07 23:23:23 -0700724 private void backupFlowEntries(NodeId nodeId, Set<DeviceId> deviceIds) {
Madan Jampaniadea8902015-06-04 17:39:45 -0700725 if (deviceIds.isEmpty()) {
726 return;
727 }
Madan Jampanic6d69f72016-07-15 15:47:12 -0700728 log.debug("Sending flowEntries for devices {} to {} for backup.", deviceIds, nodeId);
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800729 Map<DeviceId, Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>>
730 deviceFlowEntries = Maps.newConcurrentMap();
Ray Milkey2b6ff422016-08-26 13:03:15 -0700731 deviceIds.forEach(id -> deviceFlowEntries.put(id, getFlowTableCopy(id)));
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800732 clusterCommunicator.<Map<DeviceId,
733 Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>>,
734 Set<DeviceId>>
735 sendAndReceive(deviceFlowEntries,
736 FLOW_TABLE_BACKUP,
Madan Jampani884d4432016-08-23 10:46:55 -0700737 serializer::encode,
738 serializer::decode,
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800739 nodeId)
740 .whenComplete((backedupDevices, error) -> {
741 Set<DeviceId> devicesNotBackedup = error != null ?
742 deviceFlowEntries.keySet() :
743 Sets.difference(deviceFlowEntries.keySet(), backedupDevices);
744 if (devicesNotBackedup.size() > 0) {
Ray Milkey2b6ff422016-08-26 13:03:15 -0700745 log.warn("Failed to backup devices: {}. Reason: {}, Node: {}",
746 devicesNotBackedup, error != null ? error.getMessage() : "none",
747 nodeId);
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800748 }
749 if (backedupDevices != null) {
750 backedupDevices.forEach(id -> {
Madan Jampanic6d69f72016-07-15 15:47:12 -0700751 lastBackupTimes.put(new BackupOperation(nodeId, id), System.currentTimeMillis());
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800752 });
753 }
754 });
Madan Jampanif7536ab2015-05-07 23:23:23 -0700755 }
756
Madan Jampani86940d92015-05-06 11:47:57 -0700757 /**
758 * Returns the flow table for specified device.
759 *
760 * @param deviceId identifier of the device
761 * @return Map representing Flow Table of given device.
762 */
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800763 private Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>> getFlowTable(DeviceId deviceId) {
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700764 if (persistenceEnabled) {
765 return flowEntries.computeIfAbsent(deviceId, id -> persistenceService
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800766 .<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>persistentMapBuilder()
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700767 .withName("FlowTable:" + deviceId.toString())
768 .withSerializer(new Serializer() {
769 @Override
770 public <T> byte[] encode(T object) {
Madan Jampani884d4432016-08-23 10:46:55 -0700771 return serializer.encode(object);
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700772 }
773
774 @Override
775 public <T> T decode(byte[] bytes) {
Madan Jampani884d4432016-08-23 10:46:55 -0700776 return serializer.decode(bytes);
Aaron Kruglikova62fdbb2015-10-27 16:32:06 -0700777 }
778 })
779 .build());
780 } else {
781 return flowEntries.computeIfAbsent(deviceId, id -> Maps.newConcurrentMap());
782 }
Madan Jampani86940d92015-05-06 11:47:57 -0700783 }
784
Ray Milkey2b6ff422016-08-26 13:03:15 -0700785 private Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>> getFlowTableCopy(DeviceId deviceId) {
786 Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>> copy = Maps.newHashMap();
787 if (persistenceEnabled) {
788 return flowEntries.computeIfAbsent(deviceId, id -> persistenceService
789 .<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>persistentMapBuilder()
790 .withName("FlowTable:" + deviceId.toString())
791 .withSerializer(new Serializer() {
792 @Override
793 public <T> byte[] encode(T object) {
794 return serializer.encode(object);
795 }
796
797 @Override
798 public <T> T decode(byte[] bytes) {
799 return serializer.decode(bytes);
800 }
801 })
802 .build());
803 } else {
804 flowEntries.computeIfAbsent(deviceId, id -> Maps.newConcurrentMap()).forEach((k, v) -> {
805 copy.put(k, Maps.newHashMap(v));
806 });
807 return copy;
808 }
809 }
810
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800811 private Map<StoredFlowEntry, StoredFlowEntry> getFlowEntriesInternal(DeviceId deviceId, FlowId flowId) {
812 return getFlowTable(deviceId).computeIfAbsent(flowId, id -> Maps.newConcurrentMap());
Madan Jampani86940d92015-05-06 11:47:57 -0700813 }
814
815 private StoredFlowEntry getFlowEntryInternal(FlowRule rule) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800816 return getFlowEntriesInternal(rule.deviceId(), rule.id()).get(rule);
Madan Jampani86940d92015-05-06 11:47:57 -0700817 }
818
819 private Set<FlowEntry> getFlowEntriesInternal(DeviceId deviceId) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800820 return getFlowTable(deviceId).values().stream()
821 .flatMap(m -> m.values().stream())
822 .collect(Collectors.toSet());
Madan Jampani86940d92015-05-06 11:47:57 -0700823 }
824
825 public StoredFlowEntry getFlowEntry(FlowRule rule) {
826 return getFlowEntryInternal(rule);
827 }
828
829 public Set<FlowEntry> getFlowEntries(DeviceId deviceId) {
830 return getFlowEntriesInternal(deviceId);
831 }
832
833 public void add(FlowEntry rule) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800834 getFlowEntriesInternal(rule.deviceId(), rule.id())
835 .compute((StoredFlowEntry) rule, (k, stored) -> {
836 //TODO compare stored and rule timestamps
837 //TODO the key is not updated
838 return (StoredFlowEntry) rule;
839 });
Madan Jampani86940d92015-05-06 11:47:57 -0700840 lastUpdateTimes.put(rule.deviceId(), System.currentTimeMillis());
841 }
842
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800843 public FlowEntry remove(DeviceId deviceId, FlowEntry rule) {
844 final AtomicReference<FlowEntry> removedRule = new AtomicReference<>();
845 getFlowEntriesInternal(rule.deviceId(), rule.id())
846 .computeIfPresent((StoredFlowEntry) rule, (k, stored) -> {
847 if (rule instanceof DefaultFlowEntry) {
848 DefaultFlowEntry toRemove = (DefaultFlowEntry) rule;
849 if (stored instanceof DefaultFlowEntry) {
850 DefaultFlowEntry storedEntry = (DefaultFlowEntry) stored;
851 if (toRemove.created() < storedEntry.created()) {
852 log.debug("Trying to remove more recent flow entry {} (stored: {})",
853 toRemove, stored);
854 // the key is not updated, removedRule remains null
855 return stored;
856 }
857 }
858 }
859 removedRule.set(stored);
860 return null;
861 });
862
863 if (removedRule.get() != null) {
Madan Jampani86940d92015-05-06 11:47:57 -0700864 lastUpdateTimes.put(deviceId, System.currentTimeMillis());
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800865 return removedRule.get();
866 } else {
867 return null;
Madan Jampani86940d92015-05-06 11:47:57 -0700868 }
869 }
870
Charles Chan0c7c43b2016-01-14 17:39:20 -0800871 public void purgeFlowRule(DeviceId deviceId) {
872 flowEntries.remove(deviceId);
873 }
874
Madan Jampanic6d69f72016-07-15 15:47:12 -0700875 private List<NodeId> getBackupNodes(DeviceId deviceId) {
876 // The returned backup node list is in the order of preference i.e. next likely master first.
877 List<NodeId> allPossibleBackupNodes = replicaInfoManager.getReplicaInfoFor(deviceId).backups();
878 return ImmutableList.copyOf(allPossibleBackupNodes)
879 .subList(0, Math.min(allPossibleBackupNodes.size(), backupCount));
Madan Jampani86940d92015-05-06 11:47:57 -0700880 }
881
882 private void backup() {
Madan Jampani08bf17b2015-05-06 16:25:26 -0700883 if (!backupEnabled) {
884 return;
885 }
Madan Jampani86940d92015-05-06 11:47:57 -0700886 try {
Madan Jampani86940d92015-05-06 11:47:57 -0700887 // compute a mapping from node to the set of devices whose flow entries it should backup
888 Map<NodeId, Set<DeviceId>> devicesToBackupByNode = Maps.newHashMap();
Sho SHIMIZUa09e1bb2016-08-01 14:25:25 -0700889 flowEntries.keySet().forEach(deviceId -> {
Madan Jampanic6d69f72016-07-15 15:47:12 -0700890 List<NodeId> backupNodes = getBackupNodes(deviceId);
891 backupNodes.forEach(backupNode -> {
892 if (lastBackupTimes.getOrDefault(new BackupOperation(backupNode, deviceId), 0L)
893 < lastUpdateTimes.getOrDefault(deviceId, 0L)) {
894 devicesToBackupByNode.computeIfAbsent(backupNode,
895 nodeId -> Sets.newHashSet()).add(deviceId);
896 }
897 });
Madan Jampani86940d92015-05-06 11:47:57 -0700898 });
Madan Jampani86940d92015-05-06 11:47:57 -0700899 // send the device flow entries to their respective backup nodes
Madan Jampaniadea8902015-06-04 17:39:45 -0700900 devicesToBackupByNode.forEach(this::sendBackups);
Madan Jampani86940d92015-05-06 11:47:57 -0700901 } catch (Exception e) {
902 log.error("Backup failed.", e);
903 }
904 }
905
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800906 private Set<DeviceId> onBackupReceipt(Map<DeviceId,
907 Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>>> flowTables) {
Madan Jampani7267c552015-05-20 22:39:17 -0700908 log.debug("Received flowEntries for {} to backup", flowTables.keySet());
Madan Jampani654b58a2015-05-22 11:28:11 -0700909 Set<DeviceId> backedupDevices = Sets.newHashSet();
910 try {
Madan Jampania98bf932015-06-02 12:01:36 -0700911 flowTables.forEach((deviceId, deviceFlowTable) -> {
912 // Only process those devices are that not managed by the local node.
Sho SHIMIZU828bc162016-01-13 23:10:43 -0800913 if (!Objects.equals(local, mastershipService.getMasterFor(deviceId))) {
Brian O'Connora3e5cd52015-12-05 15:59:19 -0800914 Map<FlowId, Map<StoredFlowEntry, StoredFlowEntry>> backupFlowTable =
915 getFlowTable(deviceId);
Madan Jampania98bf932015-06-02 12:01:36 -0700916 backupFlowTable.clear();
917 backupFlowTable.putAll(deviceFlowTable);
918 backedupDevices.add(deviceId);
919 }
Madan Jampani08bf17b2015-05-06 16:25:26 -0700920 });
Madan Jampani654b58a2015-05-22 11:28:11 -0700921 } catch (Exception e) {
922 log.warn("Failure processing backup request", e);
923 }
924 return backedupDevices;
Madan Jampani86940d92015-05-06 11:47:57 -0700925 }
926 }
Srikanth Vavilapalli95810f52015-09-14 15:49:56 -0700927
928 @Override
929 public FlowRuleEvent updateTableStatistics(DeviceId deviceId,
930 List<TableStatisticsEntry> tableStats) {
931 deviceTableStats.put(deviceId, tableStats);
932 return null;
933 }
934
935 @Override
936 public Iterable<TableStatisticsEntry> getTableStatistics(DeviceId deviceId) {
937 NodeId master = mastershipService.getMasterFor(deviceId);
938
939 if (master == null) {
940 log.debug("Failed to getTableStats: No master for {}", deviceId);
941 return Collections.emptyList();
942 }
943
944 List<TableStatisticsEntry> tableStats = deviceTableStats.get(deviceId);
945 if (tableStats == null) {
946 return Collections.emptyList();
947 }
948 return ImmutableList.copyOf(tableStats);
949 }
950
951 private class InternalTableStatsListener
952 implements EventuallyConsistentMapListener<DeviceId, List<TableStatisticsEntry>> {
953 @Override
954 public void event(EventuallyConsistentMapEvent<DeviceId,
955 List<TableStatisticsEntry>> event) {
956 //TODO: Generate an event to listeners (do we need?)
957 }
958 }
Madan Jampani86940d92015-05-06 11:47:57 -0700959}