blob: c04e23ec0eb4ba6b64960d423613099c2fe478b6 [file] [log] [blame]
Sanjay Se8dcfee2015-04-23 10:07:08 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sanjay Se8dcfee2015-04-23 10:07:08 +05303 *
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 */
andreaeb70a942015-10-16 21:34:46 -070016
Sanjay Se8dcfee2015-04-23 10:07:08 +053017package org.onosproject.provider.netconf.device.impl;
18
Michele Santuari00cc1f72016-09-08 17:05:24 +020019import com.google.common.base.Objects;
andreaeb70a942015-10-16 21:34:46 -070020import com.google.common.base.Preconditions;
Sanjay Se8dcfee2015-04-23 10:07:08 +053021import org.apache.felix.scr.annotations.Activate;
22import org.apache.felix.scr.annotations.Component;
23import org.apache.felix.scr.annotations.Deactivate;
Sanjay Se8dcfee2015-04-23 10:07:08 +053024import org.apache.felix.scr.annotations.Reference;
25import org.apache.felix.scr.annotations.ReferenceCardinality;
26import org.onlab.packet.ChassisId;
andreaeb70a942015-10-16 21:34:46 -070027import org.onosproject.core.ApplicationId;
28import org.onosproject.core.CoreService;
29import org.onosproject.incubator.net.config.basics.ConfigException;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070030import org.onosproject.mastership.MastershipService;
Marc De Leenheerb0d131c2016-03-01 20:34:59 -080031import org.onosproject.net.AnnotationKeys;
andreaeb70a942015-10-16 21:34:46 -070032import org.onosproject.net.DefaultAnnotations;
Sanjay Se8dcfee2015-04-23 10:07:08 +053033import org.onosproject.net.Device;
34import org.onosproject.net.DeviceId;
35import org.onosproject.net.MastershipRole;
Saurav Dasa2d37502016-03-25 17:50:40 -070036import org.onosproject.net.PortNumber;
andreaeb70a942015-10-16 21:34:46 -070037import org.onosproject.net.SparseAnnotations;
Aaron Kruglikov17b4c852016-01-15 16:37:04 -080038import org.onosproject.net.behaviour.PortDiscovery;
andreaeb70a942015-10-16 21:34:46 -070039import org.onosproject.net.config.ConfigFactory;
40import org.onosproject.net.config.NetworkConfigEvent;
41import org.onosproject.net.config.NetworkConfigListener;
42import org.onosproject.net.config.NetworkConfigRegistry;
Sanjay Se8dcfee2015-04-23 10:07:08 +053043import org.onosproject.net.device.DefaultDeviceDescription;
44import org.onosproject.net.device.DeviceDescription;
Andrea Campanella6c71a052016-04-22 11:56:31 -070045import org.onosproject.net.device.DeviceDescriptionDiscovery;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070046import org.onosproject.net.device.DeviceEvent;
47import org.onosproject.net.device.DeviceListener;
Sanjay Se8dcfee2015-04-23 10:07:08 +053048import org.onosproject.net.device.DeviceProvider;
49import org.onosproject.net.device.DeviceProviderRegistry;
50import org.onosproject.net.device.DeviceProviderService;
Aaron Kruglikov17b4c852016-01-15 16:37:04 -080051import org.onosproject.net.device.DeviceService;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070052import org.onosproject.net.key.DeviceKey;
53import org.onosproject.net.key.DeviceKeyAdminService;
54import org.onosproject.net.key.DeviceKeyId;
Sanjay Se8dcfee2015-04-23 10:07:08 +053055import org.onosproject.net.provider.AbstractProvider;
56import org.onosproject.net.provider.ProviderId;
andreaeb70a942015-10-16 21:34:46 -070057import org.onosproject.netconf.NetconfController;
andreaeb70a942015-10-16 21:34:46 -070058import org.onosproject.netconf.NetconfDeviceListener;
Andrea Campanella8b1cb672016-01-25 13:58:58 -080059import org.onosproject.netconf.NetconfException;
Sanjay Se8dcfee2015-04-23 10:07:08 +053060import org.slf4j.Logger;
61
Andrea Campanella087ceb92015-12-07 09:58:34 -080062import java.io.IOException;
Andrea Campanella7e6200a2016-03-21 09:48:40 -070063import java.net.Socket;
64import java.net.URI;
65import java.net.URISyntaxException;
66import java.util.Arrays;
Andrea Campanella5c999e22016-03-01 15:12:53 -080067import java.util.concurrent.ExecutorService;
68import java.util.concurrent.Executors;
helenyrwufd296b62016-06-22 17:43:02 -070069import java.util.concurrent.ScheduledExecutorService;
70import java.util.concurrent.ScheduledFuture;
71import java.util.concurrent.TimeUnit;
andreaeb70a942015-10-16 21:34:46 -070072
Yuta HIGUCHI1624df12016-07-21 16:54:33 -070073import static java.util.concurrent.Executors.newScheduledThreadPool;
Andrea Campanella5c999e22016-03-01 15:12:53 -080074import static org.onlab.util.Tools.groupedThreads;
andreaeb70a942015-10-16 21:34:46 -070075import static org.onosproject.net.config.basics.SubjectFactories.APP_SUBJECT_FACTORY;
76import static org.slf4j.LoggerFactory.getLogger;
77
Sanjay Se8dcfee2015-04-23 10:07:08 +053078/**
andreaeb70a942015-10-16 21:34:46 -070079 * Provider which uses an NETCONF controller to detect device.
Sanjay Se8dcfee2015-04-23 10:07:08 +053080 */
81@Component(immediate = true)
82public class NetconfDeviceProvider extends AbstractProvider
83 implements DeviceProvider {
Andrea Campanella7e6200a2016-03-21 09:48:40 -070084
andreaeb70a942015-10-16 21:34:46 -070085 private final Logger log = getLogger(getClass());
Sanjay Se8dcfee2015-04-23 10:07:08 +053086
87 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
88 protected DeviceProviderRegistry providerRegistry;
89
andreaeb70a942015-10-16 21:34:46 -070090 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Andrea Campanella101417d2015-12-11 17:58:07 -080091 protected NetconfController controller;
Sanjay Se8dcfee2015-04-23 10:07:08 +053092
93 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
andreaeb70a942015-10-16 21:34:46 -070094 protected NetworkConfigRegistry cfgService;
Sanjay Se8dcfee2015-04-23 10:07:08 +053095
Thomas Vachuskad6811712015-04-29 21:37:04 -070096 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
andreaeb70a942015-10-16 21:34:46 -070097 protected CoreService coreService;
Thomas Vachuskad6811712015-04-29 21:37:04 -070098
Aaron Kruglikov17b4c852016-01-15 16:37:04 -080099 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700100 protected DeviceService deviceService;
Aaron Kruglikov17b4c852016-01-15 16:37:04 -0800101
102 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700103 protected DeviceKeyAdminService deviceKeyAdminService;
104
105 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
106 protected MastershipService mastershipService;
107
Michele Santuari576f09c2016-09-28 14:20:00 +0200108 protected static final String APP_NAME = "org.onosproject.netconf";
Andrea Campanella101417d2015-12-11 17:58:07 -0800109 private static final String SCHEME_NAME = "netconf";
110 private static final String DEVICE_PROVIDER_PACKAGE = "org.onosproject.netconf.provider.device";
111 private static final String UNKNOWN = "unknown";
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700112 protected static final String ISNULL = "NetconfDeviceInfo is null";
113 private static final String IPADDRESS = "ipaddress";
114 private static final String NETCONF = "netconf";
115 private static final String PORT = "port";
helenyrwufd296b62016-06-22 17:43:02 -0700116 private static final int CORE_POOL_SIZE = 10;
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700117 //FIXME eventually a property
118 private static final int ISREACHABLE_TIMEOUT = 2000;
helenyrwufd296b62016-06-22 17:43:02 -0700119 private static final int DEFAULT_POLL_FREQUENCY_SECONDS = 30;
Sanjay Se8dcfee2015-04-23 10:07:08 +0530120
Michele Santuari576f09c2016-09-28 14:20:00 +0200121 protected final ExecutorService executor =
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700122 Executors.newFixedThreadPool(5, groupedThreads("onos/netconfdeviceprovider",
123 "device-installer-%d", log));
Yuta HIGUCHI1624df12016-07-21 16:54:33 -0700124 protected ScheduledExecutorService connectionExecutor
125 = newScheduledThreadPool(CORE_POOL_SIZE,
126 groupedThreads("onos/netconfdeviceprovider",
127 "connection-executor-%d", log));
Andrea Campanella5c999e22016-03-01 15:12:53 -0800128
Michele Santuari576f09c2016-09-28 14:20:00 +0200129 protected DeviceProviderService providerService;
andreaeb70a942015-10-16 21:34:46 -0700130 private NetconfDeviceListener innerNodeListener = new InnerNetconfDeviceListener();
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700131 private InternalDeviceListener deviceListener = new InternalDeviceListener();
Michele Santuari576f09c2016-09-28 14:20:00 +0200132 protected ScheduledFuture<?> scheduledTask;
Sanjay Se8dcfee2015-04-23 10:07:08 +0530133
andreaeb70a942015-10-16 21:34:46 -0700134 private final ConfigFactory factory =
135 new ConfigFactory<ApplicationId, NetconfProviderConfig>(APP_SUBJECT_FACTORY,
136 NetconfProviderConfig.class,
137 "devices",
138 true) {
139 @Override
140 public NetconfProviderConfig createConfig() {
141 return new NetconfProviderConfig();
142 }
143 };
Michele Santuari576f09c2016-09-28 14:20:00 +0200144 protected final NetworkConfigListener cfgListener = new InternalNetworkConfigListener();
andreaeb70a942015-10-16 21:34:46 -0700145 private ApplicationId appId;
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700146 private boolean active;
Sanjay Se8dcfee2015-04-23 10:07:08 +0530147
Sanjay Se8dcfee2015-04-23 10:07:08 +0530148
149 @Activate
andreaeb70a942015-10-16 21:34:46 -0700150 public void activate() {
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700151 active = true;
Sanjay Se8dcfee2015-04-23 10:07:08 +0530152 providerService = providerRegistry.register(this);
Andrea Campanella101417d2015-12-11 17:58:07 -0800153 appId = coreService.registerApplication(APP_NAME);
andreaeb70a942015-10-16 21:34:46 -0700154 cfgService.registerConfigFactory(factory);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700155 cfgService.addListener(cfgListener);
andreaeb70a942015-10-16 21:34:46 -0700156 controller.addDeviceListener(innerNodeListener);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700157 deviceService.addListener(deviceListener);
Andrea Campanella7d8449b2016-03-02 10:16:42 -0800158 executor.execute(NetconfDeviceProvider.this::connectDevices);
helenyrwufd296b62016-06-22 17:43:02 -0700159 scheduledTask = schedulePolling();
Thomas Vachuskad6811712015-04-29 21:37:04 -0700160 log.info("Started");
Sanjay Se8dcfee2015-04-23 10:07:08 +0530161 }
162
andreaeb70a942015-10-16 21:34:46 -0700163
Sanjay Se8dcfee2015-04-23 10:07:08 +0530164 @Deactivate
andreaeb70a942015-10-16 21:34:46 -0700165 public void deactivate() {
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700166 deviceService.removeListener(deviceListener);
167 active = false;
168 controller.getNetconfDevices().forEach(id -> {
169 deviceKeyAdminService.removeKey(DeviceKeyId.deviceKeyId(id.toString()));
170 controller.disconnectDevice(id, true);
171 });
Andrea Campanella86294db2016-03-07 11:42:49 -0800172 controller.removeDeviceListener(innerNodeListener);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700173 deviceService.removeListener(deviceListener);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530174 providerRegistry.unregister(this);
175 providerService = null;
andreaeb70a942015-10-16 21:34:46 -0700176 cfgService.unregisterConfigFactory(factory);
helenyrwufd296b62016-06-22 17:43:02 -0700177 scheduledTask.cancel(true);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700178 executor.shutdown();
Sanjay Seb5eebb2015-04-24 15:44:50 +0530179 log.info("Stopped");
Sanjay Se8dcfee2015-04-23 10:07:08 +0530180 }
181
andreaeb70a942015-10-16 21:34:46 -0700182 public NetconfDeviceProvider() {
Andrea Campanella101417d2015-12-11 17:58:07 -0800183 super(new ProviderId(SCHEME_NAME, DEVICE_PROVIDER_PACKAGE));
Sanjay Se8dcfee2015-04-23 10:07:08 +0530184 }
185
helenyrwufd296b62016-06-22 17:43:02 -0700186 // Checks connection to devices in the config file
187 // every DEFAULT_POLL_FREQUENCY_SECONDS seconds.
188 private ScheduledFuture schedulePolling() {
189 return connectionExecutor.scheduleAtFixedRate(this::checkAndUpdateDevices,
190 DEFAULT_POLL_FREQUENCY_SECONDS / 10,
191 DEFAULT_POLL_FREQUENCY_SECONDS,
192 TimeUnit.SECONDS);
193 }
194
Sanjay Se8dcfee2015-04-23 10:07:08 +0530195 @Override
196 public void triggerProbe(DeviceId deviceId) {
andreaeb70a942015-10-16 21:34:46 -0700197 // TODO: This will be implemented later.
198 log.info("Triggering probe on device {}", deviceId);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530199 }
200
201 @Override
202 public void roleChanged(DeviceId deviceId, MastershipRole newRole) {
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700203 if (active) {
204 switch (newRole) {
205 case MASTER:
206 initiateConnection(deviceId, newRole);
207 log.debug("Accepting mastership role change to {} for device {}", newRole, deviceId);
208 break;
209 case STANDBY:
210 controller.disconnectDevice(deviceId, false);
211 providerService.receivedRoleReply(deviceId, newRole, MastershipRole.STANDBY);
212 //else no-op
213 break;
214 case NONE:
215 controller.disconnectDevice(deviceId, false);
216 providerService.receivedRoleReply(deviceId, newRole, MastershipRole.NONE);
217 break;
218 default:
219 log.error("Unimplemented Mastership state : {}", newRole);
220
221 }
222 }
Sanjay Se8dcfee2015-04-23 10:07:08 +0530223 }
224
225 @Override
226 public boolean isReachable(DeviceId deviceId) {
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700227 //FIXME this is a workaround util device state is shared
228 // between controller instances.
229 Device device = deviceService.getDevice(deviceId);
230 String ip;
231 int port;
232 Socket socket = null;
233 if (device != null) {
234 ip = device.annotations().value(IPADDRESS);
235 port = Integer.parseInt(device.annotations().value(PORT));
236 } else {
237 String[] info = deviceId.toString().split(":");
238 if (info.length == 3) {
239 ip = info[1];
240 port = Integer.parseInt(info[2]);
241 } else {
242 ip = Arrays.asList(info).stream().filter(el -> !el.equals(info[0])
243 && !el.equals(info[info.length - 1]))
244 .reduce((t, u) -> t + ":" + u)
245 .get();
246 log.debug("ip v6 {}", ip);
247 port = Integer.parseInt(info[info.length - 1]);
248 }
Sanjay Se8dcfee2015-04-23 10:07:08 +0530249 }
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700250 //test connection to device opening a socket to it.
251 try {
252 socket = new Socket(ip, port);
253 log.debug("rechability of {}, {}, {}", deviceId, socket.isConnected() && !socket.isClosed());
254 return socket.isConnected() && !socket.isClosed();
255 } catch (IOException e) {
256 log.info("Device {} is not reachable", deviceId);
257 return false;
258 } finally {
259 if (socket != null) {
260 try {
261 socket.close();
262 } catch (IOException e) {
263 log.debug("Test Socket failed {} ", deviceId);
264 return false;
265 }
266 }
267 }
Sanjay Se8dcfee2015-04-23 10:07:08 +0530268 }
269
Saurav Dasa2d37502016-03-25 17:50:40 -0700270 @Override
271 public void changePortState(DeviceId deviceId, PortNumber portNumber,
272 boolean enable) {
273 // TODO if required
274 }
275
andreaeb70a942015-10-16 21:34:46 -0700276 private class InnerNetconfDeviceListener implements NetconfDeviceListener {
Sanjay Se8dcfee2015-04-23 10:07:08 +0530277
Andrea Campanella101417d2015-12-11 17:58:07 -0800278
andreaeb70a942015-10-16 21:34:46 -0700279 @Override
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700280 public void deviceAdded(DeviceId deviceId) {
281 //no-op
282 log.debug("Netconf device {} added to Netconf subController", deviceId);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530283 }
284
285 @Override
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700286 public void deviceRemoved(DeviceId deviceId) {
287 Preconditions.checkNotNull(deviceId, ISNULL);
helenyrwufd296b62016-06-22 17:43:02 -0700288
289 if (deviceService.getDevice(deviceId) != null) {
290 providerService.deviceDisconnected(deviceId);
291 log.debug("Netconf device {} removed from Netconf subController", deviceId);
292 } else {
293 log.warn("Netconf device {} does not exist in the store, " +
294 "it may already have been removed", deviceId);
295 }
andreaeb70a942015-10-16 21:34:46 -0700296 }
297 }
298
andreaeb70a942015-10-16 21:34:46 -0700299 private void connectDevices() {
300 NetconfProviderConfig cfg = cfgService.getConfig(appId, NetconfProviderConfig.class);
301 if (cfg != null) {
Sanjay Se8dcfee2015-04-23 10:07:08 +0530302 try {
Sho SHIMIZUa09e1bb2016-08-01 14:25:25 -0700303 cfg.getDevicesAddresses().forEach(addr -> {
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700304 DeviceId deviceId = getDeviceId(addr.ip().toString(), addr.port());
305 Preconditions.checkNotNull(deviceId, ISNULL);
306 //Netconf configuration object
307 ChassisId cid = new ChassisId();
308 String ipAddress = addr.ip().toString();
309 SparseAnnotations annotations = DefaultAnnotations.builder()
310 .set(IPADDRESS, ipAddress)
311 .set(PORT, String.valueOf(addr.port()))
312 .set(AnnotationKeys.PROTOCOL, SCHEME_NAME.toUpperCase())
313 .build();
314 DeviceDescription deviceDescription = new DefaultDeviceDescription(
315 deviceId.uri(),
316 Device.Type.SWITCH,
317 UNKNOWN, UNKNOWN,
318 UNKNOWN, UNKNOWN,
helenyrwufd296b62016-06-22 17:43:02 -0700319 cid, false,
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700320 annotations);
321 deviceKeyAdminService.addKey(
322 DeviceKey.createDeviceKeyUsingUsernamePassword(
323 DeviceKeyId.deviceKeyId(deviceId.toString()),
324 null, addr.name(), addr.password()));
helenyrwufd296b62016-06-22 17:43:02 -0700325 if (deviceService.getDevice(deviceId) == null) {
326 providerService.deviceConnected(deviceId, deviceDescription);
327 }
328 checkAndUpdateDevice(deviceId, deviceDescription);
329 });
330 } catch (ConfigException e) {
331 log.error("Cannot read config error " + e);
332 }
333 }
334 }
335
336 private void checkAndUpdateDevice(DeviceId deviceId, DeviceDescription deviceDescription) {
337 if (deviceService.getDevice(deviceId) == null) {
338 log.warn("Device {} has not been added to store, " +
339 "maybe due to a problem in connectivity", deviceId);
340 } else {
341 boolean isReachable = isReachable(deviceId);
342 if (isReachable && !deviceService.isAvailable(deviceId)) {
Konstantinos Kanonakis4d67dd82016-08-05 12:18:52 -0500343 Device device = deviceService.getDevice(deviceId);
Konstantinos Kanonakis4d67dd82016-08-05 12:18:52 -0500344 if (device.is(DeviceDescriptionDiscovery.class)) {
345 if (mastershipService.isLocalMaster(deviceId)) {
346 DeviceDescriptionDiscovery deviceDescriptionDiscovery =
347 device.as(DeviceDescriptionDiscovery.class);
Michele Santuari00cc1f72016-09-08 17:05:24 +0200348 DeviceDescription updatedDeviceDescription = deviceDescriptionDiscovery.discoverDeviceDetails();
349 if (updatedDeviceDescription != null &&
350 !descriptionEquals(device, updatedDeviceDescription)) {
351 providerService.deviceConnected(
352 deviceId, new DefaultDeviceDescription(
353 updatedDeviceDescription, true, updatedDeviceDescription.annotations()));
Michele Santuari576f09c2016-09-28 14:20:00 +0200354 } else if (updatedDeviceDescription == null) {
355 providerService.deviceConnected(
356 deviceId, new DefaultDeviceDescription(
357 deviceDescription, true, deviceDescription.annotations()));
Michele Santuari00cc1f72016-09-08 17:05:24 +0200358 }
359 //if ports are not discovered, retry the discovery
360 if (deviceService.getPorts(deviceId).isEmpty()) {
361 discoverPorts(deviceId);
362 }
Konstantinos Kanonakis4d67dd82016-08-05 12:18:52 -0500363 }
364 } else {
Michele Santuari576f09c2016-09-28 14:20:00 +0200365 log.warn("No DeviceDescriptionDiscovery behaviour for device {} " +
366 "using DefaultDeviceDescription", deviceId);
367 providerService.deviceConnected(
368 deviceId, new DefaultDeviceDescription(
369 deviceDescription, true, deviceDescription.annotations()));
Konstantinos Kanonakis4d67dd82016-08-05 12:18:52 -0500370 }
helenyrwufd296b62016-06-22 17:43:02 -0700371 } else if (!isReachable && deviceService.isAvailable(deviceId)) {
372 providerService.deviceDisconnected(deviceId);
373 }
374 }
375 }
376
Michele Santuari00cc1f72016-09-08 17:05:24 +0200377 private boolean descriptionEquals(Device device, DeviceDescription updatedDeviceDescription) {
Yuta HIGUCHIf381fc72017-01-03 10:39:36 -0800378 return Objects.equal(device.id().uri(), updatedDeviceDescription.deviceUri())
Michele Santuari00cc1f72016-09-08 17:05:24 +0200379 && Objects.equal(device.type(), updatedDeviceDescription.type())
380 && Objects.equal(device.manufacturer(), updatedDeviceDescription.manufacturer())
381 && Objects.equal(device.hwVersion(), updatedDeviceDescription.hwVersion())
382 && Objects.equal(device.swVersion(), updatedDeviceDescription.swVersion())
383 && Objects.equal(device.serialNumber(), updatedDeviceDescription.serialNumber())
384 && Objects.equal(device.chassisId(), updatedDeviceDescription.chassisId())
385 && Objects.equal(device.annotations(), updatedDeviceDescription.annotations());
386 }
387
helenyrwufd296b62016-06-22 17:43:02 -0700388 private void checkAndUpdateDevices() {
389 NetconfProviderConfig cfg = cfgService.getConfig(appId, NetconfProviderConfig.class);
390 if (cfg != null) {
391 log.info("Checking connection to devices in configuration");
392 try {
Sho SHIMIZUa09e1bb2016-08-01 14:25:25 -0700393 cfg.getDevicesAddresses().forEach(addr -> {
helenyrwufd296b62016-06-22 17:43:02 -0700394 DeviceId deviceId = getDeviceId(addr.ip().toString(), addr.port());
395 Preconditions.checkNotNull(deviceId, ISNULL);
396 //Netconf configuration object
397 ChassisId cid = new ChassisId();
398 String ipAddress = addr.ip().toString();
399 SparseAnnotations annotations = DefaultAnnotations.builder()
400 .set(IPADDRESS, ipAddress)
401 .set(PORT, String.valueOf(addr.port()))
402 .set(AnnotationKeys.PROTOCOL, SCHEME_NAME.toUpperCase())
403 .build();
404 DeviceDescription deviceDescription = new DefaultDeviceDescription(
405 deviceId.uri(),
406 Device.Type.SWITCH,
407 UNKNOWN, UNKNOWN,
408 UNKNOWN, UNKNOWN,
409 cid, false,
410 annotations);
411 deviceKeyAdminService.addKey(
412 DeviceKey.createDeviceKeyUsingUsernamePassword(
413 DeviceKeyId.deviceKeyId(deviceId.toString()),
414 null, addr.name(), addr.password()));
415 checkAndUpdateDevice(deviceId, deviceDescription);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700416 });
andreaeb70a942015-10-16 21:34:46 -0700417 } catch (ConfigException e) {
418 log.error("Cannot read config error " + e);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530419 }
420 }
andreaeb70a942015-10-16 21:34:46 -0700421 }
Sanjay Se8dcfee2015-04-23 10:07:08 +0530422
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700423 private void initiateConnection(DeviceId deviceId, MastershipRole newRole) {
424 try {
425 if (isReachable(deviceId)) {
426 controller.connectDevice(deviceId);
427 providerService.receivedRoleReply(deviceId, newRole, MastershipRole.MASTER);
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700428 }
429 } catch (Exception e) {
430 if (deviceService.getDevice(deviceId) != null) {
431 providerService.deviceDisconnected(deviceId);
432 }
433 deviceKeyAdminService.removeKey(DeviceKeyId.deviceKeyId(deviceId.toString()));
434 throw new RuntimeException(new NetconfException(
435 "Can't connect to NETCONF " + "device on " + deviceId + ":" + deviceId, e));
436
437 }
438 }
439
440 private void discoverPorts(DeviceId deviceId) {
441 Device device = deviceService.getDevice(deviceId);
Andrea Campanella6c71a052016-04-22 11:56:31 -0700442 //TODO remove when PortDiscovery is removed from master
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700443 if (device.is(PortDiscovery.class)) {
444 PortDiscovery portConfig = device.as(PortDiscovery.class);
445 providerService.updatePorts(deviceId,
446 portConfig.getPorts());
Andrea Campanella6c71a052016-04-22 11:56:31 -0700447 } else if (device.is(DeviceDescriptionDiscovery.class)) {
448 DeviceDescriptionDiscovery deviceDescriptionDiscovery =
449 device.as(DeviceDescriptionDiscovery.class);
450 providerService.updatePorts(deviceId,
451 deviceDescriptionDiscovery.discoverPortDetails());
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700452 } else {
453 log.warn("No portGetter behaviour for device {}", deviceId);
454 }
455 }
456
457 /**
458 * Return the DeviceId about the device containing the URI.
459 *
Andrea Campanella6c71a052016-04-22 11:56:31 -0700460 * @param ip IP address
Ray Milkeyd4334db2016-04-05 17:39:44 -0700461 * @param port port number
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700462 * @return DeviceId
463 */
464 public DeviceId getDeviceId(String ip, int port) {
465 try {
466 return DeviceId.deviceId(new URI(NETCONF, ip + ":" + port, null));
467 } catch (URISyntaxException e) {
468 throw new IllegalArgumentException("Unable to build deviceID for device "
469 + ip + ":" + port, e);
470 }
471 }
472
473 /**
474 * Listener for configuration events.
475 */
andreaeb70a942015-10-16 21:34:46 -0700476 private class InternalNetworkConfigListener implements NetworkConfigListener {
Sanjay Se8dcfee2015-04-23 10:07:08 +0530477
andreaeb70a942015-10-16 21:34:46 -0700478
479 @Override
480 public void event(NetworkConfigEvent event) {
Andrea Campanella90f044f2016-03-02 09:14:57 -0800481 executor.execute(NetconfDeviceProvider.this::connectDevices);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530482 }
483
andreaeb70a942015-10-16 21:34:46 -0700484 @Override
485 public boolean isRelevant(NetworkConfigEvent event) {
andreaeb70a942015-10-16 21:34:46 -0700486 return event.configClass().equals(NetconfProviderConfig.class) &&
487 (event.type() == NetworkConfigEvent.Type.CONFIG_ADDED ||
488 event.type() == NetworkConfigEvent.Type.CONFIG_UPDATED);
Sanjay Se8dcfee2015-04-23 10:07:08 +0530489 }
490 }
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700491
492 /**
493 * Listener for core device events.
494 */
495 private class InternalDeviceListener implements DeviceListener {
496 @Override
497 public void event(DeviceEvent event) {
498 if ((event.type() == DeviceEvent.Type.DEVICE_ADDED)) {
499 executor.execute(() -> discoverPorts(event.subject().id()));
500 } else if ((event.type() == DeviceEvent.Type.DEVICE_REMOVED)) {
501 log.debug("removing device {}", event.subject().id());
502 deviceService.getDevice(event.subject().id()).annotations().keys();
503 controller.disconnectDevice(event.subject().id(), true);
504 }
505 }
506
507 @Override
508 public boolean isRelevant(DeviceEvent event) {
509 if (mastershipService.getMasterFor(event.subject().id()) == null) {
510 return true;
511 }
512 return event.subject().annotations().value(AnnotationKeys.PROTOCOL)
513 .equals(SCHEME_NAME.toUpperCase()) &&
Michele Santuari576f09c2016-09-28 14:20:00 +0200514 mastershipService.isLocalMaster(event.subject().id());
Andrea Campanella7e6200a2016-03-21 09:48:40 -0700515 }
516 }
Sanjay Se8dcfee2015-04-23 10:07:08 +0530517}