blob: cf6265be715918d94f8de61722fd90fa4192c963 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2014-present Open Networking Foundation
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.device.impl;
tomd3097b02014-08-26 10:40:29 -070017
Simon Huntffbad3b2017-05-16 15:37:51 -070018import com.google.common.collect.ImmutableList;
Carmelo Cascone1da7a4d2018-06-27 18:03:11 +020019import com.google.common.collect.Lists;
Simon Huntffbad3b2017-05-16 15:37:51 -070020import com.google.common.collect.Maps;
21import com.google.common.collect.Multimap;
pier388ec252020-04-15 20:53:14 +020022import com.google.common.util.concurrent.Futures;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070023import org.onlab.util.KryoNamespace;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -070024import org.onlab.util.Tools;
Brian O'Connorabafb502014-12-02 22:26:20 -080025import org.onosproject.cluster.ClusterService;
26import org.onosproject.cluster.NodeId;
Brian O'Connorabafb502014-12-02 22:26:20 -080027import org.onosproject.mastership.MastershipEvent;
28import org.onosproject.mastership.MastershipListener;
29import org.onosproject.mastership.MastershipService;
30import org.onosproject.mastership.MastershipTerm;
31import org.onosproject.mastership.MastershipTermService;
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -070032import org.onosproject.net.ConnectPoint;
Brian O'Connorabafb502014-12-02 22:26:20 -080033import org.onosproject.net.Device;
samuel738dfaf2015-07-11 11:08:57 +080034import org.onosproject.net.Device.Type;
Brian O'Connorabafb502014-12-02 22:26:20 -080035import org.onosproject.net.DeviceId;
36import org.onosproject.net.MastershipRole;
37import org.onosproject.net.Port;
38import org.onosproject.net.PortNumber;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -070039import org.onosproject.net.config.Config;
Yafit Hadara9a73de2015-09-06 13:52:52 +030040import org.onosproject.net.config.NetworkConfigEvent;
41import org.onosproject.net.config.NetworkConfigListener;
42import org.onosproject.net.config.NetworkConfigService;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -070043import org.onosproject.net.config.PortConfigOperator;
44import org.onosproject.net.config.PortConfigOperatorRegistry;
Yafit Hadara9a73de2015-09-06 13:52:52 +030045import org.onosproject.net.config.basics.BasicDeviceConfig;
Palash Kalaa06a6162017-11-15 20:42:40 +090046import org.onosproject.net.config.basics.DeviceAnnotationConfig;
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -080047import org.onosproject.net.config.basics.PortAnnotationConfig;
Carmelo Cascone3977ea42019-02-28 13:43:42 -080048import org.onosproject.net.config.basics.PortDescriptionsConfig;
Brian O'Connorabafb502014-12-02 22:26:20 -080049import org.onosproject.net.device.DefaultPortDescription;
50import org.onosproject.net.device.DeviceAdminService;
Brian O'Connorabafb502014-12-02 22:26:20 -080051import org.onosproject.net.device.DeviceDescription;
52import org.onosproject.net.device.DeviceEvent;
53import org.onosproject.net.device.DeviceListener;
54import org.onosproject.net.device.DeviceProvider;
55import org.onosproject.net.device.DeviceProviderRegistry;
56import org.onosproject.net.device.DeviceProviderService;
57import org.onosproject.net.device.DeviceService;
58import org.onosproject.net.device.DeviceStore;
59import org.onosproject.net.device.DeviceStoreDelegate;
60import org.onosproject.net.device.PortDescription;
sangho538108b2015-04-08 14:29:20 -070061import org.onosproject.net.device.PortStatistics;
Yafit Hadara9a73de2015-09-06 13:52:52 +030062import org.onosproject.net.provider.AbstractListenerProviderRegistry;
Brian O'Connorabafb502014-12-02 22:26:20 -080063import org.onosproject.net.provider.AbstractProviderService;
Yuta HIGUCHI3a2a9872016-11-29 20:24:23 -080064import org.onosproject.net.provider.Provider;
65import org.onosproject.net.provider.ProviderId;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070066import org.onosproject.store.cluster.messaging.ClusterCommunicationService;
67import org.onosproject.store.cluster.messaging.MessageSubject;
68import org.onosproject.store.serializers.KryoNamespaces;
69import org.onosproject.store.service.Serializer;
Jordan Halterman9416aea2017-11-17 12:40:21 -080070import org.onosproject.upgrade.UpgradeService;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070071import org.osgi.service.component.annotations.Activate;
72import org.osgi.service.component.annotations.Component;
73import org.osgi.service.component.annotations.Deactivate;
74import org.osgi.service.component.annotations.Reference;
75import org.osgi.service.component.annotations.ReferenceCardinality;
tomd3097b02014-08-26 10:40:29 -070076import org.slf4j.Logger;
tomd3097b02014-08-26 10:40:29 -070077
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -070078import java.time.Instant;
Simon Huntffbad3b2017-05-16 15:37:51 -070079import java.util.Collection;
80import java.util.HashSet;
81import java.util.List;
82import java.util.Map;
83import java.util.Objects;
84import java.util.Optional;
85import java.util.Set;
86import java.util.concurrent.CompletableFuture;
87import java.util.concurrent.ConcurrentHashMap;
88import java.util.concurrent.CopyOnWriteArrayList;
89import java.util.concurrent.ExecutionException;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070090import java.util.concurrent.ExecutorService;
Simon Huntffbad3b2017-05-16 15:37:51 -070091import java.util.concurrent.ScheduledExecutorService;
92import java.util.concurrent.TimeUnit;
93import java.util.stream.Collectors;
Jonathan Hart2f669362015-02-11 16:19:20 -080094
Ray Milkey9ef22232016-07-14 12:42:37 -070095import static com.google.common.base.Preconditions.checkNotNull;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070096import static com.google.common.base.Preconditions.checkState;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -070097import static com.google.common.collect.Multimaps.newListMultimap;
98import static com.google.common.collect.Multimaps.synchronizedListMultimap;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070099import static java.util.concurrent.Executors.newSingleThreadExecutor;
Ray Milkey9ef22232016-07-14 12:42:37 -0700100import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
101import static org.onlab.util.Tools.groupedThreads;
102import static org.onosproject.net.MastershipRole.MASTER;
103import static org.onosproject.net.MastershipRole.NONE;
104import static org.onosproject.net.MastershipRole.STANDBY;
Ray Milkey9ef22232016-07-14 12:42:37 -0700105import static org.onosproject.security.AppGuard.checkPermission;
106import static org.onosproject.security.AppPermission.Type.DEVICE_READ;
107import static org.slf4j.LoggerFactory.getLogger;
108
tomd3097b02014-08-26 10:40:29 -0700109/**
tome4729872014-09-23 00:37:37 -0700110 * Provides implementation of the device SB & NB APIs.
tomd3097b02014-08-26 10:40:29 -0700111 */
Ray Milkey86ad7bb2018-09-27 12:32:28 -0700112@Component(immediate = true,
113 service = {DeviceService.class, DeviceAdminService.class,
114 DeviceProviderRegistry.class, PortConfigOperatorRegistry.class })
tom41a2c5f2014-09-19 09:20:35 -0700115public class DeviceManager
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700116 extends AbstractListenerProviderRegistry<DeviceEvent, DeviceListener, DeviceProvider, DeviceProviderService>
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700117 implements DeviceService, DeviceAdminService, DeviceProviderRegistry, PortConfigOperatorRegistry {
tom32f66842014-08-27 19:27:47 -0700118
tome5ec3fd2014-09-04 15:18:06 -0700119 private static final String DEVICE_ID_NULL = "Device ID cannot be null";
120 private static final String PORT_NUMBER_NULL = "Port number cannot be null";
121 private static final String DEVICE_DESCRIPTION_NULL = "Device description cannot be null";
122 private static final String PORT_DESCRIPTION_NULL = "Port description cannot be null";
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700123 private static final String PORT_DESC_LIST_NULL = "Port description list cannot be null";
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700124 private static final String EVENT_NON_MASTER = "Non-master node cannot handle this event";
tomd3097b02014-08-26 10:40:29 -0700125
tom5f38b3a2014-08-27 23:50:54 -0700126 private final Logger log = getLogger(getClass());
tomd3097b02014-08-26 10:40:29 -0700127
alshabib339a3d92014-09-26 17:54:32 -0700128 private final DeviceStoreDelegate delegate = new InternalStoreDelegate();
tomf80c9722014-09-24 14:49:18 -0700129
tomc78acee2014-09-24 15:16:55 -0700130 private final MastershipListener mastershipListener = new InternalMastershipListener();
Madan Jampanide003d92015-05-11 17:14:20 -0700131 private NodeId localNodeId;
tomb41d1ac2014-09-24 01:51:24 -0700132
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800133 private ScheduledExecutorService backgroundService;
134
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700135 private final NetworkConfigListener networkConfigListener = new InternalNetworkConfigListener();
136
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700137 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tom41a2c5f2014-09-19 09:20:35 -0700138 protected DeviceStore store;
tomd3097b02014-08-26 10:40:29 -0700139
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700140 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tomb41d1ac2014-09-24 01:51:24 -0700141 protected ClusterService clusterService;
142
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700143 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Ayaka Koshibea7f044e2014-09-23 16:56:20 -0700144 protected MastershipService mastershipService;
145
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700146 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Ayaka Koshibe3de43ca2014-09-26 16:40:23 -0700147 protected MastershipTermService termService;
148
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700149 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jordan Halterman9416aea2017-11-17 12:40:21 -0800150 protected UpgradeService upgradeService;
151
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700152 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700153 protected NetworkConfigService networkConfigService;
154
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700155 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700156 protected ClusterCommunicationService communicationService;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700157
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700158 private ExecutorService portReqeustExecutor;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700159 /**
160 * List of all registered PortConfigOperator.
161 */
162 private final List<PortConfigOperator> portOps = new CopyOnWriteArrayList<>();
163
164 /**
165 * Index to look up PortConfigOperator from Config each PortConfigOperator uses.
166 */
167 private final Multimap<Class<? extends Config<ConnectPoint>>, PortConfigOperator> portOpsIndex
Simon Huntffbad3b2017-05-16 15:37:51 -0700168 = synchronizedListMultimap(
169 newListMultimap(new ConcurrentHashMap<>(), CopyOnWriteArrayList::new));
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700170
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800171 // not part of portOps. must be executed at the end
172 private PortAnnotationOperator portAnnotationOp;
Palash Kalaa06a6162017-11-15 20:42:40 +0900173 private DeviceAnnotationOperator deviceAnnotationOp;
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800174
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700175 private static final MessageSubject PORT_UPDOWN_SUBJECT =
176 new MessageSubject("port-updown-req");
177
178 private static final Serializer SERIALIZER = Serializer.using(
179 KryoNamespace.newBuilder()
180 .register(KryoNamespaces.API)
181 .register(InternalPortUpDownEvent.class)
182 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
183 .build("DeviceManager"));
184
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800185 /**
186 * Local storage for connectivity status of devices.
187 */
188 private class LocalStatus {
189 boolean connected;
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700190 Instant dateTime;
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800191
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700192 public LocalStatus(boolean b, Instant now) {
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800193 connected = b;
194 dateTime = now;
195 }
196 }
Simon Huntffbad3b2017-05-16 15:37:51 -0700197
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800198 private final Map<DeviceId, LocalStatus> deviceLocalStatus =
199 Maps.newConcurrentMap();
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700200
tomd3097b02014-08-26 10:40:29 -0700201 @Activate
202 public void activate() {
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800203 portAnnotationOp = new PortAnnotationOperator(networkConfigService);
Palash Kalaa06a6162017-11-15 20:42:40 +0900204 deviceAnnotationOp = new DeviceAnnotationOperator(networkConfigService);
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800205 portOpsIndex.put(PortAnnotationConfig.class, portAnnotationOp);
206
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800207 backgroundService = newSingleThreadScheduledExecutor(
Simon Huntffbad3b2017-05-16 15:37:51 -0700208 groupedThreads("onos/device", "manager-background", log));
Madan Jampanide003d92015-05-11 17:14:20 -0700209 localNodeId = clusterService.getLocalNode().id();
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800210
tomf80c9722014-09-24 14:49:18 -0700211 store.setDelegate(delegate);
tom96dfcab2014-08-28 09:26:03 -0700212 eventDispatcher.addSink(DeviceEvent.class, listenerRegistry);
tomb41d1ac2014-09-24 01:51:24 -0700213 mastershipService.addListener(mastershipListener);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700214 networkConfigService.addListener(networkConfigListener);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800215
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700216 backgroundService.scheduleWithFixedDelay(() -> {
217 try {
218 mastershipCheck();
219 } catch (Exception e) {
220 log.error("Exception thrown during integrity check", e);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800221 }
222 }, 1, 1, TimeUnit.MINUTES);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700223
224 portReqeustExecutor = newSingleThreadExecutor();
225
226 communicationService.<InternalPortUpDownEvent>addSubscriber(
227 PORT_UPDOWN_SUBJECT,
228 SERIALIZER::decode,
229 this::handlePortRequest,
230 portReqeustExecutor);
231
tomd3097b02014-08-26 10:40:29 -0700232 log.info("Started");
233 }
234
235 @Deactivate
236 public void deactivate() {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800237 backgroundService.shutdown();
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700238 networkConfigService.removeListener(networkConfigListener);
tomf80c9722014-09-24 14:49:18 -0700239 store.unsetDelegate(delegate);
tomb41d1ac2014-09-24 01:51:24 -0700240 mastershipService.removeListener(mastershipListener);
tom5f38b3a2014-08-27 23:50:54 -0700241 eventDispatcher.removeSink(DeviceEvent.class);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700242 communicationService.removeSubscriber(PORT_UPDOWN_SUBJECT);
243 portReqeustExecutor.shutdown();
tomd3097b02014-08-26 10:40:29 -0700244 log.info("Stopped");
245 }
246
247 @Override
tomad2d2092014-09-06 23:24:20 -0700248 public int getDeviceCount() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900249 checkPermission(DEVICE_READ);
tomad2d2092014-09-06 23:24:20 -0700250 return store.getDeviceCount();
tomd3097b02014-08-26 10:40:29 -0700251 }
252
253 @Override
mskala32000d32017-07-14 16:27:06 +0200254 public int getAvailableDeviceCount() {
255 checkPermission(DEVICE_READ);
256 return store.getAvailableDeviceCount();
257 }
258
259 @Override
tom32f66842014-08-27 19:27:47 -0700260 public Iterable<Device> getDevices() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900261 checkPermission(DEVICE_READ);
tome5ec3fd2014-09-04 15:18:06 -0700262 return store.getDevices();
tomd3097b02014-08-26 10:40:29 -0700263 }
264
tom32f66842014-08-27 19:27:47 -0700265 @Override
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800266 public Iterable<Device> getAvailableDevices() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900267 checkPermission(DEVICE_READ);
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800268 return store.getAvailableDevices();
269 }
270
271 @Override
tom32f66842014-08-27 19:27:47 -0700272 public Device getDevice(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900273 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700274 checkNotNull(deviceId, DEVICE_ID_NULL);
tom132b58a2014-08-28 16:11:28 -0700275 return store.getDevice(deviceId);
tom32f66842014-08-27 19:27:47 -0700276 }
277
278 @Override
tomad2d2092014-09-06 23:24:20 -0700279 public MastershipRole getRole(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900280 checkPermission(DEVICE_READ);
tomad2d2092014-09-06 23:24:20 -0700281 checkNotNull(deviceId, DEVICE_ID_NULL);
tomb41d1ac2014-09-24 01:51:24 -0700282 return mastershipService.getLocalRole(deviceId);
tomad2d2092014-09-06 23:24:20 -0700283 }
284
285 @Override
tom32f66842014-08-27 19:27:47 -0700286 public List<Port> getPorts(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900287 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700288 checkNotNull(deviceId, DEVICE_ID_NULL);
tom132b58a2014-08-28 16:11:28 -0700289 return store.getPorts(deviceId);
tom32f66842014-08-27 19:27:47 -0700290 }
291
292 @Override
sangho538108b2015-04-08 14:29:20 -0700293 public List<PortStatistics> getPortStatistics(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900294 checkPermission(DEVICE_READ);
sangho538108b2015-04-08 14:29:20 -0700295 checkNotNull(deviceId, DEVICE_ID_NULL);
296 return store.getPortStatistics(deviceId);
297 }
298
299 @Override
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200300 public List<PortStatistics> getPortDeltaStatistics(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900301 checkPermission(DEVICE_READ);
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200302 checkNotNull(deviceId, DEVICE_ID_NULL);
303 return store.getPortDeltaStatistics(deviceId);
304 }
305
306 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +0530307 public PortStatistics getStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
308 checkPermission(DEVICE_READ);
309 checkNotNull(deviceId, DEVICE_ID_NULL);
310 checkNotNull(portNumber, PORT_NUMBER_NULL);
311 return store.getStatisticsForPort(deviceId, portNumber);
312 }
313
314 @Override
315 public PortStatistics getDeltaStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
316 checkPermission(DEVICE_READ);
317 checkNotNull(deviceId, DEVICE_ID_NULL);
318 checkNotNull(portNumber, PORT_NUMBER_NULL);
319 return store.getDeltaStatisticsForPort(deviceId, portNumber);
320 }
321
322 @Override
tom32f66842014-08-27 19:27:47 -0700323 public Port getPort(DeviceId deviceId, PortNumber portNumber) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900324 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700325 checkNotNull(deviceId, DEVICE_ID_NULL);
326 checkNotNull(portNumber, PORT_NUMBER_NULL);
tom132b58a2014-08-28 16:11:28 -0700327 return store.getPort(deviceId, portNumber);
tom32f66842014-08-27 19:27:47 -0700328 }
329
330 @Override
tomff7eb7c2014-09-08 12:49:03 -0700331 public boolean isAvailable(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900332 checkPermission(DEVICE_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900333
tomff7eb7c2014-09-08 12:49:03 -0700334 checkNotNull(deviceId, DEVICE_ID_NULL);
335 return store.isAvailable(deviceId);
336 }
337
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800338 @Override
339 public String localStatus(DeviceId deviceId) {
340 LocalStatus ls = deviceLocalStatus.get(deviceId);
341 if (ls == null) {
342 return "No Record";
343 }
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700344 String timeAgo = Tools.timeAgo(ls.dateTime.toEpochMilli());
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800345 return (ls.connected) ? "connected " + timeAgo : "disconnected " + timeAgo;
346 }
347
Palash Kala0d817b02018-03-23 18:09:45 +0900348 private boolean isLocallyConnected(DeviceId deviceId) {
349 LocalStatus ls = deviceLocalStatus.get(deviceId);
350 if (ls == null) {
351 return false;
352 }
353 return ls.connected;
354 }
355
Ray Milkey054e23d2018-03-22 13:37:11 -0700356 @Override
357 public long getLastUpdatedInstant(DeviceId deviceId) {
358 LocalStatus ls = deviceLocalStatus.get(deviceId);
359 if (ls == null) {
360 return 0;
361 }
362 return ls.dateTime.toEpochMilli();
363 }
364
Palash Kala0d817b02018-03-23 18:09:45 +0900365 // Check a device for control channel connectivity
366 // and changes local-status appropriately.
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700367 private boolean isReachable(DeviceId deviceId) {
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800368 if (deviceId == null) {
369 return false;
370 }
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700371 DeviceProvider provider = getProvider(deviceId);
372 if (provider != null) {
Palash Kala0d817b02018-03-23 18:09:45 +0900373 boolean reachable = provider.isReachable(deviceId);
374 if (reachable && !isLocallyConnected(deviceId)) {
375 deviceLocalStatus.put(deviceId, new LocalStatus(true, Instant.now()));
376 } else if (!reachable && isLocallyConnected(deviceId)) {
377 deviceLocalStatus.put(deviceId, new LocalStatus(false, Instant.now()));
378 }
379 return reachable;
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700380 } else {
Yuta HIGUCHI72669c42014-11-13 14:48:17 -0800381 log.debug("Provider not found for {}", deviceId);
Ayaka Koshibee60d4522014-10-28 15:07:00 -0700382 return false;
383 }
Ayaka Koshibee8708e32014-10-22 13:40:18 -0700384 }
385
tome5ec3fd2014-09-04 15:18:06 -0700386 @Override
387 public void removeDevice(DeviceId deviceId) {
388 checkNotNull(deviceId, DEVICE_ID_NULL);
389 DeviceEvent event = store.removeDevice(deviceId);
tom0efbb1d2014-09-09 11:54:28 -0700390 if (event != null) {
391 log.info("Device {} administratively removed", deviceId);
tom0efbb1d2014-09-09 11:54:28 -0700392 }
tome5ec3fd2014-09-04 15:18:06 -0700393 }
394
Thomas Vachuska811ea2b2020-02-11 10:20:10 -0800395 @Override
396 public void removeDevicePorts(DeviceId deviceId) {
397 checkNotNull(deviceId, DEVICE_ID_NULL);
398 if (isAvailable(deviceId)) {
399 log.debug("Cannot remove ports of device {} while it is available.", deviceId);
400 return;
401 }
402
403 List<PortDescription> portDescriptions = ImmutableList.of();
404 List<DeviceEvent> events = store.updatePorts(getProvider(deviceId).id(),
405 deviceId, portDescriptions);
406 if (events != null) {
407 for (DeviceEvent event : events) {
408 post(event);
409 }
410 }
411 }
412
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700413 private void handlePortRequest(InternalPortUpDownEvent event) {
414 DeviceId deviceId = event.deviceId();
Saurav Dasa2d37502016-03-25 17:50:40 -0700415 checkNotNull(deviceId, DEVICE_ID_NULL);
Sean Condon436c60a2021-01-01 14:23:29 +0000416 checkNotNull(event.portNumber(), PORT_NUMBER_NULL);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700417 checkState(mastershipService.isLocalMaster(deviceId), EVENT_NON_MASTER);
418 changePortStateAtMaster(event.deviceId(), event.portNumber(), event.isEnable());
419 }
420
421 private void changePortStateAtMaster(DeviceId deviceId, PortNumber portNumber,
422 boolean enable) {
Saurav Dasa2d37502016-03-25 17:50:40 -0700423 DeviceProvider provider = getProvider(deviceId);
424 if (provider != null) {
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700425 log.info("Port {} on device {} being administratively brought {}",
Saurav Dasa2d37502016-03-25 17:50:40 -0700426 portNumber, deviceId,
427 (enable) ? "UP" : "DOWN");
428 provider.changePortState(deviceId, portNumber, enable);
429 } else {
430 log.warn("Provider not found for {}", deviceId);
431 }
432 }
433
434 @Override
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700435 public void changePortState(DeviceId deviceId, PortNumber portNumber,
436 boolean enable) {
437 checkNotNull(deviceId, DEVICE_ID_NULL);
Sean Condon436c60a2021-01-01 14:23:29 +0000438 checkNotNull(portNumber, PORT_NUMBER_NULL);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700439 NodeId masterId = mastershipService.getMasterFor(deviceId);
440
Ray Milkey4ef245e2018-05-10 15:41:16 -0700441 if (masterId == null) {
442 // No master found; device is offline
443 log.info("No master found for port state change for {}", deviceId);
444 return;
445 }
446
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700447 if (!masterId.equals(localNodeId)) {
448 //Send the request to the master node for the device
449 log.info("Device {} is managed by {}, forwarding the request to the MASTER",
450 deviceId, masterId);
451 communicationService.unicast(
452 new InternalPortUpDownEvent(deviceId, portNumber, enable),
453 PORT_UPDOWN_SUBJECT,
454 SERIALIZER::encode,
455 masterId).whenComplete((r, error) -> {
456 if (error != null) {
457 log.warn("Failed to send packet-updown-req to {}", masterId, error);
458 }
459 });
460 } else {
461 changePortStateAtMaster(deviceId, portNumber, enable);
462 }
463 }
464
465 @Override
samuele1fa7322015-07-14 16:35:16 +0800466 protected DeviceProviderService createProviderService(
467 DeviceProvider provider) {
tom7869ad92014-09-09 14:32:08 -0700468 return new InternalDeviceProviderService(provider);
469 }
470
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800471 /**
472 * Checks if all the reachable devices have a valid mastership role.
473 */
474 private void mastershipCheck() {
475 log.debug("Checking mastership");
476 for (Device device : getDevices()) {
477 final DeviceId deviceId = device.id();
Ray Milkeyc7104672016-08-31 12:04:34 -0700478 MastershipRole myRole = mastershipService.getLocalRole(deviceId);
479 log.trace("Checking device {}. Current role is {}", deviceId, myRole);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800480 if (!isReachable(deviceId)) {
Ray Milkeyc7104672016-08-31 12:04:34 -0700481 if (myRole != NONE) {
helenyrwufd296b62016-06-22 17:43:02 -0700482 // can't be master if device is not reachable
483 try {
Ray Milkeyc7104672016-08-31 12:04:34 -0700484 if (myRole == MASTER) {
Andrea Campanellae319dc22018-01-18 12:51:04 +0100485 log.info("Local Role {}, Marking unreachable device {} offline", MASTER, deviceId);
Ray Milkeyc7104672016-08-31 12:04:34 -0700486 post(store.markOffline(deviceId));
487 }
helenyrwufd296b62016-06-22 17:43:02 -0700488 //relinquish master role and ability to be backup.
489 mastershipService.relinquishMastership(deviceId).get();
490 } catch (InterruptedException e) {
Thomas Vachuska5b38dc02018-05-10 15:24:40 -0700491 log.warn("Interrupted while relinquishing role for {}", deviceId);
helenyrwufd296b62016-06-22 17:43:02 -0700492 Thread.currentThread().interrupt();
493 } catch (ExecutionException e) {
494 log.error("Exception thrown while relinquishing role for {}", deviceId, e);
495 }
Bharath Thiruveedula651a7da2016-12-13 02:52:50 +0530496 } else {
Andrea Campanellae319dc22018-01-18 12:51:04 +0100497 // check if the device has master and is available to the store, if not, mark it offline
Bharath Thiruveedula651a7da2016-12-13 02:52:50 +0530498 // only the nodes which has mastership role can mark any device offline.
Andrea Campanellae319dc22018-01-18 12:51:04 +0100499 // This condition should never be hit unless in a device removed phase for NONE mastership roles.
Jordan Haltermanbc0308f2017-11-29 15:37:34 -0800500 NodeId master = mastershipService.getMasterFor(deviceId);
Andrea Campanellae319dc22018-01-18 12:51:04 +0100501 if (master == null && isAvailable(deviceId)) {
Jordan Haltermanbc0308f2017-11-29 15:37:34 -0800502 CompletableFuture<MastershipRole> roleFuture = mastershipService.requestRoleFor(deviceId);
503 roleFuture.thenAccept(role -> {
504 MastershipTerm term = termService.getMastershipTerm(deviceId);
505 if (term != null && localNodeId.equals(term.master())) {
506 log.info("Marking unreachable device {} offline", deviceId);
507 post(store.markOffline(deviceId));
508 } else {
509 log.info("Failed marking {} offline. {}", deviceId, role);
510 }
511 mastershipService.relinquishMastership(deviceId);
512 });
513 }
helenyrwufd296b62016-06-22 17:43:02 -0700514 }
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800515 continue;
516 }
517
Jordan Halterman368bd3d2019-01-04 12:45:57 -0800518 // If this node is the master, ensure the device is marked online.
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800519 if (myRole == MASTER && canMarkOnline(device)) {
Jordan Halterman368bd3d2019-01-04 12:45:57 -0800520 post(store.markOnline(deviceId));
521 }
522
Ray Milkeyc7104672016-08-31 12:04:34 -0700523 if (myRole != NONE) {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800524 continue;
525 }
526
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700527 log.info("{} is reachable but did not have a valid role, reasserting", deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800528
529 // isReachable but was not MASTER or STANDBY, get a role and apply
530 // Note: NONE triggers request to MastershipService
Jordan Halterman9416aea2017-11-17 12:40:21 -0800531 reassertRole(deviceId, NONE);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800532 }
533 }
534
tomd3097b02014-08-26 10:40:29 -0700535 // Personalized device provider service issued to the supplied provider.
tomdc361b62014-09-09 20:36:52 -0700536 private class InternalDeviceProviderService
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700537 extends AbstractProviderService<DeviceProvider>
538 implements DeviceProviderService {
tomd3097b02014-08-26 10:40:29 -0700539
tomcfde0622014-09-09 11:02:42 -0700540 InternalDeviceProviderService(DeviceProvider provider) {
tomd3097b02014-08-26 10:40:29 -0700541 super(provider);
542 }
543
Ray Milkey33306ba2018-09-20 13:27:25 -0700544 /**
545 * Apply role in reaction to provider event.
546 *
547 * @param deviceId device identifier
548 * @param newRole new role to apply to the device
549 * @return true if the request was sent to provider
550 */
551 private boolean applyRole(DeviceId deviceId, MastershipRole newRole) {
552
553 if (newRole.equals(MastershipRole.NONE)) {
554 //no-op
555 return true;
556 }
557
558 DeviceProvider provider = provider();
559 if (provider == null) {
560 log.warn("Provider for {} was not found. Cannot apply role {}",
561 deviceId, newRole);
562 return false;
563 }
564 provider.roleChanged(deviceId, newRole);
565 // not triggering probe when triggered by provider service event
566 return true;
567 }
568
tomd3097b02014-08-26 10:40:29 -0700569 @Override
alshabibb7b40632014-09-28 21:30:00 -0700570 public void deviceConnected(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700571 DeviceDescription deviceDescription) {
tom32f66842014-08-27 19:27:47 -0700572 checkNotNull(deviceId, DEVICE_ID_NULL);
573 checkNotNull(deviceDescription, DEVICE_DESCRIPTION_NULL);
tomeadbb462014-09-07 16:10:19 -0700574 checkValidity();
Yuta HIGUCHI24b2e2a2014-10-07 15:53:57 -0700575
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700576 deviceLocalStatus.put(deviceId, new LocalStatus(true, Instant.now()));
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800577
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700578 BasicDeviceConfig cfg = networkConfigService.getConfig(deviceId, BasicDeviceConfig.class);
579 if (!isAllowed(cfg)) {
580 log.warn("Device {} is not allowed", deviceId);
581 return;
582 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200583 PortDescriptionsConfig portConfig = networkConfigService.getConfig(deviceId, PortDescriptionsConfig.class);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700584 // Generate updated description and establish my Role
585 deviceDescription = BasicDeviceOperator.combine(cfg, deviceDescription);
jaegonkim1c1f0c22018-01-28 22:20:42 +0900586 DeviceAnnotationConfig annoConfig = networkConfigService.getConfig(deviceId, DeviceAnnotationConfig.class);
587 if (annoConfig != null) {
588 deviceDescription = deviceAnnotationOp.combine(deviceId, deviceDescription, Optional.of(annoConfig));
589 }
590
pier388ec252020-04-15 20:53:14 +0200591 // Wait for the end of the election. sync call of requestRoleFor
592 // wait only 3s and it is not entirely safe since the leadership
593 // election timer can be higher.
594 MastershipRole role = Futures.getUnchecked(mastershipService.requestRoleFor(deviceId));
jaegonkim8eabcec2018-07-27 23:40:43 +0900595 log.info("Local role is {} for {}", role, deviceId);
pier388ec252020-04-15 20:53:14 +0200596 store.createOrUpdateDevice(provider().id(), deviceId, deviceDescription);
Ray Milkey33306ba2018-09-20 13:27:25 -0700597 applyRole(deviceId, role);
HIGUCHI Yuta11530fb2015-05-27 13:10:20 -0700598
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200599 if (portConfig != null) {
600 //updating the ports if configration exists
601 List<PortDescription> complete = store.getPortDescriptions(provider().id(), deviceId)
602 .collect(Collectors.toList());
603 complete.addAll(portConfig.portDescriptions());
604 List<PortDescription> portDescriptions = complete.stream()
605 .map(e -> applyAllPortOps(deviceId, e))
606 .collect(Collectors.toList());
607 store.updatePorts(provider().id(), deviceId, portDescriptions);
608 }
609
helenyrwufd296b62016-06-22 17:43:02 -0700610 if (deviceDescription.isDefaultAvailable()) {
611 log.info("Device {} connected", deviceId);
612 } else {
613 log.info("Device {} registered", deviceId);
614 }
tomd3097b02014-08-26 10:40:29 -0700615 }
616
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700617 private PortDescription ensurePortEnabledState(PortDescription desc, boolean enabled) {
618 if (desc.isEnabled() != enabled) {
Yuta HIGUCHI2b1935d2018-03-01 21:41:06 -0800619 return DefaultPortDescription.builder(desc)
620 .isEnabled(enabled)
621 .build();
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700622 }
623 return desc;
624 }
625
tomd3097b02014-08-26 10:40:29 -0700626 @Override
627 public void deviceDisconnected(DeviceId deviceId) {
tom32f66842014-08-27 19:27:47 -0700628 checkNotNull(deviceId, DEVICE_ID_NULL);
tomeadbb462014-09-07 16:10:19 -0700629 checkValidity();
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700630 deviceLocalStatus.put(deviceId, new LocalStatus(false, Instant.now()));
Andrea Campanella18fdda82021-09-13 12:37:36 +0200631 log.info("Device {} disconnected from this node: {}", deviceId,
632 clusterService.getLocalNode().id());
Ayaka Koshibed9f693e2014-09-29 18:04:54 -0700633
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700634 List<PortDescription> descs = store.getPortDescriptions(provider().id(), deviceId)
635 .map(desc -> ensurePortEnabledState(desc, false))
636 .collect(Collectors.toList());
Yafit Hadara9a73de2015-09-06 13:52:52 +0300637
alshabibafc514a2014-12-01 14:44:05 -0800638 store.updatePorts(this.provider().id(), deviceId, descs);
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700639 try {
Madan Jampani565a66a2015-07-25 17:01:13 -0700640 if (mastershipService.isLocalMaster(deviceId)) {
Thomas Vachuska5f429d62015-05-28 15:34:36 -0700641 post(store.markOffline(deviceId));
642 }
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700643 } catch (IllegalStateException e) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700644 log.warn("Failed to mark {} offline", deviceId);
645 // only the MASTER should be marking off-line in normal cases,
samuele1fa7322015-07-14 16:35:16 +0800646 // but if I was the last STANDBY connection, etc. and no one else
647 // was there to mark the device offline, this instance may need to
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700648 // temporarily request for Master Role and mark offline.
649
samuele1fa7322015-07-14 16:35:16 +0800650 //there are times when this node will correctly have mastership, BUT
651 //that isn't reflected in the ClockManager before the device disconnects.
652 //we want to let go of the device anyways, so make sure this happens.
Yuta HIGUCHI0722fb22014-10-19 01:16:33 -0700653
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700654 // FIXME: Store semantics leaking out as IllegalStateException.
samuele1fa7322015-07-14 16:35:16 +0800655 // Consider revising store API to handle this scenario.
656 CompletableFuture<MastershipRole> roleFuture = mastershipService.requestRoleFor(deviceId);
Madan Jampanide003d92015-05-11 17:14:20 -0700657 roleFuture.whenComplete((role, error) -> {
samuele1fa7322015-07-14 16:35:16 +0800658 MastershipTerm term = termService.getMastershipTerm(deviceId);
659 // TODO: Move this type of check inside device clock manager, etc.
660 if (term != null && localNodeId.equals(term.master())) {
661 log.info("Retry marking {} offline", deviceId);
samuele1fa7322015-07-14 16:35:16 +0800662 post(store.markOffline(deviceId));
663 } else {
664 log.info("Failed again marking {} offline. {}", deviceId, role);
665 }
666 });
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700667 } finally {
Madan Jampanic6e574f2015-05-29 13:41:52 -0700668 try {
samuele1fa7322015-07-14 16:35:16 +0800669 //relinquish master role and ability to be backup.
Madan Jampanic6e574f2015-05-29 13:41:52 -0700670 mastershipService.relinquishMastership(deviceId).get();
671 } catch (InterruptedException e) {
samuele1fa7322015-07-14 16:35:16 +0800672 log.warn("Interrupted while reliquishing role for {}", deviceId);
Madan Jampanic6e574f2015-05-29 13:41:52 -0700673 Thread.currentThread().interrupt();
674 } catch (ExecutionException e) {
samuele1fa7322015-07-14 16:35:16 +0800675 log.error("Exception thrown while relinquishing role for {}", deviceId, e);
Madan Jampanic6e574f2015-05-29 13:41:52 -0700676 }
tom0efbb1d2014-09-09 11:54:28 -0700677 }
tomd3097b02014-08-26 10:40:29 -0700678 }
679
680 @Override
alshabibb7b40632014-09-28 21:30:00 -0700681 public void updatePorts(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700682 List<PortDescription> portDescriptions) {
tom32f66842014-08-27 19:27:47 -0700683 checkNotNull(deviceId, DEVICE_ID_NULL);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700684 checkNotNull(portDescriptions, PORT_DESC_LIST_NULL);
tomeadbb462014-09-07 16:10:19 -0700685 checkValidity();
Madan Jampani565a66a2015-07-25 17:01:13 -0700686 if (!mastershipService.isLocalMaster(deviceId)) {
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700687 // Never been a master for this device
688 // any update will be ignored.
samuele1fa7322015-07-14 16:35:16 +0800689 log.trace("Ignoring {} port updates on standby node. {}", deviceId, portDescriptions);
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700690 return;
691 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200692 PortDescriptionsConfig portConfig = networkConfigService.getConfig(deviceId, PortDescriptionsConfig.class);
693 if (portConfig != null) {
Carmelo Cascone1da7a4d2018-06-27 18:03:11 +0200694 // Updating the ports if configuration exists (on new lists as
695 // the passed one might be immutable)
696 portDescriptions = Lists.newArrayList(portDescriptions);
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200697 portDescriptions.addAll(portConfig.portDescriptions());
698 }
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700699 portDescriptions = portDescriptions.stream()
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700700 .map(e -> applyAllPortOps(deviceId, e))
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700701 .collect(Collectors.toList());
Yuta HIGUCHI5f6739c2014-10-01 14:04:01 -0700702 List<DeviceEvent> events = store.updatePorts(this.provider().id(),
samuele1fa7322015-07-14 16:35:16 +0800703 deviceId, portDescriptions);
Thomas Vachuska5923b9a2016-01-26 10:52:57 -0800704 if (events != null) {
705 for (DeviceEvent event : events) {
706 post(event);
707 }
tom32f66842014-08-27 19:27:47 -0700708 }
tomd3097b02014-08-26 10:40:29 -0700709 }
710
711 @Override
alshabibb7b40632014-09-28 21:30:00 -0700712 public void portStatusChanged(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700713 PortDescription portDescription) {
tom32f66842014-08-27 19:27:47 -0700714 checkNotNull(deviceId, DEVICE_ID_NULL);
715 checkNotNull(portDescription, PORT_DESCRIPTION_NULL);
tomeadbb462014-09-07 16:10:19 -0700716 checkValidity();
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700717
Madan Jampani565a66a2015-07-25 17:01:13 -0700718 if (!mastershipService.isLocalMaster(deviceId)) {
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700719 // Never been a master for this device
720 // any update will be ignored.
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700721 log.trace("Ignoring {} port update on standby node. {}", deviceId,
722 portDescription);
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700723 return;
724 }
Ray Milkey9ef22232016-07-14 12:42:37 -0700725 Device device = getDevice(deviceId);
726 if (device == null) {
727 log.trace("Device not found: {}", deviceId);
nitinanandddfa8c92017-03-24 16:14:23 +0530728 return;
Ray Milkey9ef22232016-07-14 12:42:37 -0700729 }
Andrea Campanella1c24fb92018-12-20 16:43:59 +0100730 if ((Type.ROADM.equals(device.type())) || (Type.OTN.equals(device.type())) ||
731 (Type.OLS.equals(device.type())) || (Type.TERMINAL_DEVICE.equals(device.type()))) {
HIGUCHI Yuta6972ae62016-05-12 19:57:46 -0700732 // FIXME This is ignoring all other info in portDescription given as input??
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700733 PortDescription storedPortDesc = store.getPortDescription(provider().id(),
Simon Huntffbad3b2017-05-16 15:37:51 -0700734 deviceId,
735 portDescription.portNumber());
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700736 portDescription = ensurePortEnabledState(storedPortDesc,
737 portDescription.isEnabled());
Yafit Hadara9a73de2015-09-06 13:52:52 +0300738 }
739
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700740 portDescription = applyAllPortOps(deviceId, portDescription);
samuele1fa7322015-07-14 16:35:16 +0800741 final DeviceEvent event = store.updatePortStatus(this.provider().id(),
HIGUCHI Yuta6972ae62016-05-12 19:57:46 -0700742 deviceId,
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700743 portDescription);
tomff7eb7c2014-09-08 12:49:03 -0700744 if (event != null) {
Carmelo Casconeab5d41e2019-03-06 18:02:34 -0800745 log.info("Device {} port {} status changed (enabled={})",
746 deviceId, event.port().number(), portDescription.isEnabled());
tom0efbb1d2014-09-09 11:54:28 -0700747 post(event);
tomff7eb7c2014-09-08 12:49:03 -0700748 }
tomd3097b02014-08-26 10:40:29 -0700749 }
tom3f2bbd72014-09-24 12:07:58 -0700750
751 @Override
Michal Machce774332017-01-25 11:02:55 +0100752 public void deletePort(DeviceId deviceId, PortDescription basePortDescription) {
753
754 checkNotNull(deviceId, DEVICE_ID_NULL);
755 checkNotNull(basePortDescription, PORT_DESCRIPTION_NULL);
756 checkValidity();
757
758 if (!mastershipService.isLocalMaster(deviceId)) {
759 // Never been a master for this device
760 // any update will be ignored.
761 log.trace("Ignoring {} port update on standby node. {}", deviceId,
762 basePortDescription);
763 return;
764 }
765
766 Device device = getDevice(deviceId);
767 if (device == null) {
768 log.trace("Device not found: {}", deviceId);
769 }
770
Yuta HIGUCHI53e47962018-03-01 23:50:48 -0800771 PortDescription newPortDescription = DefaultPortDescription.builder(basePortDescription)
772 .isRemoved(true)
773 .build();
774
Michal Machce774332017-01-25 11:02:55 +0100775 final DeviceEvent event = store.updatePortStatus(this.provider().id(),
776 deviceId,
777 newPortDescription);
778 if (event != null) {
779 log.info("Device {} port {} status changed", deviceId, event.port().number());
780 post(event);
781 }
782 }
783
784 @Override
samuele1fa7322015-07-14 16:35:16 +0800785 public void receivedRoleReply(DeviceId deviceId, MastershipRole requested,
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700786 MastershipRole response) {
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700787 // Several things can happen here:
788 // 1. request and response match
789 // 2. request and response don't match
790 // 3. MastershipRole and requested match (and 1 or 2 are true)
791 // 4. MastershipRole and requested don't match (and 1 or 2 are true)
792 //
793 // 2, 4, and 3 with case 2 are failure modes.
794
tom3f2bbd72014-09-24 12:07:58 -0700795 // FIXME: implement response to this notification
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700796
Madan Jampanif2af7712015-05-29 18:43:52 -0700797 log.debug("got reply to a role request for {}: asked for {}, and got {}",
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700798 deviceId, requested, response);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700799
800 if (requested == null && response == null) {
samuele1fa7322015-07-14 16:35:16 +0800801 // something was off with DeviceProvider, maybe check channel too?
Shashikanth VH387a1ca2016-02-09 20:35:21 +0530802 log.warn("Failed to assert role onto Device {}", deviceId);
Yuta HIGUCHIcf603902014-10-07 23:04:32 -0700803 mastershipService.relinquishMastership(deviceId);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700804 return;
Yuta HIGUCHIcf603902014-10-07 23:04:32 -0700805 }
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700806
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800807 final MastershipRole expected = mastershipService.getLocalRole(deviceId);
808
809 if (requested == null) {
810 // Provider is not able to reconcile role responses with
811 // requests. We assume what was requested is what we expect.
812 // This will work only if mastership doesn't change too often,
813 // and devices are left enough time to provide responses before
814 // a different role is requested.
815 requested = expected;
816 }
817
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700818 if (Objects.equals(requested, response)) {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800819 if (Objects.equals(requested, expected)) {
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700820 return;
821 } else {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800822 log.warn("Role mismatch on {}. Set to {}, but store demands {}",
823 deviceId, response, expected);
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800824 // roleManager got the device to comply, but doesn't agree with
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700825 // the store; use the store's view, then try to reassert.
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800826 backgroundService.execute(() -> reassertRole(deviceId, expected));
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800827 return;
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700828 }
829 } else {
830 // we didn't get back what we asked for. Reelect someone else.
Carmelo Casconee5b28722018-06-22 17:28:28 +0200831 log.warn("Failed to assert role onto device {}. requested={}, response={}",
832 deviceId, requested, response);
Carmelo Casconeb37bdde2018-06-22 17:25:46 +0200833 if (requested == MastershipRole.MASTER) {
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700834 mastershipService.relinquishMastership(deviceId);
835 // TODO: Shouldn't we be triggering event?
samuele1fa7322015-07-14 16:35:16 +0800836 //final Device device = getDevice(deviceId);
837 //post(new DeviceEvent(DEVICE_MASTERSHIP_CHANGED, device));
Charles Chan48103842021-01-06 01:33:03 +0000838 } else if (requested == MastershipRole.STANDBY) {
839 // For P4RT devices, the response role will be NONE when this node is expected to be STANDBY
840 // but the stream channel is not opened correctly.
841 // Calling reassertRole will trigger the mechanism in GeneralDeviceProvider that
842 // attempts to re-establish the stream channel
843 backgroundService.execute(() -> reassertRole(deviceId, expected));
844 return;
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700845 }
846 }
tom3f2bbd72014-09-24 12:07:58 -0700847 }
sangho538108b2015-04-08 14:29:20 -0700848
849 @Override
samuele1fa7322015-07-14 16:35:16 +0800850 public void updatePortStatistics(DeviceId deviceId, Collection<PortStatistics> portStatistics) {
sangho538108b2015-04-08 14:29:20 -0700851 checkNotNull(deviceId, DEVICE_ID_NULL);
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700852 checkNotNull(portStatistics, "Port statistics list cannot be null");
sangho538108b2015-04-08 14:29:20 -0700853 checkValidity();
854
samuele1fa7322015-07-14 16:35:16 +0800855 DeviceEvent event = store.updatePortStatistics(this.provider().id(),
856 deviceId, portStatistics);
sangho538108b2015-04-08 14:29:20 -0700857 post(event);
858 }
pierventreb8856852021-10-01 22:01:22 +0200859
860 @Override
861 public DeviceDescription getDeviceDescription(DeviceId deviceId) {
862 checkNotNull(deviceId, DEVICE_ID_NULL);
863 checkValidity();
864
865 return store.getDeviceDescription(provider().id(), deviceId);
866 }
tomd3097b02014-08-26 10:40:29 -0700867 }
tom32f66842014-08-27 19:27:47 -0700868
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700869 // by default allowed, otherwise check flag
870 private boolean isAllowed(BasicDeviceConfig cfg) {
871 return (cfg == null || cfg.isAllowed());
872 }
873
Carmelo Cascone0761cd32018-08-29 19:22:50 -0700874 private boolean canMarkOnline(Device device) {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800875 DeviceProvider provider = getProvider(device.id());
876 if (provider == null) {
877 log.warn("Provider for {} was not found. Cannot evaluate availability", device.id());
878 return false;
879 }
880 return provider.isAvailable(device.id());
Carmelo Cascone0761cd32018-08-29 19:22:50 -0700881 }
882
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800883 // Applies the specified role to the device; ignores NONE
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700884
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800885 /**
886 * Apply role to device and send probe if MASTER.
887 *
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700888 * @param deviceId device identifier
889 * @param newRole new role to apply to the device
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800890 * @return true if the request was sent to provider
891 */
892 private boolean applyRoleAndProbe(DeviceId deviceId, MastershipRole newRole) {
893 if (newRole.equals(MastershipRole.NONE)) {
samuele1fa7322015-07-14 16:35:16 +0800894 //no-op
Yuta HIGUCHId26354d2014-10-31 14:14:38 -0700895 return true;
896 }
Ayaka Koshibe317245a2014-10-29 00:34:43 -0700897
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800898 DeviceProvider provider = getProvider(deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800899 if (provider == null) {
samuele1fa7322015-07-14 16:35:16 +0800900 log.warn("Provider for {} was not found. Cannot apply role {}", deviceId, newRole);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800901 return false;
902 }
903 provider.roleChanged(deviceId, newRole);
904
905 if (newRole.equals(MastershipRole.MASTER)) {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800906 log.debug("sent TriggerProbe({})", deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800907 // only trigger event when request was sent to provider
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800908 provider.triggerProbe(deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800909 }
910 return true;
911 }
912
913 /**
Harold Huangff6e1e62017-11-09 16:25:36 +0800914 * Reassert role for specified device connected to this node.
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800915 *
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700916 * @param did device identifier
917 * @param nextRole role to apply. If NONE is specified,
918 * it will ask mastership service for a role and apply it.
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800919 */
samuele1fa7322015-07-14 16:35:16 +0800920 private void reassertRole(final DeviceId did,
921 final MastershipRole nextRole) {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800922
Jordan Halterman9416aea2017-11-17 12:40:21 -0800923 MastershipRole myNextRole = nextRole;
924 if (myNextRole == NONE && upgradeService.isLocalActive()) {
925 try {
926 mastershipService.requestRoleFor(did).get();
927 MastershipTerm term = termService.getMastershipTerm(did);
928 if (term != null && localNodeId.equals(term.master())) {
929 myNextRole = MASTER;
930 } else {
931 myNextRole = STANDBY;
932 }
933 } catch (InterruptedException e) {
934 Thread.currentThread().interrupt();
935 log.error("Interrupted waiting for Mastership", e);
936 } catch (ExecutionException e) {
937 log.error("Encountered an error waiting for Mastership", e);
938 }
939 }
940
941 switch (myNextRole) {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700942 case MASTER:
943 final Device device = getDevice(did);
Carmelo Cascone0761cd32018-08-29 19:22:50 -0700944 if (device != null && !isAvailable(did) && canMarkOnline(device)) {
Palash Kala6c526062018-04-03 18:25:11 +0900945 post(store.markOnline(did));
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700946 }
947 // TODO: should apply role only if there is mismatch
Jordan Halterman9416aea2017-11-17 12:40:21 -0800948 log.debug("Applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700949 if (!applyRoleAndProbe(did, MASTER)) {
Jordan Halterman9416aea2017-11-17 12:40:21 -0800950 log.warn("Unsuccessful applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700951 // immediately failed to apply role
952 mastershipService.relinquishMastership(did);
953 // FIXME disconnect?
954 }
955 break;
956 case STANDBY:
Jordan Halterman9416aea2017-11-17 12:40:21 -0800957 log.debug("Applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700958 if (!applyRoleAndProbe(did, STANDBY)) {
Jordan Halterman9416aea2017-11-17 12:40:21 -0800959 log.warn("Unsuccessful applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700960 // immediately failed to apply role
961 mastershipService.relinquishMastership(did);
962 // FIXME disconnect?
963 }
964 break;
965 case NONE:
Jordan Halterman980a8c12017-09-22 18:01:19 -0700966 break;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700967 default:
968 // should never reach here
969 log.error("You didn't see anything. I did not exist.");
970 break;
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800971 }
972 }
973
Madan Jampani328371d2015-05-29 14:06:27 -0700974 private void handleMastershipEvent(MastershipEvent event) {
Jon Hall7a8bfc62016-05-26 17:59:04 -0700975 if (event.type() == MastershipEvent.Type.BACKUPS_CHANGED) {
Madan Jampani328371d2015-05-29 14:06:27 -0700976 // Don't care if backup list changed.
977 return;
978 }
Madan Jampani328371d2015-05-29 14:06:27 -0700979 final DeviceId did = event.subject();
980
981 // myRole suggested by MastershipService
982 MastershipRole myNextRole;
Jon Hall7a8bfc62016-05-26 17:59:04 -0700983 if (event.type() == MastershipEvent.Type.SUSPENDED) {
984 myNextRole = NONE; // FIXME STANDBY OR NONE?
985 } else if (localNodeId.equals(event.roleInfo().master())) {
Madan Jampani328371d2015-05-29 14:06:27 -0700986 // confirm latest info
987 MastershipTerm term = termService.getMastershipTerm(did);
samuele1fa7322015-07-14 16:35:16 +0800988 final boolean iHaveControl = term != null && localNodeId.equals(term.master());
Madan Jampani328371d2015-05-29 14:06:27 -0700989 if (iHaveControl) {
Madan Jampani328371d2015-05-29 14:06:27 -0700990 myNextRole = MASTER;
991 } else {
992 myNextRole = STANDBY;
993 }
994 } else if (event.roleInfo().backups().contains(localNodeId)) {
995 myNextRole = STANDBY;
996 } else {
997 myNextRole = NONE;
998 }
999
Madan Jampani328371d2015-05-29 14:06:27 -07001000 final boolean isReachable = isReachable(did);
1001 if (!isReachable) {
1002 // device is not connected to this node
Jon Halla90c44c2017-01-24 16:02:07 -08001003 if (mastershipService.getLocalRole(did) == NONE) {
1004 log.debug("Node was instructed to be {} role for {}, "
Simon Huntffbad3b2017-05-16 15:37:51 -07001005 + "but this node cannot reach the device "
1006 + "and role is already None. Ignoring request.",
1007 myNextRole, did);
Jon Halla90c44c2017-01-24 16:02:07 -08001008 } else if (myNextRole != NONE) {
Madan Jampani328371d2015-05-29 14:06:27 -07001009 log.warn("Node was instructed to be {} role for {}, "
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001010 + "but this node cannot reach the device. "
1011 + "Relinquishing role. ",
samuele1fa7322015-07-14 16:35:16 +08001012 myNextRole, did);
Madan Jampani328371d2015-05-29 14:06:27 -07001013 mastershipService.relinquishMastership(did);
1014 }
1015 return;
1016 }
1017
1018 // device is connected to this node:
1019 if (store.getDevice(did) != null) {
1020 reassertRole(did, myNextRole);
1021 } else {
1022 log.debug("Device is not yet/no longer in the store: {}", did);
1023 }
1024 }
1025
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -08001026 // Intercepts mastership events
1027 private class InternalMastershipListener implements MastershipListener {
1028
tomb41d1ac2014-09-24 01:51:24 -07001029 @Override
1030 public void event(MastershipEvent event) {
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -08001031 backgroundService.execute(() -> {
Madan Jampani328371d2015-05-29 14:06:27 -07001032 try {
1033 handleMastershipEvent(event);
1034 } catch (Exception e) {
1035 log.warn("Failed to handle {}", event, e);
Yuta HIGUCHId26354d2014-10-31 14:14:38 -07001036 }
Madan Jampani328371d2015-05-29 14:06:27 -07001037 });
Ayaka Koshibe317245a2014-10-29 00:34:43 -07001038 }
tomb41d1ac2014-09-24 01:51:24 -07001039 }
tomf80c9722014-09-24 14:49:18 -07001040
1041 // Store delegate to re-post events emitted from the store.
Thomas Vachuskab17c41f2015-05-19 11:16:05 -07001042 private class InternalStoreDelegate implements DeviceStoreDelegate {
tomf80c9722014-09-24 14:49:18 -07001043 @Override
1044 public void notify(DeviceEvent event) {
1045 post(event);
Rafał Szalecki9fb87f62017-12-06 15:06:09 +01001046 if (event.type().equals(DeviceEvent.Type.DEVICE_REMOVED)) {
Thomas Vachuska5b38dc02018-05-10 15:24:40 -07001047 // When device is administratively removed, force disconnect.
1048 DeviceId deviceId = event.subject().id();
1049 deviceLocalStatus.remove(deviceId);
1050
1051 DeviceProvider provider = getProvider(deviceId);
1052 if (provider != null) {
1053 log.info("Triggering disconnect for device {}", deviceId);
1054 try {
1055 provider.triggerDisconnect(deviceId);
1056 } catch (UnsupportedOperationException e) {
1057 log.warn("Unable to trigger disconnect due to {}", e.getMessage());
1058 }
1059 }
Rafał Szalecki9fb87f62017-12-06 15:06:09 +01001060 }
tomf80c9722014-09-24 14:49:18 -07001061 }
1062 }
samuel738dfaf2015-07-11 11:08:57 +08001063
1064 @Override
1065 public Iterable<Device> getDevices(Type type) {
Changhoon Yoonb856b812015-08-10 03:47:19 +09001066 checkPermission(DEVICE_READ);
samuel738dfaf2015-07-11 11:08:57 +08001067 Set<Device> results = new HashSet<>();
1068 Iterable<Device> devices = store.getDevices();
1069 if (devices != null) {
1070 devices.forEach(d -> {
1071 if (type.equals(d.type())) {
1072 results.add(d);
1073 }
1074 });
1075 }
1076 return results;
1077 }
1078
1079 @Override
1080 public Iterable<Device> getAvailableDevices(Type type) {
Changhoon Yoonb856b812015-08-10 03:47:19 +09001081 checkPermission(DEVICE_READ);
samuel738dfaf2015-07-11 11:08:57 +08001082 Set<Device> results = new HashSet<>();
1083 Iterable<Device> availableDevices = store.getAvailableDevices();
1084 if (availableDevices != null) {
1085 availableDevices.forEach(d -> {
1086 if (type.equals(d.type())) {
1087 results.add(d);
1088 }
1089 });
1090 }
1091 return results;
1092 }
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001093
1094 private class InternalNetworkConfigListener implements NetworkConfigListener {
Ray Milkey69ca82a2019-03-28 09:24:40 -07001095 private DeviceId extractDeviceId(NetworkConfigEvent event) {
1096 DeviceId deviceId = null;
debmaiti9553ed72019-03-18 14:27:42 +05301097 if (event.configClass().equals(PortAnnotationConfig.class)) {
Ray Milkey397caca2019-04-01 16:27:50 -07001098 if (event.subject().getClass() == ConnectPoint.class) {
1099 deviceId = ((ConnectPoint) event.subject()).deviceId();
1100 }
Ray Milkey69ca82a2019-03-28 09:24:40 -07001101 } else if (event.subject().getClass() == DeviceId.class) {
debmaiti9553ed72019-03-18 14:27:42 +05301102 deviceId = (DeviceId) event.subject();
1103 }
Ray Milkey69ca82a2019-03-28 09:24:40 -07001104 return deviceId;
1105 }
1106
1107 @Override
1108 public boolean isRelevant(NetworkConfigEvent event) {
1109 DeviceId deviceId = extractDeviceId(event);
1110
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001111 return (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED
debmaiti9553ed72019-03-18 14:27:42 +05301112 || event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED
1113 || event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED)
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001114 && (event.configClass().equals(BasicDeviceConfig.class)
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001115 || portOpsIndex.containsKey(event.configClass())
Palash Kalaa06a6162017-11-15 20:42:40 +09001116 || event.configClass().equals(PortDescriptionsConfig.class)
Thomas Vachuskaf131e592018-05-07 11:52:14 -07001117 || event.configClass().equals(DeviceAnnotationConfig.class))
Ray Milkey69ca82a2019-03-28 09:24:40 -07001118 && deviceId != null && mastershipService.isLocalMaster(deviceId);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001119 }
1120
1121 @Override
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001122 public void event(NetworkConfigEvent event) {
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001123 DeviceEvent de = null;
1124 if (event.configClass().equals(BasicDeviceConfig.class)) {
Thomas Vachuska138de8b2016-01-11 21:31:38 -08001125 log.debug("Detected device network config event {}", event.type());
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001126 DeviceId did = (DeviceId) event.subject();
1127 DeviceProvider dp = getProvider(did);
Simon Huntffbad3b2017-05-16 15:37:51 -07001128 BasicDeviceConfig cfg =
1129 networkConfigService.getConfig(did, BasicDeviceConfig.class);
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001130
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001131 if (!isAllowed(cfg)) {
1132 kickOutBadDevice(did);
1133 } else {
1134 Device dev = getDevice(did);
Simon Huntffbad3b2017-05-16 15:37:51 -07001135 DeviceDescription desc =
1136 (dev == null) ? null : BasicDeviceOperator.descriptionOf(dev);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001137 desc = BasicDeviceOperator.combine(cfg, desc);
Simon Huntffbad3b2017-05-16 15:37:51 -07001138 if (desc != null && dp != null) {
pier388ec252020-04-15 20:53:14 +02001139 store.createOrUpdateDevice(dp.id(), did, desc);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001140 }
1141 }
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001142 } else if (event.configClass().equals(PortDescriptionsConfig.class)) {
1143 DeviceId did = (DeviceId) event.subject();
1144 DeviceProvider dp = getProvider(did);
1145 if (!event.config().isPresent() ||
1146 getDevice(did) == null || dp == null) {
1147 // sanity check failed, ignore
1148 return;
1149 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001150 PortDescriptionsConfig portConfig = (PortDescriptionsConfig) event.config().get();
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001151 //updating the ports if configuration exists
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001152 List<PortDescription> complete = store.getPortDescriptions(dp.id(), did)
1153 .collect(Collectors.toList());
1154 complete.addAll(portConfig.portDescriptions());
1155 store.updatePorts(dp.id(), did, complete);
Palash Kalaa06a6162017-11-15 20:42:40 +09001156 } else if (event.configClass().equals(DeviceAnnotationConfig.class)) {
1157 DeviceId did = (DeviceId) event.subject();
1158 DeviceProvider dp = getProvider(did);
1159 Device dev = getDevice(did);
1160 DeviceDescription desc =
1161 (dev == null) ? null : BasicDeviceOperator.descriptionOf(dev);
1162 Optional<Config> prevConfig = event.prevConfig();
Anurag Chadha61946392020-08-28 15:18:03 +05301163 if (desc != null) { // Fix for NPE due to desc being null
1164 desc = deviceAnnotationOp.combine(did, desc, prevConfig);
1165 }
Palash Kalaa06a6162017-11-15 20:42:40 +09001166 if (desc != null && dp != null) {
pier388ec252020-04-15 20:53:14 +02001167 store.createOrUpdateDevice(dp.id(), did, desc);
Palash Kalaa06a6162017-11-15 20:42:40 +09001168 }
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001169 } else if (portOpsIndex.containsKey(event.configClass())) {
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001170 ConnectPoint cpt = (ConnectPoint) event.subject();
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001171 DeviceId did = cpt.deviceId();
1172 DeviceProvider dp = getProvider(did);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001173
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001174 // Note: assuming PortOperator can modify existing port,
1175 // but cannot add new port purely from Config.
Simon Huntffbad3b2017-05-16 15:37:51 -07001176 de = Optional.ofNullable(dp)
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001177 .map(provider -> store.getPortDescription(provider.id(), did, cpt.port()))
debmaiti9553ed72019-03-18 14:27:42 +05301178 .map(desc -> applyAllPortOps(cpt, desc, event.prevConfig()))
Simon Huntffbad3b2017-05-16 15:37:51 -07001179 .map(desc -> store.updatePortStatus(dp.id(), did, desc))
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001180 .orElse(null);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001181 }
1182
1183 if (de != null) {
1184 post(de);
1185 }
1186 }
1187
Simon Hunt8f60ff82017-04-24 17:19:30 -07001188 // removes the specified device if it exists
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001189 private void kickOutBadDevice(DeviceId deviceId) {
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001190 Device badDevice = getDevice(deviceId);
1191 if (badDevice != null) {
1192 removeDevice(deviceId);
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001193 }
1194 }
1195 }
Saurav Dasa2d37502016-03-25 17:50:40 -07001196
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001197 @Override
1198 @SafeVarargs
1199 public final void registerPortConfigOperator(PortConfigOperator portOp,
Simon Huntffbad3b2017-05-16 15:37:51 -07001200 Class<? extends Config<ConnectPoint>>... configs) {
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001201 checkNotNull(portOp);
1202
1203 portOp.bindService(networkConfigService);
1204
1205 // update both portOpsIndex and portOps
1206 synchronized (portOpsIndex) {
1207 for (Class<? extends Config<ConnectPoint>> config : configs) {
1208 portOpsIndex.put(config, portOp);
1209 }
1210
1211 portOps.add(portOp);
1212 }
1213
1214 // TODO: Should we be applying to all existing Ports?
1215 Tools.stream(store.getAvailableDevices())
Simon Huntffbad3b2017-05-16 15:37:51 -07001216 .map(Device::id)
1217 .filter(mastershipService::isLocalMaster)
1218 // for each locally managed Device, update all port descriptions
1219 .map(did -> {
1220 ProviderId pid = Optional.ofNullable(getProvider(did))
1221 .map(Provider::id)
1222 .orElse(null);
1223 if (pid == null) {
1224 log.warn("Provider not found for {}", did);
1225 return ImmutableList.<DeviceEvent>of();
1226 }
1227 List<PortDescription> pds
1228 = store.getPortDescriptions(pid, did)
1229 .map(pdesc -> applyAllPortOps(did, pdesc))
1230 .collect(Collectors.toList());
1231 return store.updatePorts(pid, did, pds);
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001232 })
Simon Huntffbad3b2017-05-16 15:37:51 -07001233 // ..and port port update event if necessary
1234 .forEach(evts -> evts.forEach(this::post));
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001235 }
1236
1237 @Override
1238 public void unregisterPortConfigOperator(PortConfigOperator portOp) {
1239 checkNotNull(portOp);
1240
1241
1242 // remove all portOp
1243 synchronized (portOpsIndex) {
1244 portOps.remove(portOp);
1245
1246 // had to do this since COWArrayList iterator doesn't support remove
1247 portOpsIndex.keySet().forEach(key -> portOpsIndex.remove(key, portOp));
1248 }
1249
1250 }
1251
1252 /**
1253 * Merges the appropriate PortConfig with the description.
1254 *
1255 * @param did ID of the Device where the port is attached
1256 * @param desc {@link PortDescription}
1257 * @return merged {@link PortDescription}
1258 */
1259 private PortDescription applyAllPortOps(DeviceId did, PortDescription desc) {
1260 return applyAllPortOps(new ConnectPoint(did, desc.portNumber()), desc);
1261 }
1262
1263 /**
1264 * Merges the appropriate PortConfig with the description.
1265 *
Simon Huntffbad3b2017-05-16 15:37:51 -07001266 * @param cpt ConnectPoint where the port is attached
1267 * @param desc {@link PortDescription}
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001268 * @return merged {@link PortDescription}
1269 */
1270 private PortDescription applyAllPortOps(ConnectPoint cpt, PortDescription desc) {
1271 PortDescription work = desc;
1272 for (PortConfigOperator portOp : portOps) {
1273 work = portOp.combine(cpt, work);
1274 }
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -08001275 return portAnnotationOp.combine(cpt, work);
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001276 }
1277
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -07001278 /**
debmaiti9553ed72019-03-18 14:27:42 +05301279 * Merges the appropriate PortConfig with the description.
1280 *
1281 * @param cpt ConnectPoint where the port is attached
1282 * @param desc {@link PortDescription}
1283 * @param prevConfig previous configuration
1284 * @return merged {@link PortDescription}
1285 */
1286 private PortDescription applyAllPortOps(ConnectPoint cpt, PortDescription desc,
1287 Optional<Config> prevConfig) {
1288 PortDescription work = desc;
1289 for (PortConfigOperator portOp : portOps) {
1290 work = portOp.combine(cpt, work, prevConfig);
1291 }
1292 return portAnnotationOp.combine(cpt, work, prevConfig);
1293 }
1294
1295 /**
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -07001296 * Port Enable/Disable message sent to the device's MASTER node.
1297 */
1298 private class InternalPortUpDownEvent {
1299 private final DeviceId deviceId;
1300 private final PortNumber portNumber;
1301 private final boolean enable;
1302
1303 protected InternalPortUpDownEvent(
1304 DeviceId deviceId, PortNumber portNumber, boolean enable) {
1305 this.deviceId = deviceId;
1306 this.portNumber = portNumber;
1307 this.enable = enable;
1308 }
1309
1310 public DeviceId deviceId() {
1311 return deviceId;
1312 }
1313 public PortNumber portNumber() {
1314 return portNumber;
1315 }
1316 public boolean isEnable() {
1317 return enable;
1318 }
1319
1320 protected InternalPortUpDownEvent() {
1321 this.deviceId = null;
1322 this.portNumber = null;
1323 this.enable = false;
1324 }
1325 }
tomd3097b02014-08-26 10:40:29 -07001326}