/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.netconf.tcp.osgi; import com.google.common.base.Optional; import java.net.InetSocketAddress; import org.opendaylight.controller.netconf.tcp.netty.ProxyServer; import org.opendaylight.controller.netconf.util.osgi.NetconfConfigUtil; import org.opendaylight.controller.netconf.util.osgi.NetconfConfigUtil.InfixProp; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Opens TCP port specified in config.ini, creates bridge between this port and local netconf server. */ public class NetconfTCPActivator implements BundleActivator { private static final Logger logger = LoggerFactory.getLogger(NetconfTCPActivator.class); private ProxyServer proxyServer; @Override public void start(BundleContext context) { final Optional maybeAddress = NetconfConfigUtil.extractNetconfServerAddress(context, InfixProp.tcp); if (maybeAddress.isPresent() == false) { logger.debug("Netconf tcp server is not configured to start"); return; } InetSocketAddress address = maybeAddress.get(); if (address.getAddress().isAnyLocalAddress()) { logger.warn("Unprotected netconf TCP address is configured to ANY local address. This is a security risk. " + "Consider changing {} to 127.0.0.1", NetconfConfigUtil.getNetconfServerAddressKey(InfixProp.tcp)); } logger.info("Starting TCP netconf server at {}", address); proxyServer = new ProxyServer(address, NetconfConfigUtil.getNetconfLocalAddress()); } @Override public void stop(BundleContext context) { if (proxyServer != null) { proxyServer.close(); } } }