Line data Source code
1 : /*
2 : * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3 : */
4 :
5 : #include "bgp/evpn/evpn_table.h"
6 :
7 : #include "bgp/ipeer.h"
8 : #include "bgp/bgp_factory.h"
9 : #include "bgp/bgp_evpn.h"
10 : #include "bgp/bgp_server.h"
11 : #include "bgp/bgp_update.h"
12 : #include "bgp/inet/inet_table.h"
13 : #include "bgp/inet6/inet6_table.h"
14 : #include "bgp/origin-vn/origin_vn.h"
15 : #include "bgp/routing-instance/path_resolver.h"
16 : #include "bgp/routing-instance/routing_instance.h"
17 :
18 : using std::unique_ptr;
19 : using std::string;
20 :
21 1501805 : size_t EvpnTable::HashFunction(const EvpnPrefix &prefix) {
22 1501805 : if (prefix.type() == EvpnPrefix::MacAdvertisementRoute) {
23 938334 : if (prefix.mac_addr().IsBroadcast())
24 116899 : return 0;
25 821405 : const uint8_t *data = prefix.mac_addr().GetData();
26 821389 : uint32_t value = get_value(data + 2, 4);
27 821395 : return boost::hash_value(value);
28 : }
29 563462 : if (prefix.type() == EvpnPrefix::IpPrefixRoute) {
30 381083 : if (prefix.ip_address().is_v4()) {
31 197952 : return InetTable::HashFunction(prefix.inet_prefix());
32 : } else {
33 182940 : return Inet6Table::HashFunction(prefix.inet6_prefix());
34 : }
35 : }
36 182347 : return 0;
37 : }
38 :
39 51133 : EvpnTable::EvpnTable(DB *db, const string &name)
40 51133 : : BgpTable(db, name), evpn_manager_(NULL) {
41 51133 : mac_route_count_ = 0;
42 51133 : unique_mac_route_count_ = 0;
43 51133 : im_route_count_ = 0;
44 51133 : ip_route_count_ = 0;
45 51133 : }
46 :
47 131172 : unique_ptr<DBEntry> EvpnTable::AllocEntry(
48 : const DBRequestKey *key) const {
49 131172 : const RequestKey *pfxkey = static_cast<const RequestKey *>(key);
50 131172 : return unique_ptr<DBEntry> (new EvpnRoute(pfxkey->prefix));
51 : }
52 :
53 22 : unique_ptr<DBEntry> EvpnTable::AllocEntryStr(
54 : const string &key_str) const {
55 22 : EvpnPrefix prefix = EvpnPrefix::FromString(key_str);
56 44 : return unique_ptr<DBEntry> (new EvpnRoute(prefix));
57 : }
58 :
59 163419 : void EvpnTable::AddRemoveCallback(const DBEntryBase *entry, bool add) const {
60 163419 : if (IsVpnTable())
61 87234 : return;
62 76133 : const EvpnRoute *evpn_rt = static_cast<const EvpnRoute *>(entry);
63 76133 : const EvpnPrefix &evpn_prefix = evpn_rt->GetPrefix();
64 76163 : switch (evpn_prefix.type()) {
65 14927 : case EvpnPrefix::MacAdvertisementRoute:
66 : // Ignore Broadcast MAC routes.
67 14927 : if (evpn_prefix.mac_addr().IsBroadcast())
68 4302 : break;
69 :
70 10625 : if (add) {
71 5313 : mac_route_count_++;
72 : } else {
73 5312 : mac_route_count_--;
74 : }
75 :
76 : // Ignore MAC routes with IP addresses.
77 10629 : if (evpn_prefix.family() != Address::UNSPEC)
78 3450 : break;
79 :
80 7176 : if (add) {
81 3588 : unique_mac_route_count_++;
82 : } else {
83 3588 : unique_mac_route_count_--;
84 : }
85 7176 : break;
86 :
87 8964 : case EvpnPrefix::InclusiveMulticastRoute:
88 8964 : if (add) {
89 4482 : im_route_count_++;
90 : } else {
91 4482 : im_route_count_--;
92 : }
93 8964 : break;
94 :
95 50923 : case EvpnPrefix::IpPrefixRoute:
96 50923 : if (add) {
97 25498 : ip_route_count_++;
98 : } else {
99 25425 : ip_route_count_--;
100 : }
101 51006 : break;
102 :
103 1344 : default:
104 1344 : break;
105 : }
106 : }
107 :
108 112506 : size_t EvpnTable::Hash(const DBRequestKey *key) const {
109 112506 : const RequestKey *rkey = static_cast<const RequestKey *>(key);
110 112506 : size_t value = HashFunction(rkey->prefix);
111 112504 : return value % DB::PartitionCount();
112 : }
113 :
114 1389448 : size_t EvpnTable::Hash(const DBEntry *entry) const {
115 1389448 : const EvpnRoute *rt_entry = static_cast<const EvpnRoute *>(entry);
116 1389448 : size_t value = HashFunction(rt_entry->GetPrefix());
117 1388958 : return value % DB::PartitionCount();
118 : }
119 :
120 69829 : BgpRoute *EvpnTable::TableFind(DBTablePartition *rtp,
121 : const DBRequestKey *prefix) {
122 69829 : const RequestKey *pfxkey = static_cast<const RequestKey *>(prefix);
123 69829 : EvpnRoute rt_key(pfxkey->prefix);
124 139649 : return static_cast<BgpRoute *>(rtp->Find(&rt_key));
125 69914 : }
126 :
127 42900 : PathResolver *EvpnTable::CreatePathResolver() {
128 42900 : if (routing_instance()->IsMasterRoutingInstance())
129 0 : return NULL;
130 42906 : return (new PathResolver(this));
131 : }
132 :
133 51133 : DBTableBase *EvpnTable::CreateTable(DB *db, const string &name) {
134 51133 : EvpnTable *table = new EvpnTable(db, name);
135 51133 : table->Init();
136 51133 : return table;
137 : }
138 :
139 : // Find the route.
140 1176 : EvpnRoute *EvpnTable::FindRoute(const EvpnPrefix &prefix) {
141 1176 : EvpnRoute rt_key(prefix);
142 : DBTablePartition *rtp = static_cast<DBTablePartition *>(
143 1176 : GetTablePartition(&rt_key));
144 2352 : return dynamic_cast<EvpnRoute *>(rtp->Find(&rt_key));
145 1176 : }
146 :
147 0 : const EvpnRoute *EvpnTable::FindRoute(const EvpnPrefix &prefix) const {
148 0 : EvpnRoute rt_key(prefix);
149 : const DBTablePartition *rtp = static_cast<const DBTablePartition *>(
150 0 : GetTablePartition(&rt_key));
151 0 : return dynamic_cast<const EvpnRoute *>(rtp->Find(&rt_key));
152 0 : }
153 :
154 198670 : bool EvpnTable::ShouldReplicate(const BgpServer *server,
155 : const BgpTable *src_table,
156 : const ExtCommunityPtr community,
157 : const EvpnPrefix &evpn_prefix) const {
158 : // Always replicate into master table.
159 198670 : if (IsMaster())
160 66470 : return true;
161 :
162 : // Always replicate Type-5 routes.
163 132199 : if (evpn_prefix.type() == EvpnPrefix::IpPrefixRoute)
164 17594 : return true;
165 :
166 : // Don't replicate to a VRF from other VRF tables.
167 : const EvpnTable *src_evpn_table =
168 114610 : dynamic_cast<const EvpnTable *>(src_table);
169 114610 : if (!src_evpn_table->IsMaster())
170 19471 : return false;
171 :
172 : // Replicate to VRF from the VPN table if OriginVn matches.
173 190278 : if (community->ContainsOriginVn(server->autonomous_system(),
174 95139 : routing_instance()->virtual_network_index())) {
175 3732 : return true;
176 : }
177 :
178 : // Do not replicate non AD routes as the OriginVN does not match.
179 91406 : if (evpn_prefix.type() != EvpnPrefix::AutoDiscoveryRoute)
180 91402 : return false;
181 :
182 4 : string es_target = server->autonomous_system() > 0xffFF ?
183 0 : integerToString(EVPN_ES_IMPORT_ROUTE_TARGET_AS4) :
184 4 : integerToString(EVPN_ES_IMPORT_ROUTE_TARGET_AS2);
185 :
186 : // Replicate if AD route target is associated with the route.
187 8 : RouteTarget rtarget = RouteTarget::FromString("target:" +
188 12 : integerToString(server->autonomous_system()) + ":" + es_target);
189 4 : if (community->ContainsRTarget(rtarget.GetExtCommunity()))
190 4 : return true;
191 0 : return false;
192 4 : }
193 :
194 198674 : BgpRoute *EvpnTable::RouteReplicate(BgpServer *server,
195 : BgpTable *src_table, BgpRoute *src_rt, const BgpPath *src_path,
196 : ExtCommunityPtr community) {
197 198674 : assert(src_table->family() == Address::EVPN);
198 198671 : EvpnRoute *evpn_rt = dynamic_cast<EvpnRoute *>(src_rt);
199 198671 : assert(evpn_rt);
200 198671 : EvpnPrefix evpn_prefix(evpn_rt->GetPrefix());
201 :
202 : // Check if this evpn route should be replicated.
203 198658 : if (!ShouldReplicate(server, src_table, community, evpn_prefix))
204 110873 : return NULL;
205 87802 : if (evpn_prefix.type() == EvpnPrefix::AutoDiscoveryRoute) {
206 63 : if (IsMaster() || evpn_prefix.tag() != EvpnPrefix::kMaxTag)
207 59 : return NULL;
208 12 : community = server->extcomm_db()->ReplaceRTargetAndLocate(
209 12 : community.get(), ExtCommunity::ExtCommunityList());
210 : }
211 87738 : if (evpn_prefix.type() == EvpnPrefix::SegmentRoute)
212 3 : return NULL;
213 117313 : if (evpn_prefix.type() == EvpnPrefix::MacAdvertisementRoute &&
214 29581 : evpn_prefix.mac_addr().IsBroadcast())
215 19942 : return NULL;
216 :
217 67789 : BgpAttrDB *attr_db = server->attr_db();
218 67790 : BgpAttrPtr new_attr(src_path->GetAttr());
219 :
220 67801 : if (IsMaster()) {
221 46473 : if (evpn_prefix.route_distinguisher().IsZero()) {
222 24891 : if (new_attr->sub_protocol() == "bgpaas") {
223 1185 : boost::system::error_code ec;
224 : Ip4Address addr =
225 1185 : Ip4Address::from_string(src_path->GetPeer()->ToString(), ec);
226 1185 : if ((ec.value() != 0)) {
227 0 : evpn_prefix.set_route_distinguisher(new_attr->source_rd());
228 : } else {
229 : RouteDistinguisher new_source_rd =
230 1185 : RouteDistinguisher(addr.to_ulong(), 0);
231 1185 : evpn_prefix.set_route_distinguisher(new_source_rd);
232 : }
233 : } else {
234 23705 : evpn_prefix.set_route_distinguisher(new_attr->source_rd());
235 : }
236 : }
237 : } else {
238 42647 : if (evpn_prefix.type() == EvpnPrefix::AutoDiscoveryRoute ||
239 42647 : evpn_prefix.type() == EvpnPrefix::MacAdvertisementRoute ||
240 19698 : evpn_prefix.type() == EvpnPrefix::IpPrefixRoute) {
241 19220 : evpn_prefix.set_route_distinguisher(RouteDistinguisher::kZeroRd);
242 : }
243 : }
244 67793 : EvpnRoute rt_key(evpn_prefix);
245 :
246 : // Find or create the route.
247 : DBTablePartition *rtp =
248 67775 : static_cast<DBTablePartition *>(GetTablePartition(&rt_key));
249 67755 : BgpRoute *dest_route = static_cast<BgpRoute *>(rtp->Find(&rt_key));
250 67793 : if (dest_route == NULL) {
251 34698 : dest_route = new EvpnRoute(evpn_prefix);
252 34673 : rtp->Add(dest_route);
253 : } else {
254 33095 : dest_route->ClearDelete();
255 : }
256 :
257 67785 : new_attr = attr_db->ReplaceExtCommunityAndLocate(new_attr.get(), community);
258 :
259 : // Check whether peer already has a path
260 67801 : BgpPath *dest_path = dest_route->FindSecondaryPath(src_rt,
261 : src_path->GetSource(), src_path->GetPeer(),
262 : src_path->GetPathId());
263 67799 : if (dest_path != NULL) {
264 53121 : if ((new_attr != dest_path->GetOriginalAttr()) ||
265 44813 : (src_path->GetFlags() != dest_path->GetFlags()) ||
266 74267 : (src_path->GetLabel() != dest_path->GetLabel()) ||
267 21146 : (src_path->GetL3Label() != dest_path->GetL3Label())) {
268 8312 : if (dest_path->NeedsResolution()) {
269 0 : path_resolver()->StopPathResolution(rtp->index(), dest_path);
270 : }
271 8312 : bool success = dest_route->RemoveSecondaryPath(src_rt,
272 : src_path->GetSource(), src_path->GetPeer(),
273 : src_path->GetPathId());
274 8309 : assert(success);
275 : } else {
276 21142 : return dest_route;
277 : }
278 : }
279 :
280 : // Create replicated path and insert it on the route
281 : BgpSecondaryPath *replicated_path =
282 46654 : new BgpSecondaryPath(src_path->GetPeer(), src_path->GetPathId(),
283 46654 : src_path->GetSource(), new_attr,
284 46657 : src_path->GetFlags(), src_path->GetLabel(),
285 93310 : src_path->GetL3Label());
286 46658 : replicated_path->SetReplicateInfo(src_table, src_rt);
287 :
288 : // For VPN to VRF replication, start path resolution if fast convergence is
289 : // enabled and update path flag to indicate need for resolution.
290 46655 : if (!IsMaster() && server->IsNextHopCheckEnabled() &&
291 0 : (replicated_path->GetSource() == BgpPath::BGP_XMPP)) {
292 0 : Address::Family family = src_path->GetAttr()->nexthop_family();
293 0 : RoutingInstanceMgr *mgr = server->routing_instance_mgr();
294 0 : RoutingInstance *master_ri = mgr->GetDefaultRoutingInstance();
295 0 : BgpTable *table = master_ri->GetTable(family);
296 0 : replicated_path->SetResolveNextHop();
297 0 : path_resolver()->StartPathResolution(dest_route,
298 : replicated_path, table);
299 : }
300 :
301 46641 : dest_route->InsertPath(replicated_path);
302 :
303 : // Always trigger notification.
304 46652 : rtp->Notify(dest_route);
305 :
306 46655 : return dest_route;
307 67797 : }
308 :
309 78652 : bool EvpnTable::Export(RibOut *ribout, Route *route,
310 : const RibPeerSet &peerset, UpdateInfoSList &uinfo_slist) {
311 78652 : EvpnRoute *evpn_route = dynamic_cast<EvpnRoute *>(route);
312 78652 : assert(evpn_route);
313 :
314 78652 : if (ribout->IsEncodingBgp()) {
315 63847 : UpdateInfo *uinfo = GetUpdateInfo(ribout, evpn_route, peerset);
316 63848 : if (!uinfo)
317 28732 : return false;
318 35116 : uinfo_slist->push_front(*uinfo);
319 35116 : return true;
320 : }
321 :
322 14805 : const EvpnPrefix &evpn_prefix = evpn_route->GetPrefix();
323 19128 : if (evpn_prefix.type() != EvpnPrefix::MacAdvertisementRoute &&
324 19128 : evpn_prefix.type() != EvpnPrefix::IpPrefixRoute &&
325 2554 : evpn_prefix.type() != EvpnPrefix::SelectiveMulticastRoute) {
326 2443 : return false;
327 : }
328 :
329 22537 : if (!evpn_prefix.mac_addr().IsBroadcast() &&
330 10175 : (evpn_prefix.type() != EvpnPrefix::SelectiveMulticastRoute)) {
331 10064 : UpdateInfo *uinfo = GetUpdateInfo(ribout, evpn_route, peerset);
332 10064 : if (!uinfo)
333 439 : return false;
334 9625 : uinfo_slist->push_front(*uinfo);
335 9625 : return true;
336 : }
337 :
338 2297 : if (!evpn_manager_ || evpn_manager_->deleter()->IsDeleted())
339 0 : return false;
340 :
341 2297 : const IPeer *peer = evpn_route->BestPath()->GetPeer();
342 2297 : if (!peer || !ribout->IsRegistered(const_cast<IPeer *>(peer)))
343 25 : return false;
344 :
345 2272 : size_t peerbit = ribout->GetPeerIndex(const_cast<IPeer *>(peer));
346 2272 : if (!peerset.test(peerbit))
347 229 : return false;
348 :
349 2043 : UpdateInfo *uinfo = evpn_manager_->GetUpdateInfo(evpn_route);
350 2043 : if (!uinfo)
351 261 : return false;
352 :
353 1782 : uinfo->target.set(peerbit);
354 1782 : uinfo_slist->push_front(*uinfo);
355 1782 : return true;
356 : }
357 :
358 51133 : void EvpnTable::CreateEvpnManager() {
359 51133 : if (IsVpnTable())
360 8227 : return;
361 42906 : assert(!evpn_manager_);
362 42906 : evpn_manager_ = BgpStaticObjectFactory::Create<EvpnManager>(this);
363 42906 : evpn_manager_->Initialize();
364 : }
365 :
366 42906 : void EvpnTable::DestroyEvpnManager() {
367 42906 : assert(evpn_manager_);
368 42906 : evpn_manager_->Terminate();
369 42906 : delete evpn_manager_;
370 42906 : evpn_manager_ = NULL;
371 42906 : }
372 :
373 164 : EvpnManager *EvpnTable::GetEvpnManager() {
374 164 : return evpn_manager_;
375 : }
376 :
377 393 : const EvpnManager *EvpnTable::GetEvpnManager() const {
378 393 : return evpn_manager_;
379 : }
380 :
381 51131 : void EvpnTable::set_routing_instance(RoutingInstance *rtinstance) {
382 51131 : BgpTable::set_routing_instance(rtinstance);
383 51133 : CreateEvpnManager();
384 51131 : }
385 :
386 1657577 : bool EvpnTable::IsMaster() const {
387 1657577 : return routing_instance()->IsMasterRoutingInstance();
388 : }
389 :
390 159 : static void RegisterFactory() {
391 159 : DB::RegisterFactory("evpn.0", &EvpnTable::CreateTable);
392 159 : }
393 :
394 : MODULE_INITIALIZER(RegisterFactory);
|