Line data Source code
1 : /* 2 : * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #include "bgp/inet6/inet6_table.h" 6 : 7 : #include "bgp/bgp_server.h" 8 : #include "bgp/bgp_update.h" 9 : #include "bgp/inet6vpn/inet6vpn_route.h" 10 : #include "bgp/routing-instance/path_resolver.h" 11 : #include "bgp/routing-instance/routing_instance.h" 12 : 13 51130 : Inet6Table::Inet6Table(DB *db, const std::string &name) 14 51130 : : BgpTable(db, name) { 15 51131 : } 16 : 17 5018939 : size_t Inet6Table::HashFunction(const Inet6Prefix &prefix) { 18 5018939 : const Ip6Address::bytes_type &addr_bytes = prefix.ToBytes(); 19 10038063 : return boost::hash_range(addr_bytes.begin(), addr_bytes.end()); 20 : } 21 : 22 195349 : std::unique_ptr<DBEntry> Inet6Table::AllocEntry(const DBRequestKey *key) const { 23 195349 : const RequestKey *rkey = static_cast<const RequestKey *>(key); 24 195349 : return std::unique_ptr<DBEntry> (new Inet6Route(rkey->prefix)); 25 : } 26 : 27 20 : std::unique_ptr<DBEntry> Inet6Table::AllocEntryStr( 28 : const std::string &key_str) const { 29 20 : Inet6Prefix prefix = Inet6Prefix::FromString(key_str); 30 40 : return std::unique_ptr<DBEntry> (new Inet6Route(prefix)); 31 : } 32 : 33 3492131 : size_t Inet6Table::Hash(const DBEntry *entry) const { 34 3492131 : const Inet6Route *route = static_cast<const Inet6Route *>(entry); 35 3492131 : size_t value = HashFunction(route->GetPrefix()); 36 3491383 : return value % DB::PartitionCount(); 37 : } 38 : 39 38054 : size_t Inet6Table::Hash(const DBRequestKey *key) const { 40 38054 : const RequestKey *rkey = static_cast<const RequestKey *>(key); 41 38054 : size_t value = HashFunction(rkey->prefix); 42 38055 : return value % DB::PartitionCount(); 43 : } 44 : 45 26877 : BgpRoute *Inet6Table::TableFind(DBTablePartition *partition, 46 : const DBRequestKey *key) { 47 26877 : const RequestKey *rkey = static_cast<const RequestKey *>(key); 48 26877 : Inet6Route route(rkey->prefix); 49 53832 : return static_cast<BgpRoute *>(partition->Find(&route)); 50 26941 : } 51 : 52 51130 : DBTableBase *Inet6Table::CreateTable(DB *db, const std::string &name) { 53 51130 : Inet6Table *table = new Inet6Table(db, name); 54 51131 : table->Init(); 55 51130 : return table; 56 : } 57 : 58 287295 : BgpRoute *Inet6Table::RouteReplicate(BgpServer *server, BgpTable *src_table, 59 : BgpRoute *src_rt, const BgpPath *path, ExtCommunityPtr community) { 60 287295 : assert((src_table->family() == Address::INET6) || 61 : (src_table->family() == Address::INET6VPN)); 62 : 63 287298 : Inet6Route *source = dynamic_cast<Inet6Route *>(src_rt); 64 : 65 287298 : RouteDistinguisher rd; 66 : 67 287293 : boost::scoped_ptr<Inet6Prefix> prefix; 68 287287 : if (source) { 69 56393 : prefix.reset(new Inet6Prefix(source->GetPrefix().ip6_addr(), 70 28198 : source->GetPrefix().prefixlen())); 71 : } else { 72 259092 : Inet6VpnRoute *vpn_route = dynamic_cast<Inet6VpnRoute *> (src_rt); 73 259092 : assert(vpn_route); 74 259092 : rd = vpn_route->GetPrefix().route_distinguisher(); 75 518162 : prefix.reset(new Inet6Prefix(vpn_route->GetPrefix().addr(), 76 259083 : vpn_route->GetPrefix().prefixlen())); 77 : } 78 : 79 287265 : Inet6Route route(*prefix); 80 : DBTablePartition *partition = 81 287292 : static_cast<DBTablePartition *>(GetTablePartition(&route)); 82 287236 : BgpRoute *dest_route = static_cast<BgpRoute *>(partition->Find(&route)); 83 287291 : if (dest_route == NULL) { 84 167897 : dest_route = new Inet6Route(route.GetPrefix()); 85 167896 : partition->Add(dest_route); 86 : } else { 87 119394 : dest_route->ClearDelete(); 88 : } 89 : 90 : // Replace the extended community with the one provided. 91 287276 : BgpAttrDB *attr_db = server->attr_db(); 92 : BgpAttrPtr new_attr = attr_db->ReplaceExtCommunityAndLocate(path->GetAttr(), 93 287259 : community); 94 : 95 287298 : if (!source) { 96 259102 : new_attr = attr_db->ReplaceSourceRdAndLocate(new_attr.get(), rd); 97 : } 98 : 99 : // Check whether there's already a path with the given peer and path id. 100 : BgpPath *dest_path = 101 287302 : dest_route->FindSecondaryPath(src_rt, path->GetSource(), 102 : path->GetPeer(), path->GetPathId()); 103 287286 : if (dest_path != NULL) { 104 228749 : if ((new_attr != dest_path->GetOriginalAttr()) || 105 228744 : (path->GetFlags() != dest_path->GetFlags()) || 106 98477 : (path->GetLabel() != dest_path->GetLabel())) { 107 : // Update Attributes and notify (if needed) 108 18938 : if (dest_path->NeedsResolution()) { 109 0 : path_resolver()->StopPathResolution(partition->index(), 110 : dest_path); 111 : } 112 18938 : assert(dest_route->RemoveSecondaryPath(src_rt, path->GetSource(), 113 : path->GetPeer(), path->GetPathId())); 114 : } else { 115 98456 : return dest_route; 116 : } 117 : } 118 : 119 : BgpSecondaryPath *replicated_path = 120 188825 : new BgpSecondaryPath(path->GetPeer(), path->GetPathId(), 121 188825 : path->GetSource(), new_attr, path->GetFlags(), path->GetLabel()); 122 188836 : replicated_path->SetReplicateInfo(src_table, src_rt); 123 : 124 : // For VPN to VRF replication, start path resolution if fast convergence is 125 : // enabled and update path flag to indicate need for resolution. 126 188829 : if (!source && (server->IsNextHopCheckEnabled()) && 127 0 : (replicated_path->GetSource() == BgpPath::BGP_XMPP)) { 128 0 : Address::Family family = replicated_path->GetAttr()->nexthop_family(); 129 0 : RoutingInstanceMgr *mgr = server->routing_instance_mgr(); 130 0 : RoutingInstance *master_ri = mgr->GetDefaultRoutingInstance(); 131 0 : BgpTable *table = master_ri->GetTable(family); 132 0 : replicated_path->SetResolveNextHop(); 133 0 : path_resolver()->StartPathResolution(dest_route, replicated_path, 134 : table); 135 : } 136 : 137 188826 : dest_route->InsertPath(replicated_path); 138 : 139 : // Notify the route even if the best path may not have changed. For XMPP 140 : // peers, we support sending multiple ECMP next-hops for a single route. 141 : // 142 : // TODO(ananth): Can be optimized for changes that does not result in 143 : // any change to ECMP list 144 188829 : partition->Notify(dest_route); 145 : 146 188828 : return dest_route; 147 287284 : } 148 : 149 217411 : bool Inet6Table::Export(RibOut *ribout, Route *route, const RibPeerSet &peerset, 150 : UpdateInfoSList &uinfo_slist) { 151 217411 : BgpRoute *bgp_route = static_cast<BgpRoute *> (route); 152 217411 : UpdateInfo *uinfo = GetUpdateInfo(ribout, bgp_route, peerset); 153 217449 : if (!uinfo) { 154 4500 : return false; 155 : } 156 : 157 212949 : if (ribout->ExportPolicy().encoding == RibExportPolicy::BGP) { 158 4494 : BgpAttrDB *attr_db = routing_instance()->server()->attr_db(); 159 : // Strip ExtCommunity. 160 4494 : if (uinfo->roattr.attr()->ext_community()) { 161 : BgpAttrPtr new_attr = attr_db->ReplaceExtCommunityAndLocate( 162 1660 : uinfo->roattr.attr(), NULL); 163 1660 : uinfo->roattr.set_attr(this, new_attr); 164 1660 : } 165 : 166 : // Strip OriginVnPath. 167 4494 : if (uinfo->roattr.attr()->origin_vn_path()) { 168 : BgpAttrPtr new_attr = attr_db->ReplaceOriginVnPathAndLocate( 169 0 : uinfo->roattr.attr(), NULL); 170 0 : uinfo->roattr.set_attr(this, new_attr); 171 0 : } 172 : } 173 212946 : uinfo_slist->push_front(*uinfo); 174 : 175 212944 : return true; 176 : } 177 : 178 42904 : PathResolver *Inet6Table::CreatePathResolver() { 179 42904 : if (routing_instance()->IsMasterRoutingInstance()) 180 0 : return NULL; 181 42904 : return (new PathResolver(this)); 182 : } 183 : 184 159 : static void RegisterFactory() { 185 159 : DB::RegisterFactory("inet6.0", &Inet6Table::CreateTable); 186 159 : } 187 : MODULE_INITIALIZER(RegisterFactory);