Fix KeyPairProvider initialization in NetconfSshServerProvider
[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     // Do not store unencrypted private key
32     private static final String DEFAULT_PRIVATE_KEY_PATH = null;
33     private static final String DEFAULT_ALGORITHM = "RSA";
34     private static final int DEFAULT_KEY_SIZE = 4096;
35
36     private final ChannelFuture localServer;
37     private final SshProxyServer sshProxyServer;
38
39     public NetconfNorthboundSshServer(final NetconfServerDispatcher netconfServerDispatcher,
40                                       final EventLoopGroup workerGroup,
41                                       final EventExecutor eventExecutor,
42                                       final String bindingAddress,
43                                       final String portNumber,
44                                       final AuthProvider authProvider) {
45
46         final LocalAddress localAddress = new LocalAddress(portNumber);
47
48         localServer = netconfServerDispatcher.createLocalServer(localAddress);
49         sshProxyServer = new SshProxyServer(Executors.newScheduledThreadPool(1), workerGroup, eventExecutor);
50
51         final InetSocketAddress inetAddress = getInetAddress(bindingAddress, portNumber);
52         final SshProxyServerConfigurationBuilder sshProxyServerConfigurationBuilder =
53                 new SshProxyServerConfigurationBuilder();
54         sshProxyServerConfigurationBuilder.setBindingAddress(inetAddress);
55         sshProxyServerConfigurationBuilder.setLocalAddress(localAddress);
56         sshProxyServerConfigurationBuilder.setAuthenticator(authProvider);
57         sshProxyServerConfigurationBuilder.setIdleTimeout(Integer.MAX_VALUE);
58         sshProxyServerConfigurationBuilder.setKeyPairProvider(new PEMGeneratorHostKeyProvider(DEFAULT_PRIVATE_KEY_PATH,
59                 DEFAULT_ALGORITHM, DEFAULT_KEY_SIZE));
60
61         localServer.addListener(future -> {
62             if (future.isDone() && !future.isCancelled()) {
63                 try {
64                     sshProxyServer.bind(sshProxyServerConfigurationBuilder.createSshProxyServerConfiguration());
65                     LOG.info("Netconf SSH endpoint started successfully at {}", bindingAddress);
66                 } catch (final IOException e) {
67                     throw new RuntimeException("Unable to start SSH netconf server", e);
68                 }
69             } else {
70                 LOG.warn("Unable to start SSH netconf server at {}", bindingAddress, future.cause());
71                 throw new RuntimeException("Unable to start SSH netconf server", future.cause());
72             }
73         });
74     }
75
76     private static InetSocketAddress getInetAddress(final String bindingAddress, final String portNumber) {
77         IpAddress ipAddress = IpAddressBuilder.getDefaultInstance(bindingAddress);
78         final InetAddress inetAd = IetfInetUtil.INSTANCE.inetAddressFor(ipAddress);
79         return new InetSocketAddress(inetAd, Integer.parseInt(portNumber));
80     }
81
82     public void close() {
83         sshProxyServer.close();
84
85         if (localServer.isDone()) {
86             localServer.channel().close();
87         } else {
88             localServer.cancel(true);
89         }
90     }
91 }