blob: d9268d84d85ca7a8aa6e9310f03a7dda657e80ce [file] [log] [blame]
Thejaswi N K38879622015-12-08 22:14:47 +05301/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Thejaswi N K38879622015-12-08 22:14:47 +05303 *
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
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.osgi.service.component.annotations.Activate;
19import org.osgi.service.component.annotations.Component;
20import org.osgi.service.component.annotations.Deactivate;
21import org.osgi.service.component.annotations.Reference;
22import org.osgi.service.component.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
Ray Milkeyd84f89b2018-08-17 14:54:17 -070059 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thejaswi N K38879622015-12-08 22:14:47 +053060 protected BgpController bgpController;
61
Ray Milkeyd84f89b2018-08-17 14:54:17 -070062 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thejaswi N K38879622015-12-08 22:14:47 +053063 protected CoreService coreService;
64
Ray Milkeyd84f89b2018-08-17 14:54:17 -070065 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thejaswi N K38879622015-12-08 22:14:47 +053066 protected NetworkConfigRegistry configRegistry;
67
Ray Milkeyd84f89b2018-08-17 14:54:17 -070068 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Thejaswi N K38879622015-12-08 22:14:47 +053069 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());
Mohammad Shahid30fedc52017-08-09 11:49:40 +0530130 bgpConfig.setEvpnCapability(config.evpnCapability());
Thejaswi N K38879622015-12-08 22:14:47 +0530131
Ray Milkey3188c9b2016-09-12 11:51:07 -0700132 if (config.flowSpecCapability() == null) {
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530133 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
Ray Milkey3188c9b2016-09-12 11:51:07 -0700134 } else {
135 if (config.flowSpecCapability().equals("IPV4")) {
136 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
137 } else if (config.flowSpecCapability().equals("VPNV4")) {
138 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
139 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
140 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
141 } else {
142 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
143 }
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530144 }
Shashikanth VHb650bfa2016-04-18 12:54:03 +0530145 bgpConfig.setFlowSpecRpdCapability(config.rpdCapability());
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530146
Thejaswi N K38879622015-12-08 22:14:47 +0530147 nodes = config.bgpPeer();
148 for (int i = 0; i < nodes.size(); i++) {
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530149 String connectMode = nodes.get(i).connectMode();
Thejaswi N K38879622015-12-08 22:14:47 +0530150 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530151 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
152 bgpConfig.connectPeer(nodes.get(i).hostname());
153 }
Thejaswi N K38879622015-12-08 22:14:47 +0530154 }
Ankur Aggarwalf363d1a2019-11-11 14:56:18 +0530155
156 bgpConfig.setConnectionType(getBgpConnectionTypeFromConfig(config));
Thejaswi N K38879622015-12-08 22:14:47 +0530157 }
158
159 /**
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530160 * Read the configuration and update it to the BGP-LS south bound protocol.
161 */
162 private void updateConfiguration() {
163 BgpCfg bgpConfig = null;
164 List<BgpAppConfig.BgpPeerConfig> nodes;
165 TreeMap<String, BgpPeerCfg> bgpPeerTree;
166 bgpConfig = bgpController.getConfig();
167 BgpPeerCfg peer = null;
168 BgpAppConfig config = configRegistry.getConfig(appId, BgpAppConfig.class);
169
170 if (config == null) {
171 log.warn("No configuration found");
172 return;
173 }
174
175
176 /* Update the self configuration */
Shashikanth VHde663832016-04-25 18:42:04 +0530177 if (bgpController.connectedPeerCount() != 0) {
178 //TODO: If connections already exist, disconnect
179 bgpController.closeConnectedPeers();
180 }
181 bgpConfig.setRouterId(config.routerId());
182 bgpConfig.setAsNumber(config.localAs());
183 bgpConfig.setLsCapability(config.lsCapability());
184 bgpConfig.setHoldTime(config.holdTime());
185 bgpConfig.setMaxSession(config.maxSession());
186 bgpConfig.setLargeASCapability(config.largeAsCapability());
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530187
Ray Milkey3188c9b2016-09-12 11:51:07 -0700188 if (config.flowSpecCapability() == null) {
Shashikanth VHde663832016-04-25 18:42:04 +0530189 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
Ray Milkey3188c9b2016-09-12 11:51:07 -0700190 } else {
191 if (config.flowSpecCapability().equals("IPV4")) {
192 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
193 } else if (config.flowSpecCapability().equals("VPNV4")) {
194 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
195 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
196 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
197 } else {
198 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
199 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530200 }
Shashikanth VHb650bfa2016-04-18 12:54:03 +0530201 bgpConfig.setFlowSpecRpdCapability(config.rpdCapability());
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530202
203 /* update the peer configuration */
204 bgpPeerTree = bgpConfig.getPeerTree();
205 if (bgpPeerTree.isEmpty()) {
206 log.info("There are no BGP peers to iterate");
207 } else {
208 Set set = bgpPeerTree.entrySet();
209 Iterator i = set.iterator();
210 List<BgpPeerCfg> absPeerList = new ArrayList<BgpPeerCfg>();
211
212 boolean exists = false;
213
214 while (i.hasNext()) {
215 Map.Entry me = (Map.Entry) i.next();
216 peer = (BgpPeerCfg) me.getValue();
217
218 nodes = config.bgpPeer();
219 for (int j = 0; j < nodes.size(); j++) {
220 String peerIp = nodes.get(j).hostname();
221 if (peerIp.equals(peer.getPeerRouterId())) {
222
223 if (bgpConfig.isPeerConnectable(peer.getPeerRouterId())) {
224 peer.setAsNumber(nodes.get(j).asNumber());
225 peer.setHoldtime(nodes.get(j).holdTime());
226 log.debug("Peer neighbor IP successfully modified :" + peer.getPeerRouterId());
227 } else {
228 log.debug("Peer neighbor IP cannot be modified :" + peer.getPeerRouterId());
229 }
230
231 nodes.remove(j);
232 exists = true;
233 break;
234 }
235 }
236
237 if (!exists) {
238 absPeerList.add(peer);
239 exists = false;
240 }
Shashikanth VHde663832016-04-25 18:42:04 +0530241
242 if (peer.connectPeer() != null) {
243 peer.connectPeer().disconnectPeer();
244 peer.setConnectPeer(null);
245 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530246 }
247
248 /* Remove the absent nodes. */
249 for (int j = 0; j < absPeerList.size(); j++) {
250 bgpConfig.removePeer(absPeerList.get(j).getPeerRouterId());
251 }
252 }
253
254
255 nodes = config.bgpPeer();
256 for (int i = 0; i < nodes.size(); i++) {
257 String connectMode = nodes.get(i).connectMode();
258 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
259 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
260 bgpConfig.connectPeer(nodes.get(i).hostname());
261 }
262 }
263
Ankur Aggarwalf363d1a2019-11-11 14:56:18 +0530264 bgpConfig.setConnectionType(getBgpConnectionTypeFromConfig(config));
265 }
266
267 /**
268 * Function to get Bgp Connection type from config.
269 * @param config The BgpAppConfig from which connection type is to be fetched
270 * @return Bgp connection type
271 */
272 private BgpCfg.ConnectionType getBgpConnectionTypeFromConfig(BgpAppConfig config) {
273 //config cannot be null here, because of the function call sequence
274
275 //But, let's put a sanity check for connectionType
276 if (null == config.connectionType()) {
277 //IPv4 is the default connection type
278 return BgpCfg.ConnectionType.IPV4;
279 }
280
281 if (config.connectionType().equals(BgpAppConfig.CONNECTION_TYPE_IPV4)) {
282 return BgpCfg.ConnectionType.IPV6;
283 } else if (config.connectionType().equals(BgpAppConfig.CONNECTION_TYPE_IPV4_AND_IPV6)) {
284 return BgpCfg.ConnectionType.IPV4_IPV6;
285 } else {
286 return BgpCfg.ConnectionType.IPV4;
287 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530288 }
289
290 /**
Thejaswi N K38879622015-12-08 22:14:47 +0530291 * BGP config listener to populate the configuration.
292 */
293 private class InternalConfigListener implements NetworkConfigListener {
294
295 @Override
296 public void event(NetworkConfigEvent event) {
297 if (!event.configClass().equals(BgpAppConfig.class)) {
298 return;
299 }
300
301 switch (event.type()) {
302 case CONFIG_ADDED:
303 readConfiguration();
304 break;
305 case CONFIG_UPDATED:
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530306 updateConfiguration();
Thejaswi N K38879622015-12-08 22:14:47 +0530307 break;
308 case CONFIG_REMOVED:
309 default:
310 break;
311 }
312 }
313 }
314}