dcca5895ea982ffc6e694c45a4ba3f2bd64a47f9
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / RemoteDeviceConnectorImpl.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.topology.singleton.impl;
10
11 import akka.actor.ActorRef;
12 import akka.util.Timeout;
13 import com.google.common.annotations.VisibleForTesting;
14 import com.google.common.base.Preconditions;
15 import com.google.common.collect.Lists;
16 import com.google.common.util.concurrent.FutureCallback;
17 import com.google.common.util.concurrent.Futures;
18 import com.google.common.util.concurrent.ListenableFuture;
19 import io.netty.util.concurrent.EventExecutor;
20 import java.math.BigDecimal;
21 import java.net.InetSocketAddress;
22 import java.net.URL;
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Map;
26 import java.util.Objects;
27 import java.util.Optional;
28 import javax.annotation.Nullable;
29 import org.opendaylight.aaa.encrypt.AAAEncryptionService;
30 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
31 import org.opendaylight.netconf.api.NetconfMessage;
32 import org.opendaylight.netconf.client.NetconfClientSessionListener;
33 import org.opendaylight.netconf.client.conf.NetconfClientConfiguration;
34 import org.opendaylight.netconf.client.conf.NetconfReconnectingClientConfiguration;
35 import org.opendaylight.netconf.client.conf.NetconfReconnectingClientConfigurationBuilder;
36 import org.opendaylight.netconf.nettyutil.handler.ssh.authentication.AuthenticationHandler;
37 import org.opendaylight.netconf.nettyutil.handler.ssh.authentication.LoginPassword;
38 import org.opendaylight.netconf.sal.connect.api.RemoteDevice;
39 import org.opendaylight.netconf.sal.connect.api.RemoteDeviceHandler;
40 import org.opendaylight.netconf.sal.connect.netconf.LibraryModulesSchemas;
41 import org.opendaylight.netconf.sal.connect.netconf.NetconfDevice;
42 import org.opendaylight.netconf.sal.connect.netconf.NetconfDeviceBuilder;
43 import org.opendaylight.netconf.sal.connect.netconf.SchemalessNetconfDevice;
44 import org.opendaylight.netconf.sal.connect.netconf.listener.NetconfDeviceCapabilities;
45 import org.opendaylight.netconf.sal.connect.netconf.listener.NetconfDeviceCommunicator;
46 import org.opendaylight.netconf.sal.connect.netconf.listener.NetconfSessionPreferences;
47 import org.opendaylight.netconf.sal.connect.netconf.listener.UserPreferences;
48 import org.opendaylight.netconf.sal.connect.netconf.sal.KeepaliveSalFacade;
49 import org.opendaylight.netconf.sal.connect.netconf.schema.YangLibrarySchemaYangSourceProvider;
50 import org.opendaylight.netconf.sal.connect.util.AuthEncryptor;
51 import org.opendaylight.netconf.sal.connect.util.RemoteDeviceId;
52 import org.opendaylight.netconf.topology.singleton.api.RemoteDeviceConnector;
53 import org.opendaylight.netconf.topology.singleton.impl.utils.NetconfConnectorDTO;
54 import org.opendaylight.netconf.topology.singleton.impl.utils.NetconfTopologySetup;
55 import org.opendaylight.netconf.topology.singleton.impl.utils.NetconfTopologyUtils;
56 import org.opendaylight.protocol.framework.ReconnectStrategy;
57 import org.opendaylight.protocol.framework.ReconnectStrategyFactory;
58 import org.opendaylight.protocol.framework.TimedReconnectStrategy;
59 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Host;
60 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
61 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.NetconfNode;
62 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf.node.connection.status.available.capabilities.AvailableCapability.CapabilityOrigin;
63 import org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf.node.credentials.Credentials;
64 import org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.NodeId;
65 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
66 import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
67 import org.opendaylight.yangtools.yang.model.repo.spi.PotentialSchemaSource;
68 import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceRegistration;
69 import org.slf4j.Logger;
70 import org.slf4j.LoggerFactory;
71
72 public class RemoteDeviceConnectorImpl implements RemoteDeviceConnector {
73
74     private static final Logger LOG = LoggerFactory.getLogger(RemoteDeviceConnectorImpl.class);
75
76     // Initializes default constant instances for the case when the default schema repository
77     // directory cache/schema is used.
78
79     private final NetconfTopologySetup netconfTopologyDeviceSetup;
80     private final RemoteDeviceId remoteDeviceId;
81     private final DOMMountPointService mountService;
82     private final Timeout actorResponseWaitTime;
83     private final AAAEncryptionService encryptionService;
84
85     private NetconfConnectorDTO deviceCommunicatorDTO;
86
87     public RemoteDeviceConnectorImpl(final NetconfTopologySetup netconfTopologyDeviceSetup,
88                                      final RemoteDeviceId remoteDeviceId, final Timeout actorResponseWaitTime,
89                                      final DOMMountPointService mountService) {
90
91         this.netconfTopologyDeviceSetup = Preconditions.checkNotNull(netconfTopologyDeviceSetup);
92         this.remoteDeviceId = remoteDeviceId;
93         this.actorResponseWaitTime = actorResponseWaitTime;
94         this.mountService = mountService;
95         this.encryptionService = netconfTopologyDeviceSetup.getEncryptionService();
96
97     }
98
99     @Override
100     public void startRemoteDeviceConnection(final ActorRef deviceContextActorRef) {
101
102         final NetconfNode netconfNode = netconfTopologyDeviceSetup.getNode().getAugmentation(NetconfNode.class);
103         final NodeId nodeId = netconfTopologyDeviceSetup.getNode().getNodeId();
104
105         AuthEncryptor.encryptIfNeeded(nodeId, netconfNode, encryptionService,
106                 netconfTopologyDeviceSetup.getTopologyId(),
107                 netconfTopologyDeviceSetup.getDataBroker());
108
109         Preconditions.checkNotNull(netconfNode.getHost());
110         Preconditions.checkNotNull(netconfNode.getPort());
111         Preconditions.checkNotNull(netconfNode.isTcpOnly());
112
113         this.deviceCommunicatorDTO = createDeviceCommunicator(nodeId, netconfNode, deviceContextActorRef);
114         final NetconfDeviceCommunicator deviceCommunicator = deviceCommunicatorDTO.getCommunicator();
115         final NetconfClientSessionListener netconfClientSessionListener = deviceCommunicatorDTO.getSessionListener();
116         final NetconfReconnectingClientConfiguration clientConfig =
117                 getClientConfig(netconfClientSessionListener, netconfNode);
118         final ListenableFuture<NetconfDeviceCapabilities> future = deviceCommunicator
119                 .initializeRemoteConnection(netconfTopologyDeviceSetup.getNetconfClientDispatcher(), clientConfig);
120
121         Futures.addCallback(future, new FutureCallback<NetconfDeviceCapabilities>() {
122             @Override
123             public void onSuccess(final NetconfDeviceCapabilities result) {
124                 LOG.debug("{}: Connector started successfully", remoteDeviceId);
125             }
126
127             @Override
128             public void onFailure(@Nullable final Throwable throwable) {
129                 LOG.error("{}: Connector failed, {}", remoteDeviceId, throwable);
130             }
131         });
132     }
133
134     @Override
135     public void stopRemoteDeviceConnection() {
136         Preconditions.checkNotNull(deviceCommunicatorDTO, remoteDeviceId + ": Device communicator was not created.");
137         try {
138             deviceCommunicatorDTO.close();
139         } catch (final Exception e) {
140             LOG.error("{}: Error at closing device communicator.", remoteDeviceId, e);
141         }
142     }
143
144     @VisibleForTesting
145     NetconfConnectorDTO createDeviceCommunicator(final NodeId nodeId, final NetconfNode node,
146                                                  final ActorRef deviceContextActorRef) {
147         //setup default values since default value is not supported in mdsal
148         final Long defaultRequestTimeoutMillis = node.getDefaultRequestTimeoutMillis() == null
149                 ? NetconfTopologyUtils.DEFAULT_REQUEST_TIMEOUT_MILLIS : node.getDefaultRequestTimeoutMillis();
150         final Long keepaliveDelay = node.getKeepaliveDelay() == null
151                 ? NetconfTopologyUtils.DEFAULT_KEEPALIVE_DELAY : node.getKeepaliveDelay();
152         final Boolean reconnectOnChangedSchema = node.isReconnectOnChangedSchema() == null
153                 ? NetconfTopologyUtils.DEFAULT_RECONNECT_ON_CHANGED_SCHEMA : node.isReconnectOnChangedSchema();
154
155         RemoteDeviceHandler<NetconfSessionPreferences> salFacade = new MasterSalFacade(remoteDeviceId,
156                 netconfTopologyDeviceSetup.getActorSystem(), deviceContextActorRef, actorResponseWaitTime,
157                 mountService, netconfTopologyDeviceSetup.getDataBroker());
158         if (keepaliveDelay > 0) {
159             LOG.info("{}: Adding keepalive facade.", remoteDeviceId);
160             salFacade = new KeepaliveSalFacade(remoteDeviceId, salFacade,
161                     netconfTopologyDeviceSetup.getKeepaliveExecutor().getExecutor(), keepaliveDelay,
162                     defaultRequestTimeoutMillis);
163         }
164
165         final NetconfDevice.SchemaResourcesDTO schemaResourcesDTO = netconfTopologyDeviceSetup.getSchemaResourcesDTO();
166
167
168         // pre register yang library sources as fallback schemas to schema registry
169         final List<SchemaSourceRegistration<YangTextSchemaSource>> registeredYangLibSources = Lists.newArrayList();
170         if (node.getYangLibrary() != null) {
171             final String yangLibURL = node.getYangLibrary().getYangLibraryUrl().getValue();
172             final String yangLibUsername = node.getYangLibrary().getUsername();
173             final String yangLigPassword = node.getYangLibrary().getPassword();
174
175             final LibraryModulesSchemas libraryModulesSchemas;
176             if (yangLibURL != null) {
177                 if (yangLibUsername != null && yangLigPassword != null) {
178                     libraryModulesSchemas = LibraryModulesSchemas.create(yangLibURL, yangLibUsername, yangLigPassword);
179                 } else {
180                     libraryModulesSchemas = LibraryModulesSchemas.create(yangLibURL);
181                 }
182
183                 for (final Map.Entry<SourceIdentifier, URL> sourceIdentifierURLEntry :
184                         libraryModulesSchemas.getAvailableModels().entrySet()) {
185                     registeredYangLibSources
186                             .add(schemaResourcesDTO.getSchemaRegistry().registerSchemaSource(
187                                     new YangLibrarySchemaYangSourceProvider(remoteDeviceId,
188                                             libraryModulesSchemas.getAvailableModels()),
189                                     PotentialSchemaSource
190                                             .create(sourceIdentifierURLEntry.getKey(), YangTextSchemaSource.class,
191                                                     PotentialSchemaSource.Costs.REMOTE_IO.getValue())));
192                 }
193             }
194         }
195
196         final RemoteDevice<NetconfSessionPreferences, NetconfMessage, NetconfDeviceCommunicator> device;
197         if (node.isSchemaless()) {
198             device = new SchemalessNetconfDevice(remoteDeviceId, salFacade);
199         } else {
200             device = new NetconfDeviceBuilder()
201                     .setReconnectOnSchemasChange(reconnectOnChangedSchema)
202                     .setSchemaResourcesDTO(schemaResourcesDTO)
203                     .setGlobalProcessingExecutor(netconfTopologyDeviceSetup.getProcessingExecutor().getExecutor())
204                     .setId(remoteDeviceId)
205                     .setSalFacade(salFacade)
206                     .build();
207         }
208
209         final Optional<NetconfSessionPreferences> userCapabilities = getUserCapabilities(node);
210         final int rpcMessageLimit =
211                 node.getConcurrentRpcLimit() == null
212                         ? NetconfTopologyUtils.DEFAULT_CONCURRENT_RPC_LIMIT : node.getConcurrentRpcLimit();
213
214         if (rpcMessageLimit < 1) {
215             LOG.info("{}: Concurrent rpc limit is smaller than 1, no limit will be enforced.", remoteDeviceId);
216         }
217
218         return new NetconfConnectorDTO(
219                 userCapabilities.isPresent() ? new NetconfDeviceCommunicator(remoteDeviceId, device,
220                         new UserPreferences(userCapabilities.get(),
221                                 Objects.isNull(node.getYangModuleCapabilities())
222                                         ? false : node.getYangModuleCapabilities().isOverride(),
223                                 Objects.isNull(node.getNonModuleCapabilities())
224                                         ? false : node.getNonModuleCapabilities().isOverride()), rpcMessageLimit)
225                         : new NetconfDeviceCommunicator(remoteDeviceId, device, rpcMessageLimit), salFacade);
226     }
227
228     private Optional<NetconfSessionPreferences> getUserCapabilities(final NetconfNode node) {
229         if (node.getYangModuleCapabilities() == null && node.getNonModuleCapabilities() == null) {
230             return Optional.empty();
231         }
232         final List<String> capabilities = new ArrayList<>();
233
234         if (node.getYangModuleCapabilities() != null) {
235             capabilities.addAll(node.getYangModuleCapabilities().getCapability());
236         }
237
238         //non-module capabilities should not exist in yang module capabilities
239         final NetconfSessionPreferences netconfSessionPreferences = NetconfSessionPreferences.fromStrings(capabilities);
240         Preconditions.checkState(netconfSessionPreferences.getNonModuleCaps().isEmpty(), "List yang-module-capabilities/capability " +
241                 "should contain only module based capabilities. Non-module capabilities used: " +
242                 netconfSessionPreferences.getNonModuleCaps());
243
244         if (node.getNonModuleCapabilities() != null) {
245             capabilities.addAll(node.getNonModuleCapabilities().getCapability());
246         }
247
248         return Optional.of(NetconfSessionPreferences.fromStrings(capabilities, CapabilityOrigin.UserDefined));
249     }
250
251     //TODO: duplicate code
252     private InetSocketAddress getSocketAddress(final Host host, final int port) {
253         if (host.getDomainName() != null) {
254             return new InetSocketAddress(host.getDomainName().getValue(), port);
255         } else {
256             final IpAddress ipAddress = host.getIpAddress();
257             final String ip = ipAddress.getIpv4Address() != null ? ipAddress.getIpv4Address().getValue() :
258                     ipAddress.getIpv6Address().getValue();
259             return new InetSocketAddress(ip, port);
260         }
261     }
262
263     @VisibleForTesting
264     NetconfReconnectingClientConfiguration getClientConfig(final NetconfClientSessionListener listener,
265                                                            final NetconfNode node) {
266
267         //setup default values since default value is not supported in mdsal
268         final long clientConnectionTimeoutMillis = node.getConnectionTimeoutMillis() == null
269                 ? NetconfTopologyUtils.DEFAULT_CONNECTION_TIMEOUT_MILLIS : node.getConnectionTimeoutMillis();
270         final long maxConnectionAttempts = node.getMaxConnectionAttempts() == null
271                 ? NetconfTopologyUtils.DEFAULT_MAX_CONNECTION_ATTEMPTS : node.getMaxConnectionAttempts();
272         final int betweenAttemptsTimeoutMillis = node.getBetweenAttemptsTimeoutMillis() == null
273                 ? NetconfTopologyUtils.DEFAULT_BETWEEN_ATTEMPTS_TIMEOUT_MILLIS : node.getBetweenAttemptsTimeoutMillis();
274         final BigDecimal sleepFactor = node.getSleepFactor() == null
275                 ? NetconfTopologyUtils.DEFAULT_SLEEP_FACTOR : node.getSleepFactor();
276
277         final InetSocketAddress socketAddress = getSocketAddress(node.getHost(), node.getPort().getValue());
278
279         final ReconnectStrategyFactory sf =
280                 new TimedReconnectStrategyFactory(netconfTopologyDeviceSetup.getEventExecutor(), maxConnectionAttempts,
281                         betweenAttemptsTimeoutMillis, sleepFactor);
282         final ReconnectStrategy strategy = sf.createReconnectStrategy();
283
284         final AuthenticationHandler authHandler;
285         final Credentials credentials = node.getCredentials();
286         if (credentials instanceof org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf.node.credentials.credentials.LoginPassword) {
287             authHandler = new LoginPassword(
288                     ((org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf
289                             .node.credentials.credentials.LoginPassword) credentials).getUsername(),
290                     ((org.opendaylight.yang.gen.v1.urn.opendaylight.netconf.node.topology.rev150114.netconf
291                             .node.credentials.credentials.LoginPassword) credentials).getPassword(),
292                             encryptionService);
293         } else {
294             throw new IllegalStateException(remoteDeviceId + ": Only login/password authentication is supported");
295         }
296
297         return NetconfReconnectingClientConfigurationBuilder.create()
298                 .withAddress(socketAddress)
299                 .withConnectionTimeoutMillis(clientConnectionTimeoutMillis)
300                 .withReconnectStrategy(strategy)
301                 .withAuthHandler(authHandler)
302                 .withProtocol(node.isTcpOnly()
303                         ? NetconfClientConfiguration.NetconfClientProtocol.TCP
304                         : NetconfClientConfiguration.NetconfClientProtocol.SSH)
305                 .withConnectStrategyFactory(sf)
306                 .withSessionListener(listener)
307                 .build();
308     }
309
310     private static final class TimedReconnectStrategyFactory implements ReconnectStrategyFactory {
311         private final Long connectionAttempts;
312         private final EventExecutor executor;
313         private final double sleepFactor;
314         private final int minSleep;
315
316         TimedReconnectStrategyFactory(final EventExecutor executor, final Long maxConnectionAttempts,
317                                       final int minSleep, final BigDecimal sleepFactor) {
318             if (maxConnectionAttempts != null && maxConnectionAttempts > 0) {
319                 connectionAttempts = maxConnectionAttempts;
320             } else {
321                 connectionAttempts = null;
322             }
323
324             this.sleepFactor = sleepFactor.doubleValue();
325             this.executor = executor;
326             this.minSleep = minSleep;
327         }
328
329         @Override
330         public ReconnectStrategy createReconnectStrategy() {
331             final Long maxSleep = null;
332             final Long deadline = null;
333
334             return new TimedReconnectStrategy(executor, minSleep,
335                     minSleep, sleepFactor, maxSleep, connectionAttempts, deadline);
336         }
337     }
338 }