OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
bgp_evpn.h File Reference
#include <boost/ptr_container/ptr_map.hpp>
#include <boost/scoped_ptr.hpp>
#include <tbb/spin_rw_mutex.h>
#include <list>
#include <set>
#include <vector>
#include "base/lifetime.h"
#include "base/task_trigger.h"
#include "base/address.h"
#include "bgp/bgp_attr.h"
#include "bgp/bgp_path.h"
#include "db/db_entry.h"
Include dependency graph for bgp_evpn.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  EvpnMcastNode
 This is the base class for a multicast node in an EVPN instance. The node could either represent a local vRouter that's connected to a control node via XMPP or a remote vRouter/PE that's discovered via BGP. More...
 
class  EvpnLocalMcastNode
 This class represents (in the context of an EVPN instance) a local vRouter that's connected to a control node via XMPP. An EvpnLocalMcastNode gets created and associated as DBState with the broadcast MAC route advertised by the vRouter. More...
 
class  EvpnRemoteMcastNode
 This class represents (in the context of an EVPN instance) a remote vRouter or PE discovered via BGP. An EvpnRemoteMcastNode is created and associated as DBState with the Inclusive Multicast route in question. More...
 
class  EvpnSegment
 This class represents a remote EVPN segment that has 2 or more PEs that are multi-homed to it. An EvpnSegment is created when we see a MAC route with a non-NULL ESI or when we see an AD route for the ESI in question. More...
 
class  EvpnSegment::RemotePe
 
class  EvpnMacState
 This class represents the EvpnManager state associated with a MAC route. More...
 
class  EvpnState
 This class holds Evpn state for a particular <S,G> at any given time. More...
 
struct  EvpnState::SG
 Simple structure to hold <S,G>. Source as "0.0.0.0" can be used to encode <*,G> as well. More...
 
class  EvpnManagerPartition
 This class represents a partition in the EvpnManager. More...
 
class  EvpnManager
 This class represents the EVPN manager for an EvpnTable in a VRF. More...
 

Macros

#define EVPN_RT_LOG(rt,...)
 
#define EVPN_ERMVPN_RT_LOG(rt,...)
 
#define EVPN_TRACE(type,...)
 

Typedefs

typedef boost::intrusive_ptr
< EvpnState
EvpnStatePtr
 

Functions

void intrusive_ptr_add_ref (EvpnState *evpn_state)
 Increment refcont atomically. More...
 
void intrusive_ptr_release (EvpnState *evpn_state)
 Decrement refcount of an evpn_state. If the refcount falls to 1, it implies that there is no more reference to this particular state from any other data structure. Hence, it can be deleted from the container map and destroyed as well. More...
 

Macro Definition Documentation

#define EVPN_ERMVPN_RT_LOG (   rt,
  ... 
)
Value:
RTINSTANCE_LOG(EvpnErmVpnRoute, this->table()->routing_instance(), \
SandeshLevel::UT_DEBUG, \
(rt)->GetPrefix().source().to_string(), \
(rt)->GetPrefix().group().to_string(), \
(rt)->ToString(), ##__VA_ARGS__)
static string ToString(PhysicalDevice::ManagementProtocol proto)
#define RTINSTANCE_LOG_FLAG_ALL
#define RTINSTANCE_LOG(type, rtinstance, level, flags,...)

Definition at line 795 of file bgp_evpn.h.

#define EVPN_RT_LOG (   rt,
  ... 
)
Value:
RTINSTANCE_LOG(EvpnRoute, this->table()->routing_instance(), \
SandeshLevel::UT_DEBUG, \
(rt)->GetPrefix().source().to_string(), \
(rt)->GetPrefix().group().to_string(), \
(rt)->ToString(), ##__VA_ARGS__)
static string ToString(PhysicalDevice::ManagementProtocol proto)
#define RTINSTANCE_LOG_FLAG_ALL
#define RTINSTANCE_LOG(type, rtinstance, level, flags,...)

Definition at line 787 of file bgp_evpn.h.

#define EVPN_TRACE (   type,
  ... 
)
Value:
RTINSTANCE_LOG(type, this->table()->routing_instance(), \
SandeshLevel::UT_DEBUG, RTINSTANCE_LOG_FLAG_ALL, ##__VA_ARGS__)
uint8_t type
Definition: load_balance.h:109
#define RTINSTANCE_LOG_FLAG_ALL
#define RTINSTANCE_LOG(type, rtinstance, level, flags,...)

Definition at line 803 of file bgp_evpn.h.

Typedef Documentation

typedef boost::intrusive_ptr<EvpnState> EvpnStatePtr

Definition at line 34 of file bgp_evpn.h.

Function Documentation

void intrusive_ptr_add_ref ( EvpnState evpn_state)
inline

Increment refcont atomically.

Definition at line 759 of file bgp_evpn.h.

void intrusive_ptr_release ( EvpnState evpn_state)
inline

Decrement refcount of an evpn_state. If the refcount falls to 1, it implies that there is no more reference to this particular state from any other data structure. Hence, it can be deleted from the container map and destroyed as well.

Definition at line 767 of file bgp_evpn.h.

Here is the call graph for this function: