blob: 7629da7dbe219e8e3fc520cc30c0d9a0371faff9 [file] [log] [blame]
Thejaswi N K38879622015-12-08 22:14:47 +05301/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.provider.bgp.cfg.impl;
17
18import org.apache.felix.scr.annotations.Activate;
19import org.apache.felix.scr.annotations.Component;
20import org.apache.felix.scr.annotations.Deactivate;
21import org.apache.felix.scr.annotations.Reference;
22import org.apache.felix.scr.annotations.ReferenceCardinality;
Thejaswi N K38879622015-12-08 22:14:47 +053023
24import org.onosproject.bgp.controller.BgpCfg;
Thejaswi N K5ff45df2015-12-15 17:05:29 +053025import org.onosproject.bgp.controller.BgpPeerCfg;
Thejaswi N K38879622015-12-08 22:14:47 +053026import org.onosproject.core.ApplicationId;
27import org.onosproject.core.CoreService;
28import org.onosproject.net.config.ConfigFactory;
29import org.onosproject.net.config.NetworkConfigEvent;
30import org.onosproject.net.config.NetworkConfigListener;
31import org.onosproject.net.config.NetworkConfigRegistry;
32import org.onosproject.net.config.NetworkConfigService;
33import org.onosproject.net.config.basics.SubjectFactories;
34import org.onosproject.net.provider.AbstractProvider;
35import org.onosproject.net.provider.ProviderId;
36import org.onosproject.bgp.controller.BgpController;
37import org.slf4j.Logger;
38import org.osgi.service.component.ComponentContext;
39
Thejaswi N K5ff45df2015-12-15 17:05:29 +053040import java.util.ArrayList;
41import java.util.Iterator;
Thejaswi N K38879622015-12-08 22:14:47 +053042import java.util.List;
Thejaswi N K5ff45df2015-12-15 17:05:29 +053043import java.util.Map;
44import java.util.Set;
45import java.util.TreeMap;
Thejaswi N K38879622015-12-08 22:14:47 +053046
47import static org.slf4j.LoggerFactory.getLogger;
48
49/**
50 * BGP config provider to validate and populate the configuration.
51 */
52@Component(immediate = true)
Thejaswi N K38879622015-12-08 22:14:47 +053053public class BgpCfgProvider extends AbstractProvider {
54
55 private static final Logger log = getLogger(BgpCfgProvider.class);
56
57 static final String PROVIDER_ID = "org.onosproject.provider.bgp.cfg";
58
59 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
60 protected BgpController bgpController;
61
62 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
63 protected CoreService coreService;
64
65 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
66 protected NetworkConfigRegistry configRegistry;
67
68 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
69 protected NetworkConfigService configService;
70
71 private final ConfigFactory configFactory =
72 new ConfigFactory(SubjectFactories.APP_SUBJECT_FACTORY, BgpAppConfig.class, "bgpapp") {
73 @Override
74 public BgpAppConfig createConfig() {
75 return new BgpAppConfig();
76 }
77 };
78
79 private final NetworkConfigListener configListener = new InternalConfigListener();
80
81 private ApplicationId appId;
82
83 /**
84 * Creates a Bgp config provider.
85 */
86 public BgpCfgProvider() {
87 super(new ProviderId("bgp", PROVIDER_ID));
88 }
89
90 @Activate
91 public void activate(ComponentContext context) {
92 appId = coreService.registerApplication(PROVIDER_ID);
93 configService.addListener(configListener);
94 configRegistry.registerConfigFactory(configFactory);
Thejaswi N K5ff45df2015-12-15 17:05:29 +053095 readConfiguration();
Thejaswi N K38879622015-12-08 22:14:47 +053096 log.info("BGP cfg provider started");
97 }
98
99 @Deactivate
100 public void deactivate(ComponentContext context) {
101 configRegistry.unregisterConfigFactory(configFactory);
102 configService.removeListener(configListener);
103 }
104
105 void setBgpController(BgpController bgpController) {
106 this.bgpController = bgpController;
107 }
108
109 /**
110 * Reads the configuration and set it to the BGP-LS south bound protocol.
Thejaswi N K38879622015-12-08 22:14:47 +0530111 */
112 private void readConfiguration() {
113 BgpCfg bgpConfig = null;
114 List<BgpAppConfig.BgpPeerConfig> nodes;
115 bgpConfig = bgpController.getConfig();
116 BgpAppConfig config = configRegistry.getConfig(appId, BgpAppConfig.class);
117
118 if (config == null) {
119 log.warn("No configuration found");
120 return;
121 }
122
123 /*Set the configuration */
124 bgpConfig.setRouterId(config.routerId());
125 bgpConfig.setAsNumber(config.localAs());
126 bgpConfig.setLsCapability(config.lsCapability());
127 bgpConfig.setHoldTime(config.holdTime());
128 bgpConfig.setMaxSession(config.maxSession());
129 bgpConfig.setLargeASCapability(config.largeAsCapability());
130
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530131 if (config.flowSpecCapability().equals("IPV4")) {
132 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
133 } else if (config.flowSpecCapability().equals("VPNV4")) {
134 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
135 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
136 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
137 } else {
138 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
139 }
140
Thejaswi N K38879622015-12-08 22:14:47 +0530141 nodes = config.bgpPeer();
142 for (int i = 0; i < nodes.size(); i++) {
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530143 String connectMode = nodes.get(i).connectMode();
Thejaswi N K38879622015-12-08 22:14:47 +0530144 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530145 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
146 bgpConfig.connectPeer(nodes.get(i).hostname());
147 }
Thejaswi N K38879622015-12-08 22:14:47 +0530148 }
149 }
150
151 /**
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530152 * Read the configuration and update it to the BGP-LS south bound protocol.
153 */
154 private void updateConfiguration() {
155 BgpCfg bgpConfig = null;
156 List<BgpAppConfig.BgpPeerConfig> nodes;
157 TreeMap<String, BgpPeerCfg> bgpPeerTree;
158 bgpConfig = bgpController.getConfig();
159 BgpPeerCfg peer = null;
160 BgpAppConfig config = configRegistry.getConfig(appId, BgpAppConfig.class);
161
162 if (config == null) {
163 log.warn("No configuration found");
164 return;
165 }
166
167
168 /* Update the self configuration */
169 if (bgpController.connectedPeerCount() == 0) {
170 bgpConfig.setRouterId(config.routerId());
171 bgpConfig.setAsNumber(config.localAs());
172 bgpConfig.setLsCapability(config.lsCapability());
173 bgpConfig.setHoldTime(config.holdTime());
174 bgpConfig.setMaxSession(config.maxSession());
175 bgpConfig.setLargeASCapability(config.largeAsCapability());
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530176
177 if (config.flowSpecCapability().equals("IPV4")) {
178 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
179 } else if (config.flowSpecCapability().equals("VPNV4")) {
180 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
181 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
182 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
183 } else {
184 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
185 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530186 } else {
187 log.info(" Self configuration cannot be modified as there is existing connections ");
188 }
189
190 /* update the peer configuration */
191 bgpPeerTree = bgpConfig.getPeerTree();
192 if (bgpPeerTree.isEmpty()) {
193 log.info("There are no BGP peers to iterate");
194 } else {
195 Set set = bgpPeerTree.entrySet();
196 Iterator i = set.iterator();
197 List<BgpPeerCfg> absPeerList = new ArrayList<BgpPeerCfg>();
198
199 boolean exists = false;
200
201 while (i.hasNext()) {
202 Map.Entry me = (Map.Entry) i.next();
203 peer = (BgpPeerCfg) me.getValue();
204
205 nodes = config.bgpPeer();
206 for (int j = 0; j < nodes.size(); j++) {
207 String peerIp = nodes.get(j).hostname();
208 if (peerIp.equals(peer.getPeerRouterId())) {
209
210 if (bgpConfig.isPeerConnectable(peer.getPeerRouterId())) {
211 peer.setAsNumber(nodes.get(j).asNumber());
212 peer.setHoldtime(nodes.get(j).holdTime());
213 log.debug("Peer neighbor IP successfully modified :" + peer.getPeerRouterId());
214 } else {
215 log.debug("Peer neighbor IP cannot be modified :" + peer.getPeerRouterId());
216 }
217
218 nodes.remove(j);
219 exists = true;
220 break;
221 }
222 }
223
224 if (!exists) {
225 absPeerList.add(peer);
226 exists = false;
227 }
228 }
229
230 /* Remove the absent nodes. */
231 for (int j = 0; j < absPeerList.size(); j++) {
232 bgpConfig.removePeer(absPeerList.get(j).getPeerRouterId());
233 }
234 }
235
236
237 nodes = config.bgpPeer();
238 for (int i = 0; i < nodes.size(); i++) {
239 String connectMode = nodes.get(i).connectMode();
240 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
241 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
242 bgpConfig.connectPeer(nodes.get(i).hostname());
243 }
244 }
245
246 }
247
248 /**
Thejaswi N K38879622015-12-08 22:14:47 +0530249 * BGP config listener to populate the configuration.
250 */
251 private class InternalConfigListener implements NetworkConfigListener {
252
253 @Override
254 public void event(NetworkConfigEvent event) {
255 if (!event.configClass().equals(BgpAppConfig.class)) {
256 return;
257 }
258
259 switch (event.type()) {
260 case CONFIG_ADDED:
261 readConfiguration();
262 break;
263 case CONFIG_UPDATED:
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530264 updateConfiguration();
Thejaswi N K38879622015-12-08 22:14:47 +0530265 break;
266 case CONFIG_REMOVED:
267 default:
268 break;
269 }
270 }
271 }
272}