Merge "Add JSONRestconfService impl for the restconf Draft18 impl"
[netconf.git] / netconf / netconf-ssh / src / main / java / org / opendaylight / netconf / ssh / NetconfNorthboundSshServer.java
1 /*
2  * Copyright (c) 2016 Inocybe Technologies 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 package org.opendaylight.netconf.ssh;
9
10 import io.netty.channel.ChannelFuture;
11 import io.netty.channel.EventLoopGroup;
12 import io.netty.channel.local.LocalAddress;
13 import io.netty.util.concurrent.EventExecutor;
14 import java.io.IOException;
15 import java.net.InetAddress;
16 import java.net.InetSocketAddress;
17 import java.util.concurrent.Executors;
18 import org.apache.sshd.server.keyprovider.PEMGeneratorHostKeyProvider;
19 import org.opendaylight.netconf.api.NetconfServerDispatcher;
20 import org.opendaylight.netconf.auth.AuthProvider;
21 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IetfInetUtil;
22 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress;
23 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddressBuilder;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26
27 public class NetconfNorthboundSshServer {
28
29     private static final Logger LOG = LoggerFactory.getLogger(NetconfNorthboundSshServer.class);
30
31     private static final String DEFAULT_PRIVATE_KEY_PATH = "./configuration/netconf-mdsal-nb/RSA.pk";
32     private static final String DEFAULT_ALGORITHM = "RSA";
33     private static final int DEFAULT_KEY_SIZE = 4096;
34
35     private final ChannelFuture localServer;
36     private final SshProxyServer sshProxyServer;
37
38     public NetconfNorthboundSshServer(final NetconfServerDispatcher netconfServerDispatcher,
39                                       final EventLoopGroup workerGroup,
40                                       final EventExecutor eventExecutor,
41                                       final String bindingAddress,
42                                       final String portNumber,
43                                       final AuthProvider authProvider) {
44
45         final LocalAddress localAddress = new LocalAddress(portNumber);
46
47         localServer = netconfServerDispatcher.createLocalServer(localAddress);
48         sshProxyServer = new SshProxyServer(Executors.newScheduledThreadPool(1), workerGroup, eventExecutor);
49
50         final InetSocketAddress inetAddress = getInetAddress(bindingAddress, portNumber);
51         final SshProxyServerConfigurationBuilder sshProxyServerConfigurationBuilder =
52                 new SshProxyServerConfigurationBuilder();
53         sshProxyServerConfigurationBuilder.setBindingAddress(inetAddress);
54         sshProxyServerConfigurationBuilder.setLocalAddress(localAddress);
55         sshProxyServerConfigurationBuilder.setAuthenticator(authProvider);
56         sshProxyServerConfigurationBuilder.setIdleTimeout(Integer.MAX_VALUE);
57         sshProxyServerConfigurationBuilder.setKeyPairProvider(new PEMGeneratorHostKeyProvider(DEFAULT_PRIVATE_KEY_PATH,
58                 DEFAULT_ALGORITHM, DEFAULT_KEY_SIZE));
59
60         localServer.addListener(future -> {
61             if (future.isDone() && !future.isCancelled()) {
62                 try {
63                     sshProxyServer.bind(sshProxyServerConfigurationBuilder.createSshProxyServerConfiguration());
64                     LOG.info("Netconf SSH endpoint started successfully at {}", bindingAddress);
65                 } catch (final IOException e) {
66                     throw new RuntimeException("Unable to start SSH netconf server", e);
67                 }
68             } else {
69                 LOG.warn("Unable to start SSH netconf server at {}", bindingAddress, future.cause());
70                 throw new RuntimeException("Unable to start SSH netconf server", future.cause());
71             }
72         });
73     }
74
75     private static InetSocketAddress getInetAddress(final String bindingAddress, final String portNumber) {
76         IpAddress ipAddress = IpAddressBuilder.getDefaultInstance(bindingAddress);
77         final InetAddress inetAd = IetfInetUtil.INSTANCE.inetAddressFor(ipAddress);
78         return new InetSocketAddress(inetAd, Integer.parseInt(portNumber));
79     }
80
81     public void close() {
82         sshProxyServer.close();
83
84         if (localServer.isDone()) {
85             localServer.channel().close();
86         } else {
87             localServer.cancel(true);
88         }
89     }
90 }