blob: 65c62089ceff7e7f7310eca7c3fdebcf799e9a86 [file] [log] [blame]
Thejaswi N K38879622015-12-08 22:14:47 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
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
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
Ray Milkey3188c9b2016-09-12 11:51:07 -0700131 if (config.flowSpecCapability() == null) {
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530132 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
Ray Milkey3188c9b2016-09-12 11:51:07 -0700133 } else {
134 if (config.flowSpecCapability().equals("IPV4")) {
135 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
136 } else if (config.flowSpecCapability().equals("VPNV4")) {
137 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
138 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
139 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
140 } else {
141 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
142 }
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530143 }
Shashikanth VHb650bfa2016-04-18 12:54:03 +0530144 bgpConfig.setFlowSpecRpdCapability(config.rpdCapability());
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530145
Thejaswi N K38879622015-12-08 22:14:47 +0530146 nodes = config.bgpPeer();
147 for (int i = 0; i < nodes.size(); i++) {
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530148 String connectMode = nodes.get(i).connectMode();
Thejaswi N K38879622015-12-08 22:14:47 +0530149 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
Thejaswi N K0008f1d2015-12-11 12:47:41 +0530150 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
151 bgpConfig.connectPeer(nodes.get(i).hostname());
152 }
Thejaswi N K38879622015-12-08 22:14:47 +0530153 }
154 }
155
156 /**
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530157 * Read the configuration and update it to the BGP-LS south bound protocol.
158 */
159 private void updateConfiguration() {
160 BgpCfg bgpConfig = null;
161 List<BgpAppConfig.BgpPeerConfig> nodes;
162 TreeMap<String, BgpPeerCfg> bgpPeerTree;
163 bgpConfig = bgpController.getConfig();
164 BgpPeerCfg peer = null;
165 BgpAppConfig config = configRegistry.getConfig(appId, BgpAppConfig.class);
166
167 if (config == null) {
168 log.warn("No configuration found");
169 return;
170 }
171
172
173 /* Update the self configuration */
Shashikanth VHde663832016-04-25 18:42:04 +0530174 if (bgpController.connectedPeerCount() != 0) {
175 //TODO: If connections already exist, disconnect
176 bgpController.closeConnectedPeers();
177 }
178 bgpConfig.setRouterId(config.routerId());
179 bgpConfig.setAsNumber(config.localAs());
180 bgpConfig.setLsCapability(config.lsCapability());
181 bgpConfig.setHoldTime(config.holdTime());
182 bgpConfig.setMaxSession(config.maxSession());
183 bgpConfig.setLargeASCapability(config.largeAsCapability());
Shashikanth VH580bdeb2016-02-19 17:26:03 +0530184
Ray Milkey3188c9b2016-09-12 11:51:07 -0700185 if (config.flowSpecCapability() == null) {
Shashikanth VHde663832016-04-25 18:42:04 +0530186 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
Ray Milkey3188c9b2016-09-12 11:51:07 -0700187 } else {
188 if (config.flowSpecCapability().equals("IPV4")) {
189 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4);
190 } else if (config.flowSpecCapability().equals("VPNV4")) {
191 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.VPNV4);
192 } else if (config.flowSpecCapability().equals("IPV4_VPNV4")) {
193 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.IPV4_VPNV4);
194 } else {
195 bgpConfig.setFlowSpecCapability(BgpCfg.FlowSpec.NONE);
196 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530197 }
Shashikanth VHb650bfa2016-04-18 12:54:03 +0530198 bgpConfig.setFlowSpecRpdCapability(config.rpdCapability());
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530199
200 /* update the peer configuration */
201 bgpPeerTree = bgpConfig.getPeerTree();
202 if (bgpPeerTree.isEmpty()) {
203 log.info("There are no BGP peers to iterate");
204 } else {
205 Set set = bgpPeerTree.entrySet();
206 Iterator i = set.iterator();
207 List<BgpPeerCfg> absPeerList = new ArrayList<BgpPeerCfg>();
208
209 boolean exists = false;
210
211 while (i.hasNext()) {
212 Map.Entry me = (Map.Entry) i.next();
213 peer = (BgpPeerCfg) me.getValue();
214
215 nodes = config.bgpPeer();
216 for (int j = 0; j < nodes.size(); j++) {
217 String peerIp = nodes.get(j).hostname();
218 if (peerIp.equals(peer.getPeerRouterId())) {
219
220 if (bgpConfig.isPeerConnectable(peer.getPeerRouterId())) {
221 peer.setAsNumber(nodes.get(j).asNumber());
222 peer.setHoldtime(nodes.get(j).holdTime());
223 log.debug("Peer neighbor IP successfully modified :" + peer.getPeerRouterId());
224 } else {
225 log.debug("Peer neighbor IP cannot be modified :" + peer.getPeerRouterId());
226 }
227
228 nodes.remove(j);
229 exists = true;
230 break;
231 }
232 }
233
234 if (!exists) {
235 absPeerList.add(peer);
236 exists = false;
237 }
Shashikanth VHde663832016-04-25 18:42:04 +0530238
239 if (peer.connectPeer() != null) {
240 peer.connectPeer().disconnectPeer();
241 peer.setConnectPeer(null);
242 }
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530243 }
244
245 /* Remove the absent nodes. */
246 for (int j = 0; j < absPeerList.size(); j++) {
247 bgpConfig.removePeer(absPeerList.get(j).getPeerRouterId());
248 }
249 }
250
251
252 nodes = config.bgpPeer();
253 for (int i = 0; i < nodes.size(); i++) {
254 String connectMode = nodes.get(i).connectMode();
255 bgpConfig.addPeer(nodes.get(i).hostname(), nodes.get(i).asNumber(), nodes.get(i).holdTime());
256 if (connectMode.equals(BgpAppConfig.PEER_CONNECT_ACTIVE)) {
257 bgpConfig.connectPeer(nodes.get(i).hostname());
258 }
259 }
260
261 }
262
263 /**
Thejaswi N K38879622015-12-08 22:14:47 +0530264 * BGP config listener to populate the configuration.
265 */
266 private class InternalConfigListener implements NetworkConfigListener {
267
268 @Override
269 public void event(NetworkConfigEvent event) {
270 if (!event.configClass().equals(BgpAppConfig.class)) {
271 return;
272 }
273
274 switch (event.type()) {
275 case CONFIG_ADDED:
276 readConfiguration();
277 break;
278 case CONFIG_UPDATED:
Thejaswi N K5ff45df2015-12-15 17:05:29 +0530279 updateConfiguration();
Thejaswi N K38879622015-12-08 22:14:47 +0530280 break;
281 case CONFIG_REMOVED:
282 default:
283 break;
284 }
285 }
286 }
287}