blob: e50fe37aec72a24e1f4cb2e3b38716fa32346f6d [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;
pierventre00ac2502021-12-02 09:42:28 +010093import java.util.concurrent.atomic.AtomicBoolean;
Simon Huntffbad3b2017-05-16 15:37:51 -070094import java.util.stream.Collectors;
Jonathan Hart2f669362015-02-11 16:19:20 -080095
Ray Milkey9ef22232016-07-14 12:42:37 -070096import static com.google.common.base.Preconditions.checkNotNull;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -070097import static com.google.common.base.Preconditions.checkState;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -070098import static com.google.common.collect.Multimaps.newListMultimap;
99import static com.google.common.collect.Multimaps.synchronizedListMultimap;
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700100import static java.util.concurrent.Executors.newSingleThreadExecutor;
Ray Milkey9ef22232016-07-14 12:42:37 -0700101import static java.util.concurrent.Executors.newSingleThreadScheduledExecutor;
pierventre00ac2502021-12-02 09:42:28 +0100102import static java.lang.System.currentTimeMillis;
Ray Milkey9ef22232016-07-14 12:42:37 -0700103import static org.onlab.util.Tools.groupedThreads;
104import static org.onosproject.net.MastershipRole.MASTER;
105import static org.onosproject.net.MastershipRole.NONE;
106import static org.onosproject.net.MastershipRole.STANDBY;
Ray Milkey9ef22232016-07-14 12:42:37 -0700107import static org.onosproject.security.AppGuard.checkPermission;
108import static org.onosproject.security.AppPermission.Type.DEVICE_READ;
109import static org.slf4j.LoggerFactory.getLogger;
110
tomd3097b02014-08-26 10:40:29 -0700111/**
tome4729872014-09-23 00:37:37 -0700112 * Provides implementation of the device SB & NB APIs.
tomd3097b02014-08-26 10:40:29 -0700113 */
Ray Milkey86ad7bb2018-09-27 12:32:28 -0700114@Component(immediate = true,
115 service = {DeviceService.class, DeviceAdminService.class,
116 DeviceProviderRegistry.class, PortConfigOperatorRegistry.class })
tom41a2c5f2014-09-19 09:20:35 -0700117public class DeviceManager
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700118 extends AbstractListenerProviderRegistry<DeviceEvent, DeviceListener, DeviceProvider, DeviceProviderService>
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700119 implements DeviceService, DeviceAdminService, DeviceProviderRegistry, PortConfigOperatorRegistry {
tom32f66842014-08-27 19:27:47 -0700120
tome5ec3fd2014-09-04 15:18:06 -0700121 private static final String DEVICE_ID_NULL = "Device ID cannot be null";
122 private static final String PORT_NUMBER_NULL = "Port number cannot be null";
123 private static final String DEVICE_DESCRIPTION_NULL = "Device description cannot be null";
124 private static final String PORT_DESCRIPTION_NULL = "Port description cannot be null";
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700125 private static final String PORT_DESC_LIST_NULL = "Port description list cannot be null";
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700126 private static final String EVENT_NON_MASTER = "Non-master node cannot handle this event";
tomd3097b02014-08-26 10:40:29 -0700127
tom5f38b3a2014-08-27 23:50:54 -0700128 private final Logger log = getLogger(getClass());
tomd3097b02014-08-26 10:40:29 -0700129
alshabib339a3d92014-09-26 17:54:32 -0700130 private final DeviceStoreDelegate delegate = new InternalStoreDelegate();
tomf80c9722014-09-24 14:49:18 -0700131
tomc78acee2014-09-24 15:16:55 -0700132 private final MastershipListener mastershipListener = new InternalMastershipListener();
Madan Jampanide003d92015-05-11 17:14:20 -0700133 private NodeId localNodeId;
tomb41d1ac2014-09-24 01:51:24 -0700134
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800135 private ScheduledExecutorService backgroundService;
136
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700137 private final NetworkConfigListener networkConfigListener = new InternalNetworkConfigListener();
138
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700139 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tom41a2c5f2014-09-19 09:20:35 -0700140 protected DeviceStore store;
tomd3097b02014-08-26 10:40:29 -0700141
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700142 @Reference(cardinality = ReferenceCardinality.MANDATORY)
tomb41d1ac2014-09-24 01:51:24 -0700143 protected ClusterService clusterService;
144
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700145 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Ayaka Koshibea7f044e2014-09-23 16:56:20 -0700146 protected MastershipService mastershipService;
147
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700148 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Ayaka Koshibe3de43ca2014-09-26 16:40:23 -0700149 protected MastershipTermService termService;
150
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700151 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jordan Halterman9416aea2017-11-17 12:40:21 -0800152 protected UpgradeService upgradeService;
153
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700154 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700155 protected NetworkConfigService networkConfigService;
156
Ray Milkeyd84f89b2018-08-17 14:54:17 -0700157 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700158 protected ClusterCommunicationService communicationService;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700159
pierventre00ac2502021-12-02 09:42:28 +0100160 private ExecutorService portRequestExecutor;
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700161 /**
162 * List of all registered PortConfigOperator.
163 */
164 private final List<PortConfigOperator> portOps = new CopyOnWriteArrayList<>();
165
166 /**
167 * Index to look up PortConfigOperator from Config each PortConfigOperator uses.
168 */
169 private final Multimap<Class<? extends Config<ConnectPoint>>, PortConfigOperator> portOpsIndex
Simon Huntffbad3b2017-05-16 15:37:51 -0700170 = synchronizedListMultimap(
171 newListMultimap(new ConcurrentHashMap<>(), CopyOnWriteArrayList::new));
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700172
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800173 // not part of portOps. must be executed at the end
174 private PortAnnotationOperator portAnnotationOp;
Palash Kalaa06a6162017-11-15 20:42:40 +0900175 private DeviceAnnotationOperator deviceAnnotationOp;
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800176
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700177 private static final MessageSubject PORT_UPDOWN_SUBJECT =
178 new MessageSubject("port-updown-req");
179
180 private static final Serializer SERIALIZER = Serializer.using(
181 KryoNamespace.newBuilder()
182 .register(KryoNamespaces.API)
183 .register(InternalPortUpDownEvent.class)
184 .nextId(KryoNamespaces.BEGIN_USER_CUSTOM_ID)
185 .build("DeviceManager"));
186
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800187 /**
188 * Local storage for connectivity status of devices.
189 */
190 private class LocalStatus {
191 boolean connected;
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700192 Instant dateTime;
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800193
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700194 public LocalStatus(boolean b, Instant now) {
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800195 connected = b;
196 dateTime = now;
197 }
198 }
Simon Huntffbad3b2017-05-16 15:37:51 -0700199
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800200 private final Map<DeviceId, LocalStatus> deviceLocalStatus =
201 Maps.newConcurrentMap();
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700202
pierventre00ac2502021-12-02 09:42:28 +0100203 // To remember whether or not the role was acknowledged by the device
204 private final Map<DeviceId, Long> roleToAcknowledge =
205 Maps.newConcurrentMap();
206 private ScheduledExecutorService backgroundRoleChecker;
207 private static final int ROLE_TIMEOUT_SECONDS = 10;
208
tomd3097b02014-08-26 10:40:29 -0700209 @Activate
210 public void activate() {
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800211 portAnnotationOp = new PortAnnotationOperator(networkConfigService);
Palash Kalaa06a6162017-11-15 20:42:40 +0900212 deviceAnnotationOp = new DeviceAnnotationOperator(networkConfigService);
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -0800213 portOpsIndex.put(PortAnnotationConfig.class, portAnnotationOp);
214
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -0800215 backgroundService = newSingleThreadScheduledExecutor(
Simon Huntffbad3b2017-05-16 15:37:51 -0700216 groupedThreads("onos/device", "manager-background", log));
Madan Jampanide003d92015-05-11 17:14:20 -0700217 localNodeId = clusterService.getLocalNode().id();
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800218
tomf80c9722014-09-24 14:49:18 -0700219 store.setDelegate(delegate);
tom96dfcab2014-08-28 09:26:03 -0700220 eventDispatcher.addSink(DeviceEvent.class, listenerRegistry);
tomb41d1ac2014-09-24 01:51:24 -0700221 mastershipService.addListener(mastershipListener);
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700222 networkConfigService.addListener(networkConfigListener);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800223
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700224 backgroundService.scheduleWithFixedDelay(() -> {
225 try {
226 mastershipCheck();
227 } catch (Exception e) {
pierventre00ac2502021-12-02 09:42:28 +0100228 log.error("Exception thrown during mastership integrity check", e);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800229 }
230 }, 1, 1, TimeUnit.MINUTES);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700231
pierventre00ac2502021-12-02 09:42:28 +0100232 portRequestExecutor = newSingleThreadExecutor();
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700233
234 communicationService.<InternalPortUpDownEvent>addSubscriber(
235 PORT_UPDOWN_SUBJECT,
236 SERIALIZER::decode,
237 this::handlePortRequest,
pierventre00ac2502021-12-02 09:42:28 +0100238 portRequestExecutor);
239
240 backgroundRoleChecker = newSingleThreadScheduledExecutor(
241 groupedThreads("onos/device", "manager-role", log));
242 backgroundRoleChecker.scheduleAtFixedRate(() -> {
243 try {
244 roleCheck();
245 } catch (Exception e) {
246 log.error("Exception thrown while verifying role acknowledgement from all devices", e);
247 }
248 }, 0, 10, TimeUnit.SECONDS);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700249
tomd3097b02014-08-26 10:40:29 -0700250 log.info("Started");
251 }
252
253 @Deactivate
254 public void deactivate() {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800255 backgroundService.shutdown();
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700256 networkConfigService.removeListener(networkConfigListener);
tomf80c9722014-09-24 14:49:18 -0700257 store.unsetDelegate(delegate);
tomb41d1ac2014-09-24 01:51:24 -0700258 mastershipService.removeListener(mastershipListener);
tom5f38b3a2014-08-27 23:50:54 -0700259 eventDispatcher.removeSink(DeviceEvent.class);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700260 communicationService.removeSubscriber(PORT_UPDOWN_SUBJECT);
pierventre00ac2502021-12-02 09:42:28 +0100261 portRequestExecutor.shutdown();
262 backgroundRoleChecker.shutdown();
tomd3097b02014-08-26 10:40:29 -0700263 log.info("Stopped");
264 }
265
266 @Override
tomad2d2092014-09-06 23:24:20 -0700267 public int getDeviceCount() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900268 checkPermission(DEVICE_READ);
tomad2d2092014-09-06 23:24:20 -0700269 return store.getDeviceCount();
tomd3097b02014-08-26 10:40:29 -0700270 }
271
272 @Override
mskala32000d32017-07-14 16:27:06 +0200273 public int getAvailableDeviceCount() {
274 checkPermission(DEVICE_READ);
275 return store.getAvailableDeviceCount();
276 }
277
278 @Override
tom32f66842014-08-27 19:27:47 -0700279 public Iterable<Device> getDevices() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900280 checkPermission(DEVICE_READ);
tome5ec3fd2014-09-04 15:18:06 -0700281 return store.getDevices();
tomd3097b02014-08-26 10:40:29 -0700282 }
283
tom32f66842014-08-27 19:27:47 -0700284 @Override
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800285 public Iterable<Device> getAvailableDevices() {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900286 checkPermission(DEVICE_READ);
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -0800287 return store.getAvailableDevices();
288 }
289
290 @Override
tom32f66842014-08-27 19:27:47 -0700291 public Device getDevice(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900292 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700293 checkNotNull(deviceId, DEVICE_ID_NULL);
tom132b58a2014-08-28 16:11:28 -0700294 return store.getDevice(deviceId);
tom32f66842014-08-27 19:27:47 -0700295 }
296
297 @Override
tomad2d2092014-09-06 23:24:20 -0700298 public MastershipRole getRole(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900299 checkPermission(DEVICE_READ);
tomad2d2092014-09-06 23:24:20 -0700300 checkNotNull(deviceId, DEVICE_ID_NULL);
tomb41d1ac2014-09-24 01:51:24 -0700301 return mastershipService.getLocalRole(deviceId);
tomad2d2092014-09-06 23:24:20 -0700302 }
303
304 @Override
tom32f66842014-08-27 19:27:47 -0700305 public List<Port> getPorts(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900306 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700307 checkNotNull(deviceId, DEVICE_ID_NULL);
tom132b58a2014-08-28 16:11:28 -0700308 return store.getPorts(deviceId);
tom32f66842014-08-27 19:27:47 -0700309 }
310
311 @Override
sangho538108b2015-04-08 14:29:20 -0700312 public List<PortStatistics> getPortStatistics(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900313 checkPermission(DEVICE_READ);
sangho538108b2015-04-08 14:29:20 -0700314 checkNotNull(deviceId, DEVICE_ID_NULL);
315 return store.getPortStatistics(deviceId);
316 }
317
318 @Override
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200319 public List<PortStatistics> getPortDeltaStatistics(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900320 checkPermission(DEVICE_READ);
Dusan Pajin11ff4a82015-08-20 18:03:05 +0200321 checkNotNull(deviceId, DEVICE_ID_NULL);
322 return store.getPortDeltaStatistics(deviceId);
323 }
324
325 @Override
Viswanath KSP22774cd2016-08-20 20:06:30 +0530326 public PortStatistics getStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
327 checkPermission(DEVICE_READ);
328 checkNotNull(deviceId, DEVICE_ID_NULL);
329 checkNotNull(portNumber, PORT_NUMBER_NULL);
330 return store.getStatisticsForPort(deviceId, portNumber);
331 }
332
333 @Override
334 public PortStatistics getDeltaStatisticsForPort(DeviceId deviceId, PortNumber portNumber) {
335 checkPermission(DEVICE_READ);
336 checkNotNull(deviceId, DEVICE_ID_NULL);
337 checkNotNull(portNumber, PORT_NUMBER_NULL);
338 return store.getDeltaStatisticsForPort(deviceId, portNumber);
339 }
340
341 @Override
tom32f66842014-08-27 19:27:47 -0700342 public Port getPort(DeviceId deviceId, PortNumber portNumber) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900343 checkPermission(DEVICE_READ);
tom32f66842014-08-27 19:27:47 -0700344 checkNotNull(deviceId, DEVICE_ID_NULL);
345 checkNotNull(portNumber, PORT_NUMBER_NULL);
tom132b58a2014-08-28 16:11:28 -0700346 return store.getPort(deviceId, portNumber);
tom32f66842014-08-27 19:27:47 -0700347 }
348
349 @Override
tomff7eb7c2014-09-08 12:49:03 -0700350 public boolean isAvailable(DeviceId deviceId) {
Changhoon Yoonb856b812015-08-10 03:47:19 +0900351 checkPermission(DEVICE_READ);
Changhoon Yoon541ef712015-05-23 17:18:34 +0900352
tomff7eb7c2014-09-08 12:49:03 -0700353 checkNotNull(deviceId, DEVICE_ID_NULL);
354 return store.isAvailable(deviceId);
355 }
356
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800357 @Override
358 public String localStatus(DeviceId deviceId) {
359 LocalStatus ls = deviceLocalStatus.get(deviceId);
360 if (ls == null) {
361 return "No Record";
362 }
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700363 String timeAgo = Tools.timeAgo(ls.dateTime.toEpochMilli());
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800364 return (ls.connected) ? "connected " + timeAgo : "disconnected " + timeAgo;
365 }
366
Palash Kala0d817b02018-03-23 18:09:45 +0900367 private boolean isLocallyConnected(DeviceId deviceId) {
368 LocalStatus ls = deviceLocalStatus.get(deviceId);
369 if (ls == null) {
370 return false;
371 }
372 return ls.connected;
373 }
374
Ray Milkey054e23d2018-03-22 13:37:11 -0700375 @Override
376 public long getLastUpdatedInstant(DeviceId deviceId) {
377 LocalStatus ls = deviceLocalStatus.get(deviceId);
378 if (ls == null) {
379 return 0;
380 }
381 return ls.dateTime.toEpochMilli();
382 }
383
Palash Kala0d817b02018-03-23 18:09:45 +0900384 // Check a device for control channel connectivity
385 // and changes local-status appropriately.
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700386 private boolean isReachable(DeviceId deviceId) {
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800387 if (deviceId == null) {
388 return false;
389 }
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700390 DeviceProvider provider = getProvider(deviceId);
391 if (provider != null) {
Palash Kala0d817b02018-03-23 18:09:45 +0900392 boolean reachable = provider.isReachable(deviceId);
393 if (reachable && !isLocallyConnected(deviceId)) {
394 deviceLocalStatus.put(deviceId, new LocalStatus(true, Instant.now()));
395 } else if (!reachable && isLocallyConnected(deviceId)) {
396 deviceLocalStatus.put(deviceId, new LocalStatus(false, Instant.now()));
397 }
398 return reachable;
Yuta HIGUCHI54815322014-10-31 23:17:08 -0700399 } else {
Yuta HIGUCHI72669c42014-11-13 14:48:17 -0800400 log.debug("Provider not found for {}", deviceId);
Ayaka Koshibee60d4522014-10-28 15:07:00 -0700401 return false;
402 }
Ayaka Koshibee8708e32014-10-22 13:40:18 -0700403 }
404
tome5ec3fd2014-09-04 15:18:06 -0700405 @Override
406 public void removeDevice(DeviceId deviceId) {
407 checkNotNull(deviceId, DEVICE_ID_NULL);
408 DeviceEvent event = store.removeDevice(deviceId);
tom0efbb1d2014-09-09 11:54:28 -0700409 if (event != null) {
410 log.info("Device {} administratively removed", deviceId);
tom0efbb1d2014-09-09 11:54:28 -0700411 }
tome5ec3fd2014-09-04 15:18:06 -0700412 }
413
Thomas Vachuska811ea2b2020-02-11 10:20:10 -0800414 @Override
415 public void removeDevicePorts(DeviceId deviceId) {
416 checkNotNull(deviceId, DEVICE_ID_NULL);
417 if (isAvailable(deviceId)) {
418 log.debug("Cannot remove ports of device {} while it is available.", deviceId);
419 return;
420 }
421
422 List<PortDescription> portDescriptions = ImmutableList.of();
423 List<DeviceEvent> events = store.updatePorts(getProvider(deviceId).id(),
424 deviceId, portDescriptions);
425 if (events != null) {
426 for (DeviceEvent event : events) {
427 post(event);
428 }
429 }
430 }
431
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700432 private void handlePortRequest(InternalPortUpDownEvent event) {
433 DeviceId deviceId = event.deviceId();
Saurav Dasa2d37502016-03-25 17:50:40 -0700434 checkNotNull(deviceId, DEVICE_ID_NULL);
Sean Condon0bd777c2021-01-01 14:23:29 +0000435 checkNotNull(event.portNumber(), PORT_NUMBER_NULL);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700436 checkState(mastershipService.isLocalMaster(deviceId), EVENT_NON_MASTER);
437 changePortStateAtMaster(event.deviceId(), event.portNumber(), event.isEnable());
438 }
439
440 private void changePortStateAtMaster(DeviceId deviceId, PortNumber portNumber,
441 boolean enable) {
Saurav Dasa2d37502016-03-25 17:50:40 -0700442 DeviceProvider provider = getProvider(deviceId);
443 if (provider != null) {
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700444 log.info("Port {} on device {} being administratively brought {}",
Saurav Dasa2d37502016-03-25 17:50:40 -0700445 portNumber, deviceId,
446 (enable) ? "UP" : "DOWN");
447 provider.changePortState(deviceId, portNumber, enable);
448 } else {
449 log.warn("Provider not found for {}", deviceId);
450 }
451 }
452
453 @Override
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700454 public void changePortState(DeviceId deviceId, PortNumber portNumber,
455 boolean enable) {
456 checkNotNull(deviceId, DEVICE_ID_NULL);
Sean Condon0bd777c2021-01-01 14:23:29 +0000457 checkNotNull(portNumber, PORT_NUMBER_NULL);
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700458 NodeId masterId = mastershipService.getMasterFor(deviceId);
459
Ray Milkey4ef245e2018-05-10 15:41:16 -0700460 if (masterId == null) {
461 // No master found; device is offline
462 log.info("No master found for port state change for {}", deviceId);
463 return;
464 }
465
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -0700466 if (!masterId.equals(localNodeId)) {
467 //Send the request to the master node for the device
468 log.info("Device {} is managed by {}, forwarding the request to the MASTER",
469 deviceId, masterId);
470 communicationService.unicast(
471 new InternalPortUpDownEvent(deviceId, portNumber, enable),
472 PORT_UPDOWN_SUBJECT,
473 SERIALIZER::encode,
474 masterId).whenComplete((r, error) -> {
475 if (error != null) {
476 log.warn("Failed to send packet-updown-req to {}", masterId, error);
477 }
478 });
479 } else {
480 changePortStateAtMaster(deviceId, portNumber, enable);
481 }
482 }
483
484 @Override
samuele1fa7322015-07-14 16:35:16 +0800485 protected DeviceProviderService createProviderService(
486 DeviceProvider provider) {
tom7869ad92014-09-09 14:32:08 -0700487 return new InternalDeviceProviderService(provider);
488 }
489
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800490 /**
491 * Checks if all the reachable devices have a valid mastership role.
492 */
493 private void mastershipCheck() {
494 log.debug("Checking mastership");
495 for (Device device : getDevices()) {
496 final DeviceId deviceId = device.id();
Ray Milkeyc7104672016-08-31 12:04:34 -0700497 MastershipRole myRole = mastershipService.getLocalRole(deviceId);
498 log.trace("Checking device {}. Current role is {}", deviceId, myRole);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800499 if (!isReachable(deviceId)) {
Ray Milkeyc7104672016-08-31 12:04:34 -0700500 if (myRole != NONE) {
helenyrwufd296b62016-06-22 17:43:02 -0700501 // can't be master if device is not reachable
502 try {
Ray Milkeyc7104672016-08-31 12:04:34 -0700503 if (myRole == MASTER) {
Andrea Campanellae319dc22018-01-18 12:51:04 +0100504 log.info("Local Role {}, Marking unreachable device {} offline", MASTER, deviceId);
Ray Milkeyc7104672016-08-31 12:04:34 -0700505 post(store.markOffline(deviceId));
506 }
helenyrwufd296b62016-06-22 17:43:02 -0700507 //relinquish master role and ability to be backup.
pierventre00ac2502021-12-02 09:42:28 +0100508 roleToAcknowledge.remove(deviceId);
helenyrwufd296b62016-06-22 17:43:02 -0700509 mastershipService.relinquishMastership(deviceId).get();
510 } catch (InterruptedException e) {
Thomas Vachuska5b38dc02018-05-10 15:24:40 -0700511 log.warn("Interrupted while relinquishing role for {}", deviceId);
helenyrwufd296b62016-06-22 17:43:02 -0700512 Thread.currentThread().interrupt();
513 } catch (ExecutionException e) {
514 log.error("Exception thrown while relinquishing role for {}", deviceId, e);
515 }
Bharath Thiruveedula651a7da2016-12-13 02:52:50 +0530516 } else {
Andrea Campanellae319dc22018-01-18 12:51:04 +0100517 // check if the device has master and is available to the store, if not, mark it offline
Bharath Thiruveedula651a7da2016-12-13 02:52:50 +0530518 // only the nodes which has mastership role can mark any device offline.
Andrea Campanellae319dc22018-01-18 12:51:04 +0100519 // This condition should never be hit unless in a device removed phase for NONE mastership roles.
Jordan Haltermanbc0308f2017-11-29 15:37:34 -0800520 NodeId master = mastershipService.getMasterFor(deviceId);
Andrea Campanellae319dc22018-01-18 12:51:04 +0100521 if (master == null && isAvailable(deviceId)) {
Jordan Haltermanbc0308f2017-11-29 15:37:34 -0800522 CompletableFuture<MastershipRole> roleFuture = mastershipService.requestRoleFor(deviceId);
523 roleFuture.thenAccept(role -> {
524 MastershipTerm term = termService.getMastershipTerm(deviceId);
525 if (term != null && localNodeId.equals(term.master())) {
526 log.info("Marking unreachable device {} offline", deviceId);
527 post(store.markOffline(deviceId));
528 } else {
529 log.info("Failed marking {} offline. {}", deviceId, role);
530 }
pierventre00ac2502021-12-02 09:42:28 +0100531 // Stop the timer - just to prevent any race
532 roleToAcknowledge.remove(deviceId);
Jordan Haltermanbc0308f2017-11-29 15:37:34 -0800533 mastershipService.relinquishMastership(deviceId);
534 });
535 }
helenyrwufd296b62016-06-22 17:43:02 -0700536 }
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800537 continue;
538 }
539
Jordan Halterman368bd3d2019-01-04 12:45:57 -0800540 // If this node is the master, ensure the device is marked online.
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800541 if (myRole == MASTER && canMarkOnline(device)) {
Jordan Halterman368bd3d2019-01-04 12:45:57 -0800542 post(store.markOnline(deviceId));
543 }
544
Ray Milkeyc7104672016-08-31 12:04:34 -0700545 if (myRole != NONE) {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800546 continue;
547 }
548
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700549 log.info("{} is reachable but did not have a valid role, reasserting", deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800550
551 // isReachable but was not MASTER or STANDBY, get a role and apply
552 // Note: NONE triggers request to MastershipService
Jordan Halterman9416aea2017-11-17 12:40:21 -0800553 reassertRole(deviceId, NONE);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800554 }
555 }
556
pierventre00ac2502021-12-02 09:42:28 +0100557 /**
558 * Checks if all the devices have acknowledged the mastership role.
559 */
560 private void roleCheck() {
561 log.debug("Checking role");
562 for (Device device : getDevices()) {
563 final DeviceId deviceId = device.id();
564 MastershipRole myRole = mastershipService.getLocalRole(deviceId);
565 log.trace("Checking device {}. Current role is {}", deviceId, myRole);
566 final AtomicBoolean exists = new AtomicBoolean(false);
567 final Long ts = roleToAcknowledge.compute(deviceId, (key, value) -> {
568 if (value == null) {
569 return null;
570 }
571 exists.set(true);
572 if (currentTimeMillis() - value < (ROLE_TIMEOUT_SECONDS * 1000)) {
573 return value;
574 }
575 return null;
576 });
577 // Nobody applied the role recently
578 if (!exists.get()) {
579 log.trace("Role was not applied or it has been acknowledged for device {}", deviceId);
580 continue;
581 }
582 // Timeout still on
583 if (ts != null) {
584 log.debug("Timeout expires in {} ms", ((ROLE_TIMEOUT_SECONDS * 1000) - currentTimeMillis() + ts));
585 continue;
586 }
587 if (myRole != MASTER) {
588 log.debug("Timeout is expired but current role is not MASTER ({}), nothing to do", myRole);
589 continue;
590 }
591 /* Switch failed to acknowledge master role we asked for.
592 Yield mastership to other instance*/
593 log.warn("Failed to assert role onto device {}. requested={}, no response",
594 deviceId, myRole);
595 mastershipService.relinquishMastership(deviceId).whenComplete((result, error) -> {
596 if (error != null) {
597 log.error("Exception while relinquishing mastership", error);
598 } else {
599 log.info("Successfully relinquished mastership for {}. Requesting new role", deviceId);
600 mastershipService.requestRoleFor(deviceId);
601 }
602 });
603 }
604 }
605
tomd3097b02014-08-26 10:40:29 -0700606 // Personalized device provider service issued to the supplied provider.
tomdc361b62014-09-09 20:36:52 -0700607 private class InternalDeviceProviderService
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700608 extends AbstractProviderService<DeviceProvider>
609 implements DeviceProviderService {
tomd3097b02014-08-26 10:40:29 -0700610
tomcfde0622014-09-09 11:02:42 -0700611 InternalDeviceProviderService(DeviceProvider provider) {
tomd3097b02014-08-26 10:40:29 -0700612 super(provider);
613 }
614
Ray Milkey33306ba2018-09-20 13:27:25 -0700615 /**
616 * Apply role in reaction to provider event.
617 *
618 * @param deviceId device identifier
619 * @param newRole new role to apply to the device
620 * @return true if the request was sent to provider
621 */
622 private boolean applyRole(DeviceId deviceId, MastershipRole newRole) {
623
624 if (newRole.equals(MastershipRole.NONE)) {
625 //no-op
626 return true;
627 }
628
629 DeviceProvider provider = provider();
630 if (provider == null) {
631 log.warn("Provider for {} was not found. Cannot apply role {}",
632 deviceId, newRole);
633 return false;
634 }
pierventre00ac2502021-12-02 09:42:28 +0100635 // Start the timer
636 roleToAcknowledge.put(deviceId, currentTimeMillis());
Ray Milkey33306ba2018-09-20 13:27:25 -0700637 provider.roleChanged(deviceId, newRole);
638 // not triggering probe when triggered by provider service event
639 return true;
640 }
641
tomd3097b02014-08-26 10:40:29 -0700642 @Override
alshabibb7b40632014-09-28 21:30:00 -0700643 public void deviceConnected(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700644 DeviceDescription deviceDescription) {
tom32f66842014-08-27 19:27:47 -0700645 checkNotNull(deviceId, DEVICE_ID_NULL);
646 checkNotNull(deviceDescription, DEVICE_DESCRIPTION_NULL);
tomeadbb462014-09-07 16:10:19 -0700647 checkValidity();
Yuta HIGUCHI24b2e2a2014-10-07 15:53:57 -0700648
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700649 deviceLocalStatus.put(deviceId, new LocalStatus(true, Instant.now()));
Saurav Dasd5ec9e92017-01-17 10:40:18 -0800650
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700651 BasicDeviceConfig cfg = networkConfigService.getConfig(deviceId, BasicDeviceConfig.class);
652 if (!isAllowed(cfg)) {
653 log.warn("Device {} is not allowed", deviceId);
654 return;
655 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200656 PortDescriptionsConfig portConfig = networkConfigService.getConfig(deviceId, PortDescriptionsConfig.class);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700657 // Generate updated description and establish my Role
658 deviceDescription = BasicDeviceOperator.combine(cfg, deviceDescription);
jaegonkim1c1f0c22018-01-28 22:20:42 +0900659 DeviceAnnotationConfig annoConfig = networkConfigService.getConfig(deviceId, DeviceAnnotationConfig.class);
660 if (annoConfig != null) {
661 deviceDescription = deviceAnnotationOp.combine(deviceId, deviceDescription, Optional.of(annoConfig));
662 }
663
pier388ec252020-04-15 20:53:14 +0200664 // Wait for the end of the election. sync call of requestRoleFor
665 // wait only 3s and it is not entirely safe since the leadership
666 // election timer can be higher.
667 MastershipRole role = Futures.getUnchecked(mastershipService.requestRoleFor(deviceId));
jaegonkim8eabcec2018-07-27 23:40:43 +0900668 log.info("Local role is {} for {}", role, deviceId);
pier388ec252020-04-15 20:53:14 +0200669 store.createOrUpdateDevice(provider().id(), deviceId, deviceDescription);
Ray Milkey33306ba2018-09-20 13:27:25 -0700670 applyRole(deviceId, role);
HIGUCHI Yuta11530fb2015-05-27 13:10:20 -0700671
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200672 if (portConfig != null) {
673 //updating the ports if configration exists
674 List<PortDescription> complete = store.getPortDescriptions(provider().id(), deviceId)
675 .collect(Collectors.toList());
676 complete.addAll(portConfig.portDescriptions());
677 List<PortDescription> portDescriptions = complete.stream()
678 .map(e -> applyAllPortOps(deviceId, e))
679 .collect(Collectors.toList());
680 store.updatePorts(provider().id(), deviceId, portDescriptions);
681 }
682
helenyrwufd296b62016-06-22 17:43:02 -0700683 if (deviceDescription.isDefaultAvailable()) {
684 log.info("Device {} connected", deviceId);
685 } else {
686 log.info("Device {} registered", deviceId);
687 }
tomd3097b02014-08-26 10:40:29 -0700688 }
689
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700690 private PortDescription ensurePortEnabledState(PortDescription desc, boolean enabled) {
691 if (desc.isEnabled() != enabled) {
Yuta HIGUCHI2b1935d2018-03-01 21:41:06 -0800692 return DefaultPortDescription.builder(desc)
693 .isEnabled(enabled)
694 .build();
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700695 }
696 return desc;
697 }
698
tomd3097b02014-08-26 10:40:29 -0700699 @Override
700 public void deviceDisconnected(DeviceId deviceId) {
tom32f66842014-08-27 19:27:47 -0700701 checkNotNull(deviceId, DEVICE_ID_NULL);
tomeadbb462014-09-07 16:10:19 -0700702 checkValidity();
Yuta HIGUCHI0c47d532017-08-18 23:16:35 -0700703 deviceLocalStatus.put(deviceId, new LocalStatus(false, Instant.now()));
Andrea Campanellab0b93ac2021-09-13 12:37:36 +0200704 log.info("Device {} disconnected from this node: {}", deviceId,
705 clusterService.getLocalNode().id());
Ayaka Koshibed9f693e2014-09-29 18:04:54 -0700706
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700707 List<PortDescription> descs = store.getPortDescriptions(provider().id(), deviceId)
708 .map(desc -> ensurePortEnabledState(desc, false))
709 .collect(Collectors.toList());
Yafit Hadara9a73de2015-09-06 13:52:52 +0300710
alshabibafc514a2014-12-01 14:44:05 -0800711 store.updatePorts(this.provider().id(), deviceId, descs);
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700712 try {
Madan Jampani565a66a2015-07-25 17:01:13 -0700713 if (mastershipService.isLocalMaster(deviceId)) {
Thomas Vachuska5f429d62015-05-28 15:34:36 -0700714 post(store.markOffline(deviceId));
715 }
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700716 } catch (IllegalStateException e) {
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700717 log.warn("Failed to mark {} offline", deviceId);
718 // only the MASTER should be marking off-line in normal cases,
samuele1fa7322015-07-14 16:35:16 +0800719 // but if I was the last STANDBY connection, etc. and no one else
720 // was there to mark the device offline, this instance may need to
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700721 // temporarily request for Master Role and mark offline.
722
samuele1fa7322015-07-14 16:35:16 +0800723 //there are times when this node will correctly have mastership, BUT
724 //that isn't reflected in the ClockManager before the device disconnects.
725 //we want to let go of the device anyways, so make sure this happens.
Yuta HIGUCHI0722fb22014-10-19 01:16:33 -0700726
Yuta HIGUCHIeb24e9d2014-10-26 19:34:20 -0700727 // FIXME: Store semantics leaking out as IllegalStateException.
samuele1fa7322015-07-14 16:35:16 +0800728 // Consider revising store API to handle this scenario.
729 CompletableFuture<MastershipRole> roleFuture = mastershipService.requestRoleFor(deviceId);
Madan Jampanide003d92015-05-11 17:14:20 -0700730 roleFuture.whenComplete((role, error) -> {
samuele1fa7322015-07-14 16:35:16 +0800731 MastershipTerm term = termService.getMastershipTerm(deviceId);
732 // TODO: Move this type of check inside device clock manager, etc.
733 if (term != null && localNodeId.equals(term.master())) {
734 log.info("Retry marking {} offline", deviceId);
samuele1fa7322015-07-14 16:35:16 +0800735 post(store.markOffline(deviceId));
736 } else {
737 log.info("Failed again marking {} offline. {}", deviceId, role);
738 }
739 });
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700740 } finally {
Madan Jampanic6e574f2015-05-29 13:41:52 -0700741 try {
samuele1fa7322015-07-14 16:35:16 +0800742 //relinquish master role and ability to be backup.
pierventre00ac2502021-12-02 09:42:28 +0100743 roleToAcknowledge.remove(deviceId);
Madan Jampanic6e574f2015-05-29 13:41:52 -0700744 mastershipService.relinquishMastership(deviceId).get();
745 } catch (InterruptedException e) {
samuele1fa7322015-07-14 16:35:16 +0800746 log.warn("Interrupted while reliquishing role for {}", deviceId);
Madan Jampanic6e574f2015-05-29 13:41:52 -0700747 Thread.currentThread().interrupt();
748 } catch (ExecutionException e) {
samuele1fa7322015-07-14 16:35:16 +0800749 log.error("Exception thrown while relinquishing role for {}", deviceId, e);
Madan Jampanic6e574f2015-05-29 13:41:52 -0700750 }
tom0efbb1d2014-09-09 11:54:28 -0700751 }
tomd3097b02014-08-26 10:40:29 -0700752 }
753
754 @Override
alshabibb7b40632014-09-28 21:30:00 -0700755 public void updatePorts(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700756 List<PortDescription> portDescriptions) {
tom32f66842014-08-27 19:27:47 -0700757 checkNotNull(deviceId, DEVICE_ID_NULL);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700758 checkNotNull(portDescriptions, PORT_DESC_LIST_NULL);
tomeadbb462014-09-07 16:10:19 -0700759 checkValidity();
Madan Jampani565a66a2015-07-25 17:01:13 -0700760 if (!mastershipService.isLocalMaster(deviceId)) {
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700761 // Never been a master for this device
762 // any update will be ignored.
samuele1fa7322015-07-14 16:35:16 +0800763 log.trace("Ignoring {} port updates on standby node. {}", deviceId, portDescriptions);
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700764 return;
765 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200766 PortDescriptionsConfig portConfig = networkConfigService.getConfig(deviceId, PortDescriptionsConfig.class);
767 if (portConfig != null) {
Carmelo Cascone1da7a4d2018-06-27 18:03:11 +0200768 // Updating the ports if configuration exists (on new lists as
769 // the passed one might be immutable)
770 portDescriptions = Lists.newArrayList(portDescriptions);
Andrea Campanella75ef9f52017-07-27 20:14:32 +0200771 portDescriptions.addAll(portConfig.portDescriptions());
772 }
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700773 portDescriptions = portDescriptions.stream()
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700774 .map(e -> applyAllPortOps(deviceId, e))
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700775 .collect(Collectors.toList());
Yuta HIGUCHI5f6739c2014-10-01 14:04:01 -0700776 List<DeviceEvent> events = store.updatePorts(this.provider().id(),
samuele1fa7322015-07-14 16:35:16 +0800777 deviceId, portDescriptions);
Thomas Vachuska5923b9a2016-01-26 10:52:57 -0800778 if (events != null) {
779 for (DeviceEvent event : events) {
780 post(event);
781 }
tom32f66842014-08-27 19:27:47 -0700782 }
tomd3097b02014-08-26 10:40:29 -0700783 }
784
785 @Override
alshabibb7b40632014-09-28 21:30:00 -0700786 public void portStatusChanged(DeviceId deviceId,
Thomas Vachuskad16ce182014-10-29 17:25:29 -0700787 PortDescription portDescription) {
tom32f66842014-08-27 19:27:47 -0700788 checkNotNull(deviceId, DEVICE_ID_NULL);
789 checkNotNull(portDescription, PORT_DESCRIPTION_NULL);
tomeadbb462014-09-07 16:10:19 -0700790 checkValidity();
Ayaka Koshibeb5c63a02014-10-18 18:42:27 -0700791
Madan Jampani565a66a2015-07-25 17:01:13 -0700792 if (!mastershipService.isLocalMaster(deviceId)) {
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700793 // Never been a master for this device
794 // any update will be ignored.
Sahil Lele3a0cdd52015-07-21 14:16:31 -0700795 log.trace("Ignoring {} port update on standby node. {}", deviceId,
796 portDescription);
Yuta HIGUCHI13c0b872014-10-30 18:09:22 -0700797 return;
798 }
Ray Milkey9ef22232016-07-14 12:42:37 -0700799 Device device = getDevice(deviceId);
800 if (device == null) {
801 log.trace("Device not found: {}", deviceId);
nitinanandddfa8c92017-03-24 16:14:23 +0530802 return;
Ray Milkey9ef22232016-07-14 12:42:37 -0700803 }
Andrea Campanella1c24fb92018-12-20 16:43:59 +0100804 if ((Type.ROADM.equals(device.type())) || (Type.OTN.equals(device.type())) ||
805 (Type.OLS.equals(device.type())) || (Type.TERMINAL_DEVICE.equals(device.type()))) {
HIGUCHI Yuta6972ae62016-05-12 19:57:46 -0700806 // FIXME This is ignoring all other info in portDescription given as input??
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700807 PortDescription storedPortDesc = store.getPortDescription(provider().id(),
Simon Huntffbad3b2017-05-16 15:37:51 -0700808 deviceId,
809 portDescription.portNumber());
Yuta HIGUCHI6eb00cc2016-06-10 11:55:12 -0700810 portDescription = ensurePortEnabledState(storedPortDesc,
811 portDescription.isEnabled());
Yafit Hadara9a73de2015-09-06 13:52:52 +0300812 }
813
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700814 portDescription = applyAllPortOps(deviceId, portDescription);
samuele1fa7322015-07-14 16:35:16 +0800815 final DeviceEvent event = store.updatePortStatus(this.provider().id(),
HIGUCHI Yuta6972ae62016-05-12 19:57:46 -0700816 deviceId,
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -0700817 portDescription);
tomff7eb7c2014-09-08 12:49:03 -0700818 if (event != null) {
Carmelo Casconeab5d41e2019-03-06 18:02:34 -0800819 log.info("Device {} port {} status changed (enabled={})",
820 deviceId, event.port().number(), portDescription.isEnabled());
tom0efbb1d2014-09-09 11:54:28 -0700821 post(event);
tomff7eb7c2014-09-08 12:49:03 -0700822 }
tomd3097b02014-08-26 10:40:29 -0700823 }
tom3f2bbd72014-09-24 12:07:58 -0700824
825 @Override
Michal Machce774332017-01-25 11:02:55 +0100826 public void deletePort(DeviceId deviceId, PortDescription basePortDescription) {
827
828 checkNotNull(deviceId, DEVICE_ID_NULL);
829 checkNotNull(basePortDescription, PORT_DESCRIPTION_NULL);
830 checkValidity();
831
832 if (!mastershipService.isLocalMaster(deviceId)) {
833 // Never been a master for this device
834 // any update will be ignored.
835 log.trace("Ignoring {} port update on standby node. {}", deviceId,
836 basePortDescription);
837 return;
838 }
839
840 Device device = getDevice(deviceId);
841 if (device == null) {
842 log.trace("Device not found: {}", deviceId);
843 }
844
Yuta HIGUCHI53e47962018-03-01 23:50:48 -0800845 PortDescription newPortDescription = DefaultPortDescription.builder(basePortDescription)
846 .isRemoved(true)
847 .build();
848
Michal Machce774332017-01-25 11:02:55 +0100849 final DeviceEvent event = store.updatePortStatus(this.provider().id(),
850 deviceId,
851 newPortDescription);
852 if (event != null) {
853 log.info("Device {} port {} status changed", deviceId, event.port().number());
854 post(event);
855 }
856 }
857
858 @Override
samuele1fa7322015-07-14 16:35:16 +0800859 public void receivedRoleReply(DeviceId deviceId, MastershipRole requested,
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700860 MastershipRole response) {
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700861 // Several things can happen here:
862 // 1. request and response match
863 // 2. request and response don't match
864 // 3. MastershipRole and requested match (and 1 or 2 are true)
865 // 4. MastershipRole and requested don't match (and 1 or 2 are true)
866 //
867 // 2, 4, and 3 with case 2 are failure modes.
868
tom3f2bbd72014-09-24 12:07:58 -0700869 // FIXME: implement response to this notification
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700870
Madan Jampanif2af7712015-05-29 18:43:52 -0700871 log.debug("got reply to a role request for {}: asked for {}, and got {}",
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700872 deviceId, requested, response);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700873
874 if (requested == null && response == null) {
samuele1fa7322015-07-14 16:35:16 +0800875 // something was off with DeviceProvider, maybe check channel too?
Shashikanth VH387a1ca2016-02-09 20:35:21 +0530876 log.warn("Failed to assert role onto Device {}", deviceId);
pierventre00ac2502021-12-02 09:42:28 +0100877 roleToAcknowledge.remove(deviceId);
Yuta HIGUCHIcf603902014-10-07 23:04:32 -0700878 mastershipService.relinquishMastership(deviceId);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700879 return;
Yuta HIGUCHIcf603902014-10-07 23:04:32 -0700880 }
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700881
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800882 final MastershipRole expected = mastershipService.getLocalRole(deviceId);
883
884 if (requested == null) {
885 // Provider is not able to reconcile role responses with
886 // requests. We assume what was requested is what we expect.
887 // This will work only if mastership doesn't change too often,
888 // and devices are left enough time to provide responses before
889 // a different role is requested.
890 requested = expected;
891 }
892
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700893 if (Objects.equals(requested, response)) {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800894 if (Objects.equals(requested, expected)) {
pierventre00ac2502021-12-02 09:42:28 +0100895 // Stop the timer
896 log.info("Role has been acknowledged for device {}", deviceId);
897 roleToAcknowledge.remove(deviceId);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700898 } else {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800899 log.warn("Role mismatch on {}. Set to {}, but store demands {}",
900 deviceId, response, expected);
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800901 // roleManager got the device to comply, but doesn't agree with
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700902 // the store; use the store's view, then try to reassert.
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800903 backgroundService.execute(() -> reassertRole(deviceId, expected));
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800904 return;
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700905 }
906 } else {
907 // we didn't get back what we asked for. Reelect someone else.
Carmelo Casconee5b28722018-06-22 17:28:28 +0200908 log.warn("Failed to assert role onto device {}. requested={}, response={}",
909 deviceId, requested, response);
Carmelo Casconeb37bdde2018-06-22 17:25:46 +0200910 if (requested == MastershipRole.MASTER) {
pierventre00ac2502021-12-02 09:42:28 +0100911 // Stop the timer
912 roleToAcknowledge.remove(deviceId);
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700913 mastershipService.relinquishMastership(deviceId);
914 // TODO: Shouldn't we be triggering event?
samuele1fa7322015-07-14 16:35:16 +0800915 //final Device device = getDevice(deviceId);
916 //post(new DeviceEvent(DEVICE_MASTERSHIP_CHANGED, device));
Charles Chan3855dc12021-01-06 01:33:03 +0000917 } else if (requested == MastershipRole.STANDBY) {
918 // For P4RT devices, the response role will be NONE when this node is expected to be STANDBY
919 // but the stream channel is not opened correctly.
920 // Calling reassertRole will trigger the mechanism in GeneralDeviceProvider that
921 // attempts to re-establish the stream channel
922 backgroundService.execute(() -> reassertRole(deviceId, expected));
923 return;
Ayaka Koshibe3ef2b0d2014-10-31 13:58:27 -0700924 }
925 }
tom3f2bbd72014-09-24 12:07:58 -0700926 }
sangho538108b2015-04-08 14:29:20 -0700927
928 @Override
samuele1fa7322015-07-14 16:35:16 +0800929 public void updatePortStatistics(DeviceId deviceId, Collection<PortStatistics> portStatistics) {
sangho538108b2015-04-08 14:29:20 -0700930 checkNotNull(deviceId, DEVICE_ID_NULL);
Thomas Vachuskab17c41f2015-05-19 11:16:05 -0700931 checkNotNull(portStatistics, "Port statistics list cannot be null");
sangho538108b2015-04-08 14:29:20 -0700932 checkValidity();
933
samuele1fa7322015-07-14 16:35:16 +0800934 DeviceEvent event = store.updatePortStatistics(this.provider().id(),
935 deviceId, portStatistics);
sangho538108b2015-04-08 14:29:20 -0700936 post(event);
937 }
pierventree1f80102021-10-01 22:01:22 +0200938
939 @Override
940 public DeviceDescription getDeviceDescription(DeviceId deviceId) {
941 checkNotNull(deviceId, DEVICE_ID_NULL);
942 checkValidity();
943
944 return store.getDeviceDescription(provider().id(), deviceId);
945 }
tomd3097b02014-08-26 10:40:29 -0700946 }
tom32f66842014-08-27 19:27:47 -0700947
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -0700948 // by default allowed, otherwise check flag
949 private boolean isAllowed(BasicDeviceConfig cfg) {
950 return (cfg == null || cfg.isAllowed());
951 }
952
Carmelo Cascone0761cd32018-08-29 19:22:50 -0700953 private boolean canMarkOnline(Device device) {
Carmelo Cascone3977ea42019-02-28 13:43:42 -0800954 DeviceProvider provider = getProvider(device.id());
955 if (provider == null) {
956 log.warn("Provider for {} was not found. Cannot evaluate availability", device.id());
957 return false;
958 }
959 return provider.isAvailable(device.id());
Carmelo Cascone0761cd32018-08-29 19:22:50 -0700960 }
961
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800962 // Applies the specified role to the device; ignores NONE
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700963
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800964 /**
965 * Apply role to device and send probe if MASTER.
966 *
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700967 * @param deviceId device identifier
968 * @param newRole new role to apply to the device
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800969 * @return true if the request was sent to provider
970 */
971 private boolean applyRoleAndProbe(DeviceId deviceId, MastershipRole newRole) {
972 if (newRole.equals(MastershipRole.NONE)) {
samuele1fa7322015-07-14 16:35:16 +0800973 //no-op
Yuta HIGUCHId26354d2014-10-31 14:14:38 -0700974 return true;
975 }
Ayaka Koshibe317245a2014-10-29 00:34:43 -0700976
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800977 DeviceProvider provider = getProvider(deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800978 if (provider == null) {
samuele1fa7322015-07-14 16:35:16 +0800979 log.warn("Provider for {} was not found. Cannot apply role {}", deviceId, newRole);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800980 return false;
981 }
pierventre00ac2502021-12-02 09:42:28 +0100982 // Start the timer
983 roleToAcknowledge.put(deviceId, currentTimeMillis());
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800984 provider.roleChanged(deviceId, newRole);
985
986 if (newRole.equals(MastershipRole.MASTER)) {
HIGUCHI Yuta1979f552015-12-28 21:24:26 -0800987 log.debug("sent TriggerProbe({})", deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800988 // only trigger event when request was sent to provider
Ayaka Koshibe78bcbc12014-11-19 14:28:58 -0800989 provider.triggerProbe(deviceId);
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800990 }
991 return true;
992 }
993
994 /**
Harold Huangff6e1e62017-11-09 16:25:36 +0800995 * Reassert role for specified device connected to this node.
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -0800996 *
Thomas Vachuska42e8cce2015-07-29 19:25:18 -0700997 * @param did device identifier
998 * @param nextRole role to apply. If NONE is specified,
999 * it will ask mastership service for a role and apply it.
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -08001000 */
samuele1fa7322015-07-14 16:35:16 +08001001 private void reassertRole(final DeviceId did,
1002 final MastershipRole nextRole) {
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -08001003
Jordan Halterman9416aea2017-11-17 12:40:21 -08001004 MastershipRole myNextRole = nextRole;
1005 if (myNextRole == NONE && upgradeService.isLocalActive()) {
1006 try {
1007 mastershipService.requestRoleFor(did).get();
1008 MastershipTerm term = termService.getMastershipTerm(did);
1009 if (term != null && localNodeId.equals(term.master())) {
1010 myNextRole = MASTER;
1011 } else {
1012 myNextRole = STANDBY;
1013 }
1014 } catch (InterruptedException e) {
1015 Thread.currentThread().interrupt();
1016 log.error("Interrupted waiting for Mastership", e);
1017 } catch (ExecutionException e) {
1018 log.error("Encountered an error waiting for Mastership", e);
1019 }
1020 }
1021
1022 switch (myNextRole) {
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001023 case MASTER:
1024 final Device device = getDevice(did);
Carmelo Cascone0761cd32018-08-29 19:22:50 -07001025 if (device != null && !isAvailable(did) && canMarkOnline(device)) {
Palash Kala6c526062018-04-03 18:25:11 +09001026 post(store.markOnline(did));
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001027 }
1028 // TODO: should apply role only if there is mismatch
Jordan Halterman9416aea2017-11-17 12:40:21 -08001029 log.debug("Applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001030 if (!applyRoleAndProbe(did, MASTER)) {
Jordan Halterman9416aea2017-11-17 12:40:21 -08001031 log.warn("Unsuccessful applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001032 // immediately failed to apply role
1033 mastershipService.relinquishMastership(did);
1034 // FIXME disconnect?
1035 }
1036 break;
1037 case STANDBY:
Jordan Halterman9416aea2017-11-17 12:40:21 -08001038 log.debug("Applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001039 if (!applyRoleAndProbe(did, STANDBY)) {
Jordan Halterman9416aea2017-11-17 12:40:21 -08001040 log.warn("Unsuccessful applying role {} to {}", myNextRole, did);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001041 // immediately failed to apply role
1042 mastershipService.relinquishMastership(did);
1043 // FIXME disconnect?
1044 }
1045 break;
1046 case NONE:
Jordan Halterman980a8c12017-09-22 18:01:19 -07001047 break;
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001048 default:
1049 // should never reach here
1050 log.error("You didn't see anything. I did not exist.");
1051 break;
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -08001052 }
1053 }
1054
Madan Jampani328371d2015-05-29 14:06:27 -07001055 private void handleMastershipEvent(MastershipEvent event) {
Jon Hall7a8bfc62016-05-26 17:59:04 -07001056 if (event.type() == MastershipEvent.Type.BACKUPS_CHANGED) {
Madan Jampani328371d2015-05-29 14:06:27 -07001057 // Don't care if backup list changed.
1058 return;
1059 }
Madan Jampani328371d2015-05-29 14:06:27 -07001060 final DeviceId did = event.subject();
1061
1062 // myRole suggested by MastershipService
1063 MastershipRole myNextRole;
Jon Hall7a8bfc62016-05-26 17:59:04 -07001064 if (event.type() == MastershipEvent.Type.SUSPENDED) {
1065 myNextRole = NONE; // FIXME STANDBY OR NONE?
1066 } else if (localNodeId.equals(event.roleInfo().master())) {
Madan Jampani328371d2015-05-29 14:06:27 -07001067 // confirm latest info
1068 MastershipTerm term = termService.getMastershipTerm(did);
samuele1fa7322015-07-14 16:35:16 +08001069 final boolean iHaveControl = term != null && localNodeId.equals(term.master());
Madan Jampani328371d2015-05-29 14:06:27 -07001070 if (iHaveControl) {
Madan Jampani328371d2015-05-29 14:06:27 -07001071 myNextRole = MASTER;
1072 } else {
1073 myNextRole = STANDBY;
1074 }
1075 } else if (event.roleInfo().backups().contains(localNodeId)) {
1076 myNextRole = STANDBY;
1077 } else {
1078 myNextRole = NONE;
1079 }
1080
Madan Jampani328371d2015-05-29 14:06:27 -07001081 final boolean isReachable = isReachable(did);
1082 if (!isReachable) {
1083 // device is not connected to this node
Jon Halla90c44c2017-01-24 16:02:07 -08001084 if (mastershipService.getLocalRole(did) == NONE) {
1085 log.debug("Node was instructed to be {} role for {}, "
Simon Huntffbad3b2017-05-16 15:37:51 -07001086 + "but this node cannot reach the device "
1087 + "and role is already None. Ignoring request.",
1088 myNextRole, did);
Jon Halla90c44c2017-01-24 16:02:07 -08001089 } else if (myNextRole != NONE) {
Madan Jampani328371d2015-05-29 14:06:27 -07001090 log.warn("Node was instructed to be {} role for {}, "
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001091 + "but this node cannot reach the device. "
1092 + "Relinquishing role. ",
samuele1fa7322015-07-14 16:35:16 +08001093 myNextRole, did);
pierventre00ac2502021-12-02 09:42:28 +01001094 roleToAcknowledge.remove(did);
Madan Jampani328371d2015-05-29 14:06:27 -07001095 mastershipService.relinquishMastership(did);
1096 }
1097 return;
1098 }
1099
1100 // device is connected to this node:
1101 if (store.getDevice(did) != null) {
1102 reassertRole(did, myNextRole);
1103 } else {
1104 log.debug("Device is not yet/no longer in the store: {}", did);
1105 }
1106 }
1107
Yuta HIGUCHI63323fd2014-11-11 12:16:58 -08001108 // Intercepts mastership events
1109 private class InternalMastershipListener implements MastershipListener {
1110
tomb41d1ac2014-09-24 01:51:24 -07001111 @Override
1112 public void event(MastershipEvent event) {
HIGUCHI Yuta060da9a2016-03-11 19:16:35 -08001113 backgroundService.execute(() -> {
Madan Jampani328371d2015-05-29 14:06:27 -07001114 try {
1115 handleMastershipEvent(event);
1116 } catch (Exception e) {
1117 log.warn("Failed to handle {}", event, e);
Yuta HIGUCHId26354d2014-10-31 14:14:38 -07001118 }
Madan Jampani328371d2015-05-29 14:06:27 -07001119 });
Ayaka Koshibe317245a2014-10-29 00:34:43 -07001120 }
tomb41d1ac2014-09-24 01:51:24 -07001121 }
tomf80c9722014-09-24 14:49:18 -07001122
1123 // Store delegate to re-post events emitted from the store.
Thomas Vachuskab17c41f2015-05-19 11:16:05 -07001124 private class InternalStoreDelegate implements DeviceStoreDelegate {
tomf80c9722014-09-24 14:49:18 -07001125 @Override
1126 public void notify(DeviceEvent event) {
1127 post(event);
Rafał Szalecki9fb87f62017-12-06 15:06:09 +01001128 if (event.type().equals(DeviceEvent.Type.DEVICE_REMOVED)) {
Thomas Vachuska5b38dc02018-05-10 15:24:40 -07001129 // When device is administratively removed, force disconnect.
1130 DeviceId deviceId = event.subject().id();
1131 deviceLocalStatus.remove(deviceId);
1132
1133 DeviceProvider provider = getProvider(deviceId);
1134 if (provider != null) {
1135 log.info("Triggering disconnect for device {}", deviceId);
1136 try {
1137 provider.triggerDisconnect(deviceId);
1138 } catch (UnsupportedOperationException e) {
1139 log.warn("Unable to trigger disconnect due to {}", e.getMessage());
1140 }
1141 }
Rafał Szalecki9fb87f62017-12-06 15:06:09 +01001142 }
tomf80c9722014-09-24 14:49:18 -07001143 }
1144 }
samuel738dfaf2015-07-11 11:08:57 +08001145
1146 @Override
1147 public Iterable<Device> getDevices(Type type) {
Changhoon Yoonb856b812015-08-10 03:47:19 +09001148 checkPermission(DEVICE_READ);
samuel738dfaf2015-07-11 11:08:57 +08001149 Set<Device> results = new HashSet<>();
1150 Iterable<Device> devices = store.getDevices();
1151 if (devices != null) {
1152 devices.forEach(d -> {
1153 if (type.equals(d.type())) {
1154 results.add(d);
1155 }
1156 });
1157 }
1158 return results;
1159 }
1160
1161 @Override
1162 public Iterable<Device> getAvailableDevices(Type type) {
Changhoon Yoonb856b812015-08-10 03:47:19 +09001163 checkPermission(DEVICE_READ);
samuel738dfaf2015-07-11 11:08:57 +08001164 Set<Device> results = new HashSet<>();
1165 Iterable<Device> availableDevices = store.getAvailableDevices();
1166 if (availableDevices != null) {
1167 availableDevices.forEach(d -> {
1168 if (type.equals(d.type())) {
1169 results.add(d);
1170 }
1171 });
1172 }
1173 return results;
1174 }
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001175
1176 private class InternalNetworkConfigListener implements NetworkConfigListener {
Ray Milkey69ca82a2019-03-28 09:24:40 -07001177 private DeviceId extractDeviceId(NetworkConfigEvent event) {
1178 DeviceId deviceId = null;
debmaiti9553ed72019-03-18 14:27:42 +05301179 if (event.configClass().equals(PortAnnotationConfig.class)) {
Ray Milkey397caca2019-04-01 16:27:50 -07001180 if (event.subject().getClass() == ConnectPoint.class) {
1181 deviceId = ((ConnectPoint) event.subject()).deviceId();
1182 }
Ray Milkey69ca82a2019-03-28 09:24:40 -07001183 } else if (event.subject().getClass() == DeviceId.class) {
debmaiti9553ed72019-03-18 14:27:42 +05301184 deviceId = (DeviceId) event.subject();
1185 }
Ray Milkey69ca82a2019-03-28 09:24:40 -07001186 return deviceId;
1187 }
1188
1189 @Override
1190 public boolean isRelevant(NetworkConfigEvent event) {
1191 DeviceId deviceId = extractDeviceId(event);
1192
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001193 return (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED
debmaiti9553ed72019-03-18 14:27:42 +05301194 || event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED
1195 || event.type() == NetworkConfigEvent.Type.CONFIG_REMOVED)
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001196 && (event.configClass().equals(BasicDeviceConfig.class)
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001197 || portOpsIndex.containsKey(event.configClass())
Palash Kalaa06a6162017-11-15 20:42:40 +09001198 || event.configClass().equals(PortDescriptionsConfig.class)
Thomas Vachuskaf131e592018-05-07 11:52:14 -07001199 || event.configClass().equals(DeviceAnnotationConfig.class))
Ray Milkey69ca82a2019-03-28 09:24:40 -07001200 && deviceId != null && mastershipService.isLocalMaster(deviceId);
Thomas Vachuska42e8cce2015-07-29 19:25:18 -07001201 }
1202
1203 @Override
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001204 public void event(NetworkConfigEvent event) {
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001205 DeviceEvent de = null;
1206 if (event.configClass().equals(BasicDeviceConfig.class)) {
Thomas Vachuska138de8b2016-01-11 21:31:38 -08001207 log.debug("Detected device network config event {}", event.type());
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001208 DeviceId did = (DeviceId) event.subject();
1209 DeviceProvider dp = getProvider(did);
Simon Huntffbad3b2017-05-16 15:37:51 -07001210 BasicDeviceConfig cfg =
1211 networkConfigService.getConfig(did, BasicDeviceConfig.class);
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001212
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001213 if (!isAllowed(cfg)) {
1214 kickOutBadDevice(did);
1215 } else {
1216 Device dev = getDevice(did);
Simon Huntffbad3b2017-05-16 15:37:51 -07001217 DeviceDescription desc =
1218 (dev == null) ? null : BasicDeviceOperator.descriptionOf(dev);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001219 desc = BasicDeviceOperator.combine(cfg, desc);
Simon Huntffbad3b2017-05-16 15:37:51 -07001220 if (desc != null && dp != null) {
pier388ec252020-04-15 20:53:14 +02001221 store.createOrUpdateDevice(dp.id(), did, desc);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001222 }
1223 }
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001224 } else if (event.configClass().equals(PortDescriptionsConfig.class)) {
1225 DeviceId did = (DeviceId) event.subject();
1226 DeviceProvider dp = getProvider(did);
1227 if (!event.config().isPresent() ||
1228 getDevice(did) == null || dp == null) {
1229 // sanity check failed, ignore
1230 return;
1231 }
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001232 PortDescriptionsConfig portConfig = (PortDescriptionsConfig) event.config().get();
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001233 //updating the ports if configuration exists
Andrea Campanella75ef9f52017-07-27 20:14:32 +02001234 List<PortDescription> complete = store.getPortDescriptions(dp.id(), did)
1235 .collect(Collectors.toList());
1236 complete.addAll(portConfig.portDescriptions());
1237 store.updatePorts(dp.id(), did, complete);
Palash Kalaa06a6162017-11-15 20:42:40 +09001238 } else if (event.configClass().equals(DeviceAnnotationConfig.class)) {
1239 DeviceId did = (DeviceId) event.subject();
1240 DeviceProvider dp = getProvider(did);
1241 Device dev = getDevice(did);
1242 DeviceDescription desc =
1243 (dev == null) ? null : BasicDeviceOperator.descriptionOf(dev);
1244 Optional<Config> prevConfig = event.prevConfig();
Anurag Chadha61946392020-08-28 15:18:03 +05301245 if (desc != null) { // Fix for NPE due to desc being null
1246 desc = deviceAnnotationOp.combine(did, desc, prevConfig);
1247 }
Palash Kalaa06a6162017-11-15 20:42:40 +09001248 if (desc != null && dp != null) {
pier388ec252020-04-15 20:53:14 +02001249 store.createOrUpdateDevice(dp.id(), did, desc);
Palash Kalaa06a6162017-11-15 20:42:40 +09001250 }
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001251 } else if (portOpsIndex.containsKey(event.configClass())) {
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001252 ConnectPoint cpt = (ConnectPoint) event.subject();
Yuta HIGUCHI1d4b3aa2017-08-09 15:10:18 -07001253 DeviceId did = cpt.deviceId();
1254 DeviceProvider dp = getProvider(did);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001255
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001256 // Note: assuming PortOperator can modify existing port,
1257 // but cannot add new port purely from Config.
Simon Huntffbad3b2017-05-16 15:37:51 -07001258 de = Optional.ofNullable(dp)
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001259 .map(provider -> store.getPortDescription(provider.id(), did, cpt.port()))
debmaiti9553ed72019-03-18 14:27:42 +05301260 .map(desc -> applyAllPortOps(cpt, desc, event.prevConfig()))
Simon Huntffbad3b2017-05-16 15:37:51 -07001261 .map(desc -> store.updatePortStatus(dp.id(), did, desc))
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001262 .orElse(null);
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001263 }
1264
1265 if (de != null) {
1266 post(de);
1267 }
1268 }
1269
Simon Hunt8f60ff82017-04-24 17:19:30 -07001270 // removes the specified device if it exists
Ayaka Koshibed0ab3c02015-09-04 15:43:46 -07001271 private void kickOutBadDevice(DeviceId deviceId) {
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001272 Device badDevice = getDevice(deviceId);
1273 if (badDevice != null) {
1274 removeDevice(deviceId);
Sahil Lele3a0cdd52015-07-21 14:16:31 -07001275 }
1276 }
1277 }
Saurav Dasa2d37502016-03-25 17:50:40 -07001278
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001279 @Override
1280 @SafeVarargs
1281 public final void registerPortConfigOperator(PortConfigOperator portOp,
Simon Huntffbad3b2017-05-16 15:37:51 -07001282 Class<? extends Config<ConnectPoint>>... configs) {
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001283 checkNotNull(portOp);
1284
1285 portOp.bindService(networkConfigService);
1286
1287 // update both portOpsIndex and portOps
1288 synchronized (portOpsIndex) {
1289 for (Class<? extends Config<ConnectPoint>> config : configs) {
1290 portOpsIndex.put(config, portOp);
1291 }
1292
1293 portOps.add(portOp);
1294 }
1295
1296 // TODO: Should we be applying to all existing Ports?
1297 Tools.stream(store.getAvailableDevices())
Simon Huntffbad3b2017-05-16 15:37:51 -07001298 .map(Device::id)
1299 .filter(mastershipService::isLocalMaster)
1300 // for each locally managed Device, update all port descriptions
1301 .map(did -> {
1302 ProviderId pid = Optional.ofNullable(getProvider(did))
1303 .map(Provider::id)
1304 .orElse(null);
1305 if (pid == null) {
1306 log.warn("Provider not found for {}", did);
1307 return ImmutableList.<DeviceEvent>of();
1308 }
1309 List<PortDescription> pds
1310 = store.getPortDescriptions(pid, did)
1311 .map(pdesc -> applyAllPortOps(did, pdesc))
1312 .collect(Collectors.toList());
1313 return store.updatePorts(pid, did, pds);
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001314 })
Simon Huntffbad3b2017-05-16 15:37:51 -07001315 // ..and port port update event if necessary
1316 .forEach(evts -> evts.forEach(this::post));
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001317 }
1318
1319 @Override
1320 public void unregisterPortConfigOperator(PortConfigOperator portOp) {
1321 checkNotNull(portOp);
1322
1323
1324 // remove all portOp
1325 synchronized (portOpsIndex) {
1326 portOps.remove(portOp);
1327
1328 // had to do this since COWArrayList iterator doesn't support remove
1329 portOpsIndex.keySet().forEach(key -> portOpsIndex.remove(key, portOp));
1330 }
1331
1332 }
1333
1334 /**
1335 * Merges the appropriate PortConfig with the description.
1336 *
1337 * @param did ID of the Device where the port is attached
1338 * @param desc {@link PortDescription}
1339 * @return merged {@link PortDescription}
1340 */
1341 private PortDescription applyAllPortOps(DeviceId did, PortDescription desc) {
1342 return applyAllPortOps(new ConnectPoint(did, desc.portNumber()), desc);
1343 }
1344
1345 /**
1346 * Merges the appropriate PortConfig with the description.
1347 *
Simon Huntffbad3b2017-05-16 15:37:51 -07001348 * @param cpt ConnectPoint where the port is attached
1349 * @param desc {@link PortDescription}
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001350 * @return merged {@link PortDescription}
1351 */
1352 private PortDescription applyAllPortOps(ConnectPoint cpt, PortDescription desc) {
1353 PortDescription work = desc;
1354 for (PortConfigOperator portOp : portOps) {
1355 work = portOp.combine(cpt, work);
1356 }
Yuta HIGUCHI7438f5a2017-02-15 22:09:46 -08001357 return portAnnotationOp.combine(cpt, work);
Yuta HIGUCHIb9af6b72016-06-10 10:52:58 -07001358 }
1359
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -07001360 /**
debmaiti9553ed72019-03-18 14:27:42 +05301361 * Merges the appropriate PortConfig with the description.
1362 *
1363 * @param cpt ConnectPoint where the port is attached
1364 * @param desc {@link PortDescription}
1365 * @param prevConfig previous configuration
1366 * @return merged {@link PortDescription}
1367 */
1368 private PortDescription applyAllPortOps(ConnectPoint cpt, PortDescription desc,
1369 Optional<Config> prevConfig) {
1370 PortDescription work = desc;
1371 for (PortConfigOperator portOp : portOps) {
1372 work = portOp.combine(cpt, work, prevConfig);
1373 }
1374 return portAnnotationOp.combine(cpt, work, prevConfig);
1375 }
1376
1377 /**
Jonghwan Hyun6ecf56d2017-08-01 16:07:44 -07001378 * Port Enable/Disable message sent to the device's MASTER node.
1379 */
1380 private class InternalPortUpDownEvent {
1381 private final DeviceId deviceId;
1382 private final PortNumber portNumber;
1383 private final boolean enable;
1384
1385 protected InternalPortUpDownEvent(
1386 DeviceId deviceId, PortNumber portNumber, boolean enable) {
1387 this.deviceId = deviceId;
1388 this.portNumber = portNumber;
1389 this.enable = enable;
1390 }
1391
1392 public DeviceId deviceId() {
1393 return deviceId;
1394 }
1395 public PortNumber portNumber() {
1396 return portNumber;
1397 }
1398 public boolean isEnable() {
1399 return enable;
1400 }
1401
1402 protected InternalPortUpDownEvent() {
1403 this.deviceId = null;
1404 this.portNumber = null;
1405 this.enable = false;
1406 }
1407 }
tomd3097b02014-08-26 10:40:29 -07001408}