/* * Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. 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.vpnservice; import java.math.BigInteger; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; import org.opendaylight.bgpmanager.api.IBgpManager; import org.opendaylight.controller.md.sal.binding.api.DataBroker; import org.opendaylight.controller.md.sal.binding.api.NotificationService; import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.ProviderContext; import org.opendaylight.controller.sal.binding.api.BindingAwareProvider; import org.opendaylight.fibmanager.api.IFibManager; import org.opendaylight.vpnmanager.api.IVpnManager; import org.opendaylight.yang.gen.v1.urn.opendaylight.packet.service.rev130709.PacketProcessingService; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.itm.rpcs.rev151217.ItmRpcService; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.interfacemgr.rpcs.rev151003.OdlInterfaceRpcService; import org.opendaylight.vpnservice.mdsalutil.interfaces.IMdsalApiManager; import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.arputil.rev151126.OdlArputilService; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.idmanager.rev150403.CreateIdPoolInput; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.idmanager.rev150403.CreateIdPoolInputBuilder; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.idmanager.rev150403.IdManagerService; import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.neutronvpn.rev150602.NeutronvpnService; import org.opendaylight.yangtools.yang.common.RpcResult; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class VpnserviceProvider implements BindingAwareProvider, IVpnManager, AutoCloseable { private static final Logger LOG = LoggerFactory.getLogger(VpnserviceProvider.class); private VpnInterfaceManager vpnInterfaceManager; private VpnManager vpnManager; private IBgpManager bgpManager; private IFibManager fibManager; private IMdsalApiManager mdsalManager; private OdlInterfaceRpcService interfaceManager; private ItmRpcService itmProvider; private IdManagerService idManager; private OdlArputilService arpManager; private NeutronvpnService neuService; private PacketProcessingService m_packetProcessingService; private SubnetRoutePacketInHandler subnetRoutePacketInHandler; private NotificationService notificationService; @Override public void onSessionInitiated(ProviderContext session) { LOG.info("VpnserviceProvider Session Initiated"); try { final DataBroker dataBroker = session.getSALService(DataBroker.class); vpnManager = new VpnManager(dataBroker, bgpManager); vpnManager.setIdManager(idManager); vpnInterfaceManager = new VpnInterfaceManager(dataBroker, bgpManager, notificationService); vpnInterfaceManager.setMdsalManager(mdsalManager); vpnInterfaceManager.setInterfaceManager(interfaceManager); vpnInterfaceManager.setITMProvider(itmProvider); vpnInterfaceManager.setIdManager(idManager); vpnInterfaceManager.setArpManager(arpManager); vpnInterfaceManager.setNeutronvpnManager(neuService); //Handles subnet route entries subnetRoutePacketInHandler = new SubnetRoutePacketInHandler(dataBroker, idManager); m_packetProcessingService = session.getRpcService(PacketProcessingService.class); subnetRoutePacketInHandler.setPacketProcessingService(m_packetProcessingService); notificationService.registerNotificationListener(subnetRoutePacketInHandler); vpnManager.setVpnInterfaceManager(vpnInterfaceManager); createIdPool(); RouterInterfaceListener routerListener = new RouterInterfaceListener(dataBroker); routerListener.setVpnInterfaceManager(vpnInterfaceManager); } catch (Exception e) { LOG.error("Error initializing services", e); } } public void setNotificationService(NotificationService notificationService) { this.notificationService = notificationService; } public void setBgpManager(IBgpManager bgpManager) { LOG.debug("BGP Manager reference initialized"); this.bgpManager = bgpManager; } public void setMdsalManager(IMdsalApiManager mdsalManager) { this.mdsalManager = mdsalManager; } public void setInterfaceManager(OdlInterfaceRpcService interfaceManager) { this.interfaceManager = interfaceManager; } public void setITMProvider(ItmRpcService itmProvider) { this.itmProvider = itmProvider; } public void setIdManager(IdManagerService idManager) { this.idManager = idManager; } public void setArpManager(OdlArputilService arpManager) { this.arpManager = arpManager; } private void createIdPool() { CreateIdPoolInput createPool = new CreateIdPoolInputBuilder() .setPoolName(VpnConstants.VPN_IDPOOL_NAME) .setLow(VpnConstants.VPN_IDPOOL_START) .setHigh(new BigInteger(VpnConstants.VPN_IDPOOL_SIZE).longValue()) .build(); try { Future> result = idManager.createIdPool(createPool); if ((result != null) && (result.get().isSuccessful())) { LOG.debug("Created IdPool for VPN Service"); } } catch (InterruptedException | ExecutionException e) { LOG.error("Failed to create idPool for VPN Service",e); } } @Override public void close() throws Exception { vpnManager.close(); vpnInterfaceManager.close(); } @Override public void setFibService(IFibManager fibManager) { LOG.debug("Fib service reference is initialized in VPN Manager"); this.fibManager = fibManager; vpnInterfaceManager.setFibManager(fibManager); } @Override public void addExtraRoute(String destination, String nextHop, String rd, String routerID, int label) { LOG.info("Adding extra route with destination {} and nexthop {}", destination, nextHop); vpnInterfaceManager.addExtraRoute(destination, nextHop, rd, routerID, label, null); } @Override public void delExtraRoute(String destination, String rd, String routerID) { LOG.info("Deleting extra route with destination {}", destination); vpnInterfaceManager.delExtraRoute(destination, rd, routerID); } }