blob: 58cb2155ba7768fc63a6c66aa83f19925953bb0a [file] [log] [blame]
alshabib77b88482015-04-07 15:47:50 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
alshabib77b88482015-04-07 15:47:50 -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.net.flowobjective.impl;
17
Pier Luigi97893112018-03-05 11:09:42 +010018import com.google.common.collect.ImmutableSet;
Saurav Dasf14d9ef2017-12-05 15:00:23 -080019import com.google.common.collect.Lists;
alshabib77b88482015-04-07 15:47:50 -070020import com.google.common.collect.Maps;
Thomas Vachuskad27097c2016-06-14 19:10:41 -070021import com.google.common.collect.Sets;
alshabib77b88482015-04-07 15:47:50 -070022import org.onlab.osgi.DefaultServiceDirectory;
23import org.onlab.osgi.ServiceDirectory;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070024import org.onlab.util.ItemNotFoundException;
Yi Tseng374c5f32017-03-05 22:51:35 -080025import org.onlab.util.Tools;
26import org.onosproject.cfg.ComponentConfigService;
alshabib77b88482015-04-07 15:47:50 -070027import org.onosproject.cluster.ClusterService;
Thomas Vachuskacfeff192017-08-23 15:29:34 -070028import org.onosproject.net.Device;
alshabib77b88482015-04-07 15:47:50 -070029import org.onosproject.net.DeviceId;
Saurav Das24431192016-03-07 19:13:00 -080030import org.onosproject.net.behaviour.NextGroup;
alshabib77b88482015-04-07 15:47:50 -070031import org.onosproject.net.behaviour.Pipeliner;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070032import org.onosproject.net.behaviour.PipelinerContext;
alshabibaebe7752015-04-07 17:45:42 -070033import org.onosproject.net.device.DeviceEvent;
34import org.onosproject.net.device.DeviceListener;
alshabib77b88482015-04-07 15:47:50 -070035import org.onosproject.net.device.DeviceService;
Thomas Vachuskacfeff192017-08-23 15:29:34 -070036import org.onosproject.net.driver.DriverEvent;
alshabib77b88482015-04-07 15:47:50 -070037import org.onosproject.net.driver.DriverHandler;
Thomas Vachuskacfeff192017-08-23 15:29:34 -070038import org.onosproject.net.driver.DriverListener;
alshabib77b88482015-04-07 15:47:50 -070039import org.onosproject.net.driver.DriverService;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070040import org.onosproject.net.flow.FlowRuleService;
alshabib77b88482015-04-07 15:47:50 -070041import org.onosproject.net.flowobjective.FilteringObjective;
42import org.onosproject.net.flowobjective.FlowObjectiveService;
alshabib2a441c62015-04-13 18:39:38 -070043import org.onosproject.net.flowobjective.FlowObjectiveStore;
44import org.onosproject.net.flowobjective.FlowObjectiveStoreDelegate;
alshabib77b88482015-04-07 15:47:50 -070045import org.onosproject.net.flowobjective.ForwardingObjective;
46import org.onosproject.net.flowobjective.NextObjective;
alshabib910aff12015-04-09 16:55:57 -070047import org.onosproject.net.flowobjective.Objective;
Saurav Das1547b3f2017-05-05 17:01:08 -070048import org.onosproject.net.flowobjective.Objective.Operation;
Jonathan Hart17d00452015-04-21 17:10:00 -070049import org.onosproject.net.flowobjective.ObjectiveError;
alshabib2a441c62015-04-13 18:39:38 -070050import org.onosproject.net.flowobjective.ObjectiveEvent;
Saurav Das423fe2b2015-12-04 10:52:59 -080051import org.onosproject.net.flowobjective.ObjectiveEvent.Type;
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070052import org.onosproject.net.group.GroupService;
Yi Tseng374c5f32017-03-05 22:51:35 -080053import org.osgi.service.component.ComponentContext;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070054import org.osgi.service.component.annotations.Activate;
55import org.osgi.service.component.annotations.Component;
56import org.osgi.service.component.annotations.Deactivate;
57import org.osgi.service.component.annotations.Modified;
58import org.osgi.service.component.annotations.Reference;
59import org.osgi.service.component.annotations.ReferenceCardinality;
alshabib77b88482015-04-07 15:47:50 -070060import org.slf4j.Logger;
61import org.slf4j.LoggerFactory;
62
Saurav Das24431192016-03-07 19:13:00 -080063import java.util.ArrayList;
Saurav Das24431192016-03-07 19:13:00 -080064import java.util.List;
alshabib77b88482015-04-07 15:47:50 -070065import java.util.Map;
Saurav Das8a0732e2015-11-20 15:27:53 -080066import java.util.Objects;
alshabib2a441c62015-04-13 18:39:38 -070067import java.util.Set;
Jonathan Hart17d00452015-04-21 17:10:00 -070068import java.util.concurrent.ExecutorService;
alshabib77b88482015-04-07 15:47:50 -070069
Sho SHIMIZUf45d85d2015-07-01 14:39:11 -070070import static com.google.common.base.Preconditions.checkNotNull;
Yi Tseng374c5f32017-03-05 22:51:35 -080071import static com.google.common.base.Strings.isNullOrEmpty;
Thomas Vachuska866b46a2015-04-30 00:26:55 -070072import static java.util.concurrent.Executors.newFixedThreadPool;
Jonathan Hart17d00452015-04-21 17:10:00 -070073import static org.onlab.util.Tools.groupedThreads;
Thomas Vachuskacfeff192017-08-23 15:29:34 -070074import static org.onosproject.net.AnnotationKeys.DRIVER;
Ray Milkeyd04e2272018-10-16 18:20:18 -070075import static org.onosproject.net.OsgiPropertyConstants.FOM_NUM_THREADS;
76import static org.onosproject.net.OsgiPropertyConstants.FOM_NUM_THREADS_DEFAULT;
Changhoon Yoon541ef712015-05-23 17:18:34 +090077import static org.onosproject.security.AppGuard.checkPermission;
Thomas Vachuskad27097c2016-06-14 19:10:41 -070078import static org.onosproject.security.AppPermission.Type.FLOWRULE_WRITE;
alshabib77b88482015-04-07 15:47:50 -070079
80/**
Thomas Vachuskaca88bb72015-04-08 19:38:02 -070081 * Provides implementation of the flow objective programming service.
alshabib77b88482015-04-07 15:47:50 -070082 */
Ray Milkeyd04e2272018-10-16 18:20:18 -070083@Component(
84 enabled = false,
85 service = FlowObjectiveService.class,
86 property = {
Ray Milkey2d7bca12018-10-17 14:51:52 -070087 FOM_NUM_THREADS + ":Integer=" + FOM_NUM_THREADS_DEFAULT
Ray Milkeyd04e2272018-10-16 18:20:18 -070088 }
89)
alshabib77b88482015-04-07 15:47:50 -070090public class FlowObjectiveManager implements FlowObjectiveService {
91
Charles Chana7903c82018-03-15 20:14:16 -070092 private static final int INSTALL_RETRY_ATTEMPTS = 5;
93 private static final long INSTALL_RETRY_INTERVAL = 1000; // ms
alshabib77b88482015-04-07 15:47:50 -070094
Yi Tseng374c5f32017-03-05 22:51:35 -080095 private static final String WORKER_PATTERN = "objective-installer-%d";
96 private static final String GROUP_THREAD_NAME = "onos/objective-installer";
97 private static final String NUM_THREAD = "numThreads";
98
Jonathan Hart17d00452015-04-21 17:10:00 -070099 private final Logger log = LoggerFactory.getLogger(getClass());
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700100
Thomas Vachuskaf566fa22018-10-30 14:03:36 -0700101 /** Number of worker threads. */
Ray Milkeyd04e2272018-10-16 18:20:18 -0700102 private int numThreads = FOM_NUM_THREADS_DEFAULT;
Yi Tseng374c5f32017-03-05 22:51:35 -0800103
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700104 @Reference(cardinality = ReferenceCardinality.MANDATORY)
alshabib77b88482015-04-07 15:47:50 -0700105 protected DriverService driverService;
106
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700107 @Reference(cardinality = ReferenceCardinality.MANDATORY)
alshabib77b88482015-04-07 15:47:50 -0700108 protected DeviceService deviceService;
109
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700110 @Reference(cardinality = ReferenceCardinality.MANDATORY)
alshabib77b88482015-04-07 15:47:50 -0700111 protected ClusterService clusterService;
112
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700113 // Note: The following dependencies are added on behalf of the pipeline
114 // driver behaviours to assure these services are available for their
115 // initialization.
Charles Chana7903c82018-03-15 20:14:16 -0700116 @SuppressWarnings("unused")
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700117 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700118 protected FlowRuleService flowRuleService;
119
Charles Chana7903c82018-03-15 20:14:16 -0700120 @SuppressWarnings("unused")
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700121 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700122 protected GroupService groupService;
123
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700124 @Reference(cardinality = ReferenceCardinality.MANDATORY)
alshabib2a441c62015-04-13 18:39:38 -0700125 protected FlowObjectiveStore flowObjectiveStore;
126
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700127 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Yi Tseng374c5f32017-03-05 22:51:35 -0800128 protected ComponentConfigService cfgService;
129
Charles Chana7903c82018-03-15 20:14:16 -0700130 final FlowObjectiveStoreDelegate delegate = new InternalStoreDelegate();
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700131
132 private final Map<DeviceId, DriverHandler> driverHandlers = Maps.newConcurrentMap();
Charles Chana7903c82018-03-15 20:14:16 -0700133 protected final Map<DeviceId, Pipeliner> pipeliners = Maps.newConcurrentMap();
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700134
135 private final PipelinerContext context = new InnerPipelineContext();
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700136 private final DeviceListener deviceListener = new InnerDeviceListener();
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700137 private final DriverListener driverListener = new InnerDriverListener();
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700138
Charles Chana7903c82018-03-15 20:14:16 -0700139 private ServiceDirectory serviceDirectory = new DefaultServiceDirectory();
alshabib910aff12015-04-09 16:55:57 -0700140
Saurav Das1547b3f2017-05-05 17:01:08 -0700141 // local stores for queuing fwd and next objectives that are waiting for an
142 // associated next objective execution to complete. The signal for completed
143 // execution comes from a pipeline driver, in this or another controller
144 // instance, via the DistributedFlowObjectiveStore.
Charles Chana7903c82018-03-15 20:14:16 -0700145 // TODO Making these cache and timeout the entries
146 final Map<Integer, Set<PendingFlowObjective>> pendingForwards = Maps.newConcurrentMap();
147 final Map<Integer, List<PendingFlowObjective>> pendingNexts = Maps.newConcurrentMap();
alshabib2a441c62015-04-13 18:39:38 -0700148
Saurav Das24431192016-03-07 19:13:00 -0800149 // local store to track which nextObjectives were sent to which device
150 // for debugging purposes
151 private Map<Integer, DeviceId> nextToDevice = Maps.newConcurrentMap();
152
Charles Chana7903c82018-03-15 20:14:16 -0700153 ExecutorService executorService;
alshabib2a441c62015-04-13 18:39:38 -0700154
alshabib77b88482015-04-07 15:47:50 -0700155 @Activate
156 protected void activate() {
Yi Tseng374c5f32017-03-05 22:51:35 -0800157 cfgService.registerProperties(getClass());
158 executorService = newFixedThreadPool(numThreads,
159 groupedThreads(GROUP_THREAD_NAME, WORKER_PATTERN, log));
alshabib2a441c62015-04-13 18:39:38 -0700160 flowObjectiveStore.setDelegate(delegate);
alshabibaebe7752015-04-07 17:45:42 -0700161 deviceService.addListener(deviceListener);
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700162 driverService.addListener(driverListener);
alshabib77b88482015-04-07 15:47:50 -0700163 log.info("Started");
164 }
165
166 @Deactivate
167 protected void deactivate() {
Yi Tseng374c5f32017-03-05 22:51:35 -0800168 cfgService.unregisterProperties(getClass(), false);
alshabib2a441c62015-04-13 18:39:38 -0700169 flowObjectiveStore.unsetDelegate(delegate);
alshabibaebe7752015-04-07 17:45:42 -0700170 deviceService.removeListener(deviceListener);
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700171 driverService.removeListener(driverListener);
Thomas Vachuska866b46a2015-04-30 00:26:55 -0700172 executorService.shutdown();
173 pipeliners.clear();
174 driverHandlers.clear();
Saurav Das24431192016-03-07 19:13:00 -0800175 nextToDevice.clear();
alshabib77b88482015-04-07 15:47:50 -0700176 log.info("Stopped");
177 }
178
Yi Tseng374c5f32017-03-05 22:51:35 -0800179 @Modified
180 protected void modified(ComponentContext context) {
181 String propertyValue =
182 Tools.get(context.getProperties(), NUM_THREAD);
183 int newNumThreads = isNullOrEmpty(propertyValue) ? numThreads : Integer.parseInt(propertyValue);
184
185 if (newNumThreads != numThreads && newNumThreads > 0) {
186 numThreads = newNumThreads;
187 ExecutorService oldWorkerExecutor = executorService;
188 executorService = newFixedThreadPool(numThreads,
189 groupedThreads(GROUP_THREAD_NAME, WORKER_PATTERN, log));
190 if (oldWorkerExecutor != null) {
191 oldWorkerExecutor.shutdown();
192 }
193 log.info("Reconfigured number of worker threads to {}", numThreads);
194 }
195 }
196
Jonathan Hart17d00452015-04-21 17:10:00 -0700197 /**
198 * Task that passes the flow objective down to the driver. The task will
199 * make a few attempts to find the appropriate driver, then eventually give
200 * up and report an error if no suitable driver could be found.
201 */
Charles Chana7903c82018-03-15 20:14:16 -0700202 class ObjectiveInstaller implements Runnable {
203 final DeviceId deviceId;
204 final Objective objective;
Jonathan Hart17d00452015-04-21 17:10:00 -0700205
Sho SHIMIZUf45d85d2015-07-01 14:39:11 -0700206 private final int numAttempts;
Jonathan Hart17d00452015-04-21 17:10:00 -0700207
Charles Chana7903c82018-03-15 20:14:16 -0700208 ObjectiveInstaller(DeviceId deviceId, Objective objective) {
Sho SHIMIZUf45d85d2015-07-01 14:39:11 -0700209 this(deviceId, objective, 1);
210 }
211
Charles Chana7903c82018-03-15 20:14:16 -0700212 ObjectiveInstaller(DeviceId deviceId, Objective objective, int attemps) {
Sho SHIMIZUf45d85d2015-07-01 14:39:11 -0700213 this.deviceId = checkNotNull(deviceId);
214 this.objective = checkNotNull(objective);
Yuta HIGUCHIfbd9ae92018-01-24 23:39:06 -0800215 this.numAttempts = attemps;
alshabib910aff12015-04-09 16:55:57 -0700216 }
alshabib77b88482015-04-07 15:47:50 -0700217
Jonathan Hart17d00452015-04-21 17:10:00 -0700218 @Override
219 public void run() {
220 try {
Jonathan Hart17d00452015-04-21 17:10:00 -0700221 Pipeliner pipeliner = getDevicePipeliner(deviceId);
222
223 if (pipeliner != null) {
224 if (objective instanceof NextObjective) {
Saurav Das1547b3f2017-05-05 17:01:08 -0700225 nextToDevice.put(objective.id(), deviceId);
Jonathan Hart17d00452015-04-21 17:10:00 -0700226 pipeliner.next((NextObjective) objective);
227 } else if (objective instanceof ForwardingObjective) {
228 pipeliner.forward((ForwardingObjective) objective);
229 } else {
230 pipeliner.filter((FilteringObjective) objective);
231 }
Andrea Campanella1f8188d2016-02-29 13:24:54 -0800232 //Attempts to check if pipeliner is null for retry attempts
Jonathan Hart17d00452015-04-21 17:10:00 -0700233 } else if (numAttempts < INSTALL_RETRY_ATTEMPTS) {
Saurav Das3d038262015-04-23 12:36:58 -0700234 Thread.sleep(INSTALL_RETRY_INTERVAL);
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700235 executorService.execute(new ObjectiveInstaller(deviceId, objective, numAttempts + 1));
Jonathan Hart17d00452015-04-21 17:10:00 -0700236 } else {
237 // Otherwise we've tried a few times and failed, report an
238 // error back to the user.
239 objective.context().ifPresent(
Andrea Campanella1f8188d2016-02-29 13:24:54 -0800240 c -> c.onError(objective, ObjectiveError.NOPIPELINER));
Jonathan Hart17d00452015-04-21 17:10:00 -0700241 }
Saurav Das1547b3f2017-05-05 17:01:08 -0700242 //Exception thrown
Jonathan Hart17d00452015-04-21 17:10:00 -0700243 } catch (Exception e) {
244 log.warn("Exception while installing flow objective", e);
245 }
246 }
247 }
248
249 @Override
250 public void filter(DeviceId deviceId, FilteringObjective filteringObjective) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900251 checkPermission(FLOWRULE_WRITE);
HIGUCHI Yutad9e01052016-04-14 09:31:42 -0700252 executorService.execute(new ObjectiveInstaller(deviceId, filteringObjective));
alshabib77b88482015-04-07 15:47:50 -0700253 }
254
255 @Override
Thomas Vachuska866b46a2015-04-30 00:26:55 -0700256 public void forward(DeviceId deviceId, ForwardingObjective forwardingObjective) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900257 checkPermission(FLOWRULE_WRITE);
Yi Tseng1666b502017-05-17 11:05:18 -0700258 if (forwardingObjective.nextId() == null ||
Yi Tseng1666b502017-05-17 11:05:18 -0700259 flowObjectiveStore.getNextGroup(forwardingObjective.nextId()) != null ||
260 !queueFwdObjective(deviceId, forwardingObjective)) {
261 // fast path
262 executorService.execute(new ObjectiveInstaller(deviceId, forwardingObjective));
alshabib910aff12015-04-09 16:55:57 -0700263 }
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700264 }
265
alshabib2a441c62015-04-13 18:39:38 -0700266 @Override
Jonathan Hart17d00452015-04-21 17:10:00 -0700267 public void next(DeviceId deviceId, NextObjective nextObjective) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900268 checkPermission(FLOWRULE_WRITE);
Yi Tseng1666b502017-05-17 11:05:18 -0700269 if (nextObjective.op() == Operation.ADD ||
Charles Chanb71e1ba2018-08-16 21:02:34 -0700270 nextObjective.op() == Operation.VERIFY ||
Yi Tseng1666b502017-05-17 11:05:18 -0700271 flowObjectiveStore.getNextGroup(nextObjective.id()) != null ||
272 !queueNextObjective(deviceId, nextObjective)) {
273 // either group exists or we are trying to create it - let it through
274 executorService.execute(new ObjectiveInstaller(deviceId, nextObjective));
Saurav Das1547b3f2017-05-05 17:01:08 -0700275 }
alshabib2a441c62015-04-13 18:39:38 -0700276 }
277
alshabibf6ea9e62015-04-21 17:08:26 -0700278 @Override
279 public int allocateNextId() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900280 checkPermission(FLOWRULE_WRITE);
alshabibf6ea9e62015-04-21 17:08:26 -0700281 return flowObjectiveStore.allocateNextId();
282 }
283
Xin Jin313708b2015-07-09 13:43:04 -0700284 @Override
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700285 public void initPolicy(String policy) {
286 }
Xin Jin313708b2015-07-09 13:43:04 -0700287
Charles Chana7903c82018-03-15 20:14:16 -0700288 boolean queueFwdObjective(DeviceId deviceId, ForwardingObjective fwd) {
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700289 boolean queued = false;
290 synchronized (pendingForwards) {
291 // double check the flow objective store, because this block could run
292 // after a notification arrives
293 if (flowObjectiveStore.getNextGroup(fwd.nextId()) == null) {
294 pendingForwards.compute(fwd.nextId(), (id, pending) -> {
Saurav Das1547b3f2017-05-05 17:01:08 -0700295 PendingFlowObjective pendfo = new PendingFlowObjective(deviceId, fwd);
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700296 if (pending == null) {
Pier Luigi97893112018-03-05 11:09:42 +0100297 return Sets.newLinkedHashSet(ImmutableSet.of(pendfo));
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700298 } else {
Saurav Das1547b3f2017-05-05 17:01:08 -0700299 pending.add(pendfo);
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700300 return pending;
301 }
302 });
303 queued = true;
304 }
305 }
306 if (queued) {
Saurav Dasc568c342018-01-25 09:49:01 -0800307 log.debug("Queued forwarding objective {} for nextId {} meant for device {}",
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700308 fwd.id(), fwd.nextId(), deviceId);
309 }
310 return queued;
alshabib2a441c62015-04-13 18:39:38 -0700311 }
312
Charles Chana7903c82018-03-15 20:14:16 -0700313 boolean queueNextObjective(DeviceId deviceId, NextObjective next) {
Saurav Das1547b3f2017-05-05 17:01:08 -0700314 // we need to hold off on other operations till we get notified that the
315 // initial group creation has succeeded
316 boolean queued = false;
317 synchronized (pendingNexts) {
318 // double check the flow objective store, because this block could run
319 // after a notification arrives
320 if (flowObjectiveStore.getNextGroup(next.id()) == null) {
321 pendingNexts.compute(next.id(), (id, pending) -> {
322 PendingFlowObjective pendfo = new PendingFlowObjective(deviceId, next);
323 if (pending == null) {
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800324 return Lists.newArrayList(pendfo);
Saurav Das1547b3f2017-05-05 17:01:08 -0700325 } else {
326 pending.add(pendfo);
327 return pending;
328 }
329 });
330 queued = true;
331 }
332 }
333 if (queued) {
Saurav Dasc568c342018-01-25 09:49:01 -0800334 log.debug("Queued next objective {} with operation {} meant for device {}",
Saurav Das1547b3f2017-05-05 17:01:08 -0700335 next.id(), next.op(), deviceId);
336 }
337 return queued;
338 }
339
Pier Ventre57a61cd2016-09-07 10:55:41 -0700340 /**
341 * Retrieves (if it exists) the device pipeline behaviour from the cache.
342 * Otherwise it warms the caches and triggers the init method of the Pipeline.
343 *
344 * @param deviceId the id of the device associated to the pipeline
345 * @return the implementation of the Pipeliner behaviour
346 */
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700347 private Pipeliner getDevicePipeliner(DeviceId deviceId) {
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700348 return pipeliners.computeIfAbsent(deviceId, this::initPipelineHandler);
alshabib77b88482015-04-07 15:47:50 -0700349 }
350
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700351 /**
Pier Ventre57a61cd2016-09-07 10:55:41 -0700352 * Retrieves (if it exists) the device pipeline behaviour from the cache and
353 * and triggers the init method of the pipeline. Otherwise (DEVICE_ADDED) it warms
354 * the caches and triggers the init method of the Pipeline. The rationale of this
355 * method is for managing the scenario of a switch that goes down for a failure
356 * and goes up after a while.
357 *
358 * @param deviceId the id of the device associated to the pipeline
359 * @return the implementation of the Pipeliner behaviour
360 */
361 private Pipeliner getAndInitDevicePipeliner(DeviceId deviceId) {
362 return pipeliners.compute(deviceId, (deviceIdValue, pipelinerValue) -> {
363 if (pipelinerValue != null) {
364 pipelinerValue.init(deviceId, context);
365 return pipelinerValue;
366 }
367 return this.initPipelineHandler(deviceId);
368 });
369 }
370
371 /**
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700372 * Creates and initialize {@link Pipeliner}.
373 * <p>
374 * Note: Expected to be called under per-Device lock.
375 * e.g., {@code pipeliners}' Map#compute family methods
376 *
377 * @param deviceId Device to initialize pipeliner
378 * @return {@link Pipeliner} instance or null
379 */
380 private Pipeliner initPipelineHandler(DeviceId deviceId) {
381 start = now();
Thomas Vachuska866b46a2015-04-30 00:26:55 -0700382
Jonathan Hart17d00452015-04-21 17:10:00 -0700383 // Attempt to lookup the handler in the cache
384 DriverHandler handler = driverHandlers.get(deviceId);
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700385 cTime = now();
386
Jonathan Hart17d00452015-04-21 17:10:00 -0700387 if (handler == null) {
388 try {
389 // Otherwise create it and if it has pipeline behaviour, cache it
390 handler = driverService.createHandler(deviceId);
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700391 dTime = now();
Jonathan Hart17d00452015-04-21 17:10:00 -0700392 if (!handler.driver().hasBehaviour(Pipeliner.class)) {
Yuta HIGUCHIa2a4f342017-03-17 11:38:57 -0700393 log.debug("Pipeline behaviour not supported for device {}",
Jonathan Hart17d00452015-04-21 17:10:00 -0700394 deviceId);
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700395 return null;
alshabib2a441c62015-04-13 18:39:38 -0700396 }
Jonathan Hart17d00452015-04-21 17:10:00 -0700397 } catch (ItemNotFoundException e) {
398 log.warn("No applicable driver for device {}", deviceId);
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700399 return null;
alshabib2a441c62015-04-13 18:39:38 -0700400 }
401
Jonathan Hart17d00452015-04-21 17:10:00 -0700402 driverHandlers.put(deviceId, handler);
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700403 eTime = now();
alshabib2a441c62015-04-13 18:39:38 -0700404 }
Jonathan Hart17d00452015-04-21 17:10:00 -0700405
406 // Always (re)initialize the pipeline behaviour
407 log.info("Driver {} bound to device {} ... initializing driver",
408 handler.driver().name(), deviceId);
Thomas Vachuska0121a612015-07-21 11:18:09 -0700409 hTime = now();
Jonathan Hart17d00452015-04-21 17:10:00 -0700410 Pipeliner pipeliner = handler.behaviour(Pipeliner.class);
Thomas Vachuska94c3cf42015-07-20 13:01:12 -0700411 hbTime = now();
Jonathan Hart17d00452015-04-21 17:10:00 -0700412 pipeliner.init(deviceId, context);
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700413 stopWatch();
414 return pipeliner;
alshabibaebe7752015-04-07 17:45:42 -0700415 }
alshabib77b88482015-04-07 15:47:50 -0700416
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700417 private void invalidatePipelinerIfNecessary(Device device) {
418 DriverHandler handler = driverHandlers.get(device.id());
419 if (handler != null &&
420 !Objects.equals(handler.driver().name(),
421 device.annotations().value(DRIVER))) {
422 invalidatePipeliner(device.id());
423 }
424 }
425
426 private void invalidatePipeliner(DeviceId id) {
427 log.info("Invalidating cached pipeline behaviour for {}", id);
428 driverHandlers.remove(id);
429 pipeliners.remove(id);
430 if (deviceService.isAvailable(id)) {
431 getAndInitDevicePipeliner(id);
432 }
433 }
434
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700435 // Triggers driver setup when a device is (re)detected.
alshabibaebe7752015-04-07 17:45:42 -0700436 private class InnerDeviceListener implements DeviceListener {
437 @Override
438 public void event(DeviceEvent event) {
439 switch (event.type()) {
440 case DEVICE_ADDED:
441 case DEVICE_AVAILABILITY_CHANGED:
Madan Jampani0174f452015-05-29 11:52:05 -0700442 log.debug("Device either added or availability changed {}",
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700443 event.subject().id());
alshabib4313d102015-04-08 18:55:08 -0700444 if (deviceService.isAvailable(event.subject().id())) {
Madan Jampani0174f452015-05-29 11:52:05 -0700445 log.debug("Device is now available {}", event.subject().id());
Pier Ventre57a61cd2016-09-07 10:55:41 -0700446 getAndInitDevicePipeliner(event.subject().id());
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700447 } else {
448 log.debug("Device is no longer available {}", event.subject().id());
alshabib4313d102015-04-08 18:55:08 -0700449 }
450 break;
451 case DEVICE_UPDATED:
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700452 // Invalidate pipeliner and handler caches if the driver name
453 // device annotation changed.
454 invalidatePipelinerIfNecessary(event.subject());
alshabib4313d102015-04-08 18:55:08 -0700455 break;
456 case DEVICE_REMOVED:
Yuta HIGUCHIad0c9902016-08-23 10:37:32 -0700457 // evict Pipeliner and Handler cache, when
458 // the Device was administratively removed.
459 //
460 // System expect the user to clear all existing flows,
461 // before removing device, especially if they intend to
462 // replace driver/pipeliner assigned to the device.
463 driverHandlers.remove(event.subject().id());
Yuta HIGUCHI1fb0a8c2016-08-12 10:59:24 -0700464 pipeliners.remove(event.subject().id());
alshabib4313d102015-04-08 18:55:08 -0700465 break;
Yuta HIGUCHIad0c9902016-08-23 10:37:32 -0700466 case DEVICE_SUSPENDED:
467 break;
alshabib4313d102015-04-08 18:55:08 -0700468 case PORT_ADDED:
469 break;
470 case PORT_UPDATED:
471 break;
472 case PORT_REMOVED:
alshabibaebe7752015-04-07 17:45:42 -0700473 break;
474 default:
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700475 break;
alshabibaebe7752015-04-07 17:45:42 -0700476 }
alshabib77b88482015-04-07 15:47:50 -0700477 }
478 }
alshabibaebe7752015-04-07 17:45:42 -0700479
Thomas Vachuskacfeff192017-08-23 15:29:34 -0700480 // Monitors driver configuration changes and invalidates the pipeliner cache entries.
481 // Note that this may leave stale entries on the device if the driver changes
482 // in manner where the new driver does not produce backward compatible flow objectives.
483 // In such cases, it is the operator's responsibility to force device re-connect.
484 private class InnerDriverListener implements DriverListener {
485 @Override
486 public void event(DriverEvent event) {
487 String driverName = event.subject().name();
488 driverHandlers.entrySet().stream()
489 .filter(e -> driverName.equals(e.getValue().driver().name()))
490 .map(Map.Entry::getKey)
491 .distinct()
492 .forEach(FlowObjectiveManager.this::invalidatePipeliner);
493 }
494 }
495
Thomas Vachuska174bb912015-07-16 21:27:14 -0700496 // Temporary mechanism to monitor pipeliner setup time-cost; there are
497 // intermittent time where this takes in excess of 2 seconds. Why?
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700498 private long start = 0, totals = 0, count = 0;
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700499 private long cTime, dTime, eTime, hTime, hbTime;
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700500 private static final long LIMIT = 500;
Thomas Vachuska174bb912015-07-16 21:27:14 -0700501
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700502 private long now() {
Thomas Vachuska174bb912015-07-16 21:27:14 -0700503 return System.currentTimeMillis();
504 }
505
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700506 private void stopWatch() {
Thomas Vachuska174bb912015-07-16 21:27:14 -0700507 long duration = System.currentTimeMillis() - start;
508 totals += duration;
509 count += 1;
510 if (duration > LIMIT) {
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700511 log.info("Pipeline setup took {} ms; avg {} ms; cTime={}, dTime={}, eTime={}, hTime={}, hbTime={}",
512 duration, totals / count, diff(cTime), diff(dTime), diff(eTime), diff(hTime), diff(hbTime));
Thomas Vachuska174bb912015-07-16 21:27:14 -0700513 }
514 }
515
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700516 private long diff(long bTime) {
Thomas Vachuskab19bffb2015-07-22 10:56:16 -0700517 long diff = bTime - start;
518 return diff < 0 ? 0 : diff;
Thomas Vachuska9c9ff7c2015-07-20 10:38:59 -0700519 }
520
Thomas Vachuskaca88bb72015-04-08 19:38:02 -0700521 // Processing context for initializing pipeline driver behaviours.
522 private class InnerPipelineContext implements PipelinerContext {
523 @Override
524 public ServiceDirectory directory() {
525 return serviceDirectory;
alshabibaebe7752015-04-07 17:45:42 -0700526 }
alshabib2a441c62015-04-13 18:39:38 -0700527
528 @Override
529 public FlowObjectiveStore store() {
530 return flowObjectiveStore;
531 }
alshabib2a441c62015-04-13 18:39:38 -0700532 }
533
534 private class InternalStoreDelegate implements FlowObjectiveStoreDelegate {
535 @Override
536 public void notify(ObjectiveEvent event) {
Saurav Das423fe2b2015-12-04 10:52:59 -0800537 if (event.type() == Type.ADD) {
538 log.debug("Received notification of obj event {}", event);
Saurav Das1547b3f2017-05-05 17:01:08 -0700539 Set<PendingFlowObjective> pending;
540
541 // first send all pending flows
Thomas Vachuskad27097c2016-06-14 19:10:41 -0700542 synchronized (pendingForwards) {
543 // needs to be synchronized for queueObjective lookup
544 pending = pendingForwards.remove(event.subject());
545 }
Saurav Das423fe2b2015-12-04 10:52:59 -0800546 if (pending == null) {
Saurav Das1547b3f2017-05-05 17:01:08 -0700547 log.debug("No forwarding objectives pending for this "
548 + "obj event {}", event);
549 } else {
550 log.debug("Processing {} pending forwarding objectives for nextId {}",
551 pending.size(), event.subject());
552 pending.forEach(p -> getDevicePipeliner(p.deviceId())
553 .forward((ForwardingObjective) p.flowObjective()));
Saurav Das423fe2b2015-12-04 10:52:59 -0800554 }
555
Saurav Das1547b3f2017-05-05 17:01:08 -0700556 // now check for pending next-objectives
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800557 List<PendingFlowObjective> pendNexts;
Saurav Das1547b3f2017-05-05 17:01:08 -0700558 synchronized (pendingNexts) {
559 // needs to be synchronized for queueObjective lookup
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800560 pendNexts = pendingNexts.remove(event.subject());
Saurav Das1547b3f2017-05-05 17:01:08 -0700561 }
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800562 if (pendNexts == null) {
Saurav Das1547b3f2017-05-05 17:01:08 -0700563 log.debug("No next objectives pending for this "
564 + "obj event {}", event);
565 } else {
566 log.debug("Processing {} pending next objectives for nextId {}",
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800567 pendNexts.size(), event.subject());
568 pendNexts.forEach(p -> getDevicePipeliner(p.deviceId())
Saurav Das1547b3f2017-05-05 17:01:08 -0700569 .next((NextObjective) p.flowObjective()));
570 }
alshabib2a441c62015-04-13 18:39:38 -0700571 }
alshabib2a441c62015-04-13 18:39:38 -0700572 }
573 }
574
575 /**
Saurav Das1547b3f2017-05-05 17:01:08 -0700576 * Data class used to hold a pending flow objective that could not
alshabib2a441c62015-04-13 18:39:38 -0700577 * be processed because the associated next object was not present.
Saurav Das1547b3f2017-05-05 17:01:08 -0700578 * Note that this pending flow objective could be a forwarding objective
579 * waiting for a next objective to complete execution. Or it could a
580 * next objective (with a different operation - remove, addToExisting, or
581 * removeFromExisting) waiting for a next objective with the same id to
582 * complete execution.
alshabib2a441c62015-04-13 18:39:38 -0700583 */
Charles Chana7903c82018-03-15 20:14:16 -0700584 protected class PendingFlowObjective {
alshabib2a441c62015-04-13 18:39:38 -0700585 private final DeviceId deviceId;
Saurav Das1547b3f2017-05-05 17:01:08 -0700586 private final Objective flowObj;
alshabib2a441c62015-04-13 18:39:38 -0700587
Charles Chana7903c82018-03-15 20:14:16 -0700588 PendingFlowObjective(DeviceId deviceId, Objective flowObj) {
alshabib2a441c62015-04-13 18:39:38 -0700589 this.deviceId = deviceId;
Saurav Das1547b3f2017-05-05 17:01:08 -0700590 this.flowObj = flowObj;
alshabib2a441c62015-04-13 18:39:38 -0700591 }
592
593 public DeviceId deviceId() {
594 return deviceId;
595 }
596
Saurav Das1547b3f2017-05-05 17:01:08 -0700597 public Objective flowObjective() {
598 return flowObj;
alshabib2a441c62015-04-13 18:39:38 -0700599 }
Saurav Das8a0732e2015-11-20 15:27:53 -0800600
601 @Override
602 public int hashCode() {
Saurav Das1547b3f2017-05-05 17:01:08 -0700603 return Objects.hash(deviceId, flowObj);
Saurav Das8a0732e2015-11-20 15:27:53 -0800604 }
605
606 @Override
607 public boolean equals(final Object obj) {
608 if (this == obj) {
609 return true;
610 }
Saurav Das1547b3f2017-05-05 17:01:08 -0700611 if (!(obj instanceof PendingFlowObjective)) {
Saurav Das8a0732e2015-11-20 15:27:53 -0800612 return false;
613 }
Saurav Das1547b3f2017-05-05 17:01:08 -0700614 final PendingFlowObjective other = (PendingFlowObjective) obj;
Charles Chana7903c82018-03-15 20:14:16 -0700615
616 return this.deviceId.equals(other.deviceId) &&
617 this.flowObj.equals(other.flowObj);
Saurav Das8a0732e2015-11-20 15:27:53 -0800618 }
alshabibaebe7752015-04-07 17:45:42 -0700619 }
Saurav Das24431192016-03-07 19:13:00 -0800620
621 @Override
622 public List<String> getNextMappings() {
623 List<String> mappings = new ArrayList<>();
624 Map<Integer, NextGroup> allnexts = flowObjectiveStore.getAllGroups();
Saurav Das25190812016-05-27 13:54:07 -0700625 // XXX if the NextGroup after de-serialization actually stored info of the deviceId
Saurav Das24431192016-03-07 19:13:00 -0800626 // then info on any nextObj could be retrieved from one controller instance.
627 // Right now the drivers on one instance can only fetch for next-ids that came
628 // to them.
629 // Also, we still need to send the right next-id to the right driver as potentially
630 // there can be different drivers for different devices. But on that account,
631 // no instance should be decoding for another instance's nextIds.
632
633 for (Map.Entry<Integer, NextGroup> e : allnexts.entrySet()) {
634 // get the device this next Objective was sent to
635 DeviceId deviceId = nextToDevice.get(e.getKey());
636 mappings.add("NextId " + e.getKey() + ": " +
637 ((deviceId != null) ? deviceId : "nextId not in this onos instance"));
638 if (deviceId != null) {
639 // this instance of the controller sent the nextObj to a driver
640 Pipeliner pipeliner = getDevicePipeliner(deviceId);
641 List<String> nextMappings = pipeliner.getNextMappings(e.getValue());
642 if (nextMappings != null) {
643 mappings.addAll(nextMappings);
644 }
645 }
646 }
647 return mappings;
648 }
Saurav Dasb5c236e2016-06-07 10:08:06 -0700649
650 @Override
Saurav Das1547b3f2017-05-05 17:01:08 -0700651 public List<String> getPendingFlowObjectives() {
652 List<String> pendingFlowObjectives = new ArrayList<>();
Charles Chan54734712017-03-29 11:07:55 -0700653
Saurav Das1547b3f2017-05-05 17:01:08 -0700654 for (Integer nextId : pendingForwards.keySet()) {
655 Set<PendingFlowObjective> pfwd = pendingForwards.get(nextId);
Sho SHIMIZU81470a52016-08-12 17:24:55 -0700656 StringBuilder pend = new StringBuilder();
Charles Chan54734712017-03-29 11:07:55 -0700657 pend.append("NextId: ")
658 .append(nextId);
Saurav Das1547b3f2017-05-05 17:01:08 -0700659 for (PendingFlowObjective pf : pfwd) {
Charles Chan54734712017-03-29 11:07:55 -0700660 pend.append("\n FwdId: ")
Saurav Das1547b3f2017-05-05 17:01:08 -0700661 .append(String.format("%11s", pf.flowObjective().id()))
662 .append(", DeviceId: ")
663 .append(pf.deviceId())
664 .append(", Selector: ")
665 .append(((ForwardingObjective) pf.flowObjective())
666 .selector().criteria());
667 }
668 pendingFlowObjectives.add(pend.toString());
669 }
670
671 for (Integer nextId : pendingNexts.keySet()) {
Saurav Dasf14d9ef2017-12-05 15:00:23 -0800672 List<PendingFlowObjective> pnext = pendingNexts.get(nextId);
Saurav Das1547b3f2017-05-05 17:01:08 -0700673 StringBuilder pend = new StringBuilder();
674 pend.append("NextId: ")
675 .append(nextId);
676 for (PendingFlowObjective pn : pnext) {
677 pend.append("\n NextOp: ")
678 .append(pn.flowObjective().op())
Charles Chan54734712017-03-29 11:07:55 -0700679 .append(", DeviceId: ")
680 .append(pn.deviceId())
Saurav Das1547b3f2017-05-05 17:01:08 -0700681 .append(", Treatments: ")
682 .append(((NextObjective) pn.flowObjective())
683 .next());
Saurav Dasb5c236e2016-06-07 10:08:06 -0700684 }
Saurav Das1547b3f2017-05-05 17:01:08 -0700685 pendingFlowObjectives.add(pend.toString());
Saurav Dasb5c236e2016-06-07 10:08:06 -0700686 }
Saurav Das1547b3f2017-05-05 17:01:08 -0700687
688 return pendingFlowObjectives;
689 }
alshabib77b88482015-04-07 15:47:50 -0700690}