OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
inet4_multicast_route.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef vnsw_inet4_multicast_route_hpp
6 #define vnsw_inet4_multicast_route_hpp
7 
9 // MULTICAST INET4
12 public:
13  Inet4MulticastAgentRouteTable(DB *db, const std::string &name) :
14  AgentRouteTable(db, name),
15  walkid_(DBTableWalker::kInvalidWalkerId) { };
18  const std::string &context);
19  // Nexthop will be stored in path as localvmpeer so that it falls in line
20  // Override virtual routines for no action w.r.t. multicast
21  virtual string GetTableName() const {
22  return "Inet4MulticastAgentRouteTable";
23  }
26  }
27 
29  void AddVHostRecvRoute(const string &vm_vrf,
30  const string &interface_name,
31  const Ip4Address &addr,
32  bool policy);
34  const Ip4Address &src_addr);
35  static DBTableBase *CreateTable(DB *db, const std::string &name);
36  static void AddMulticastRoute(const string &vn_name, const string &vrf_name,
37  const Ip4Address &src_addr,
38  const Ip4Address &grp_addr,
39  ComponentNHKeyList &component_nh_key_list);
40  static void AddMulticastRoute(const Peer *peer,
41  const string &vrf_name,
42  const Ip4Address &src_addr,
43  const Ip4Address &grp_addr,
44  uint32_t ethernet_tag,
45  AgentRouteData *data);
46  static void DeleteMulticastRoute(const string &vrf_name,
47  const Ip4Address &src_addr,
48  const Ip4Address &grp_addr);
49  static void DeleteMulticastRoute(const Peer *peer,
50  const string &vrf_name,
51  const Ip4Address &src_addr,
52  const Ip4Address &grp_addr,
53  uint32_t ethernet_tag,
55  static void Delete(const string &vrf_name, const Ip4Address &src_addr,
56  const Ip4Address &grp_addr);
57 private:
60 };
61 
63 public:
65  const Ip4Address &src) :
66  AgentRoute(vrf, true), dst_addr_(dst), src_addr_(src) {
67  }
69 
70  virtual int CompareTo(const Route &rhs) const;
71  virtual string ToString() const;
72  virtual KeyPtr GetDBRequestKey() const;
73  virtual void SetKey(const DBRequestKey *key);
74  virtual bool ReComputePathAdd(AgentPath *path);
75  virtual bool ReComputePathDeletion(AgentPath *path);
76  virtual const string GetAddressString() const {
77  return dst_addr_.to_string();
78  }
79  virtual const string GetSourceAddressString() const {
80  return src_addr_.to_string();
81  }
82  virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const;
85  }
86  bool DBEntrySandesh(Sandesh *sresp, const Ip4Address &src_addr,
87  const Ip4Address &dst_addr, bool stale) const;
88 
89  void set_dest_ip_addr(const Ip4Address &dst) {dst_addr_ = dst;}
90  void set_src_ip_addr(const Ip4Address &src) {src_addr_ = src;}
91  const Ip4Address &src_ip_addr() const {return src_addr_;}
92  const Ip4Address &dest_ip_addr() const {return dst_addr_;}
94 
95 private:
99 };
100 
102 public:
103  Inet4MulticastRouteKey(const Peer *peer, const string &vrf_name,
104  const Ip4Address &dip,
105  const Ip4Address &sip,
106  uint32_t ethernet_tag) :
107  AgentRouteKey(peer, vrf_name),
108  dip_(dip), sip_(sip), ethernet_tag_(ethernet_tag) {
109  }
110  Inet4MulticastRouteKey(const string &vrf_name,const Ip4Address &dip,
111  const Ip4Address &sip) :
112  AgentRouteKey(Agent::GetInstance()->multicast_peer(), vrf_name),
113  dip_(dip), sip_(sip) {
114  ethernet_tag_ = 0;
115  }
116  Inet4MulticastRouteKey(const string &vrf_name, const Ip4Address &dip) :
117  AgentRouteKey(Agent::GetInstance()->multicast_peer(), vrf_name),
118  dip_(dip) {
119  boost::system::error_code ec;
120  sip_ = IpAddress::from_string("0.0.0.0", ec).to_v4();
121  ethernet_tag_ = 0;
122  }
124  AgentRouteKey(Agent::GetInstance()->multicast_peer(), vrf_name) {
125  boost::system::error_code ec;
126  dip_ = IpAddress::from_string("255.255.255.255", ec).to_v4();
127  sip_ = IpAddress::from_string("0.0.0.0", ec).to_v4();
128  ethernet_tag_ = 0;
129  }
131  virtual AgentRoute *AllocRouteEntry(VrfEntry *vrf, bool is_multicast) const;
133  return Agent::INET4_MULTICAST;
134  }
135  virtual AgentRouteKey *Clone() const;
136  virtual string ToString() const;
137 
138  const Ip4Address &dest_ip_addr() const {return dip_;}
139  const Ip4Address &src_ip_addr() const {return sip_;}
140 
141 private:
144  uint32_t ethernet_tag_;
146 };
147 
148 #endif // vnsw_inet4_multicast_route_hpp
virtual Composite::Type GetMulticastCompType()
virtual const string GetAddressString() const
virtual bool ReComputePathDeletion(AgentPath *path)
const Ip4Address & dest_ip_addr() const
const std::string & vrf_name() const
Definition: agent_route.cc:455
Definition: vrf.h:86
virtual AgentRouteKey * Clone() const
Inet4MulticastAgentRouteTable(DB *db, const std::string &name)
Agent supports multiple route tables - Inet-unicast (IPv4/IPv6), Inet-multicast, bridge, EVPN (Type2/Type5). This base class contains common code for all types of route tables.
Definition: agent_route.h:109
const Ip4Address & dest_ip_addr() const
virtual AgentSandeshPtr GetAgentSandesh(const AgentSandeshArguments *args, const std::string &context)
Definition: route.h:14
virtual KeyPtr GetDBRequestKey() const
Inet4MulticastRouteKey(const Peer *peer, const string &vrf_name, const Ip4Address &dip, const Ip4Address &sip, uint32_t ethernet_tag)
DISALLOW_COPY_AND_ASSIGN(Inet4MulticastAgentRouteTable)
static void Delete(const string &vrf_name, const Ip4Address &src_addr, const Ip4Address &grp_addr)
std::unique_ptr< DBRequestKey > KeyPtr
Definition: db_entry.h:25
DISALLOW_COPY_AND_ASSIGN(Inet4MulticastRouteEntry)
Base class for all Route entries in agent.
Definition: agent_route.h:224
virtual Agent::RouteTableType GetTableType() const
std::vector< ComponentNHKeyPtr > ComponentNHKeyList
Definition: nexthop.h:1641
Inet4MulticastRouteEntry * FindRoute(const Ip4Address &grp_addr, const Ip4Address &src_addr)
void AddVHostRecvRoute(const string &vm_vrf, const string &interface_name, const Ip4Address &addr, bool policy)
Inet4MulticastRouteKey(const string &vrf_name)
Definition: db.h:24
virtual string GetTableName() const
virtual string ToString() const
void set_dest_ip_addr(const Ip4Address &dst)
uint8_t type
Definition: load_balance.h:109
void set_src_ip_addr(const Ip4Address &src)
Definition: agent.h:358
virtual bool ReComputePathAdd(AgentPath *path)
Inet4MulticastRouteEntry(VrfEntry *vrf, const Ip4Address &dst, const Ip4Address &src)
static void DeleteMulticastRoute(const string &vrf_name, const Ip4Address &src_addr, const Ip4Address &grp_addr)
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
class boost::shared_ptr< AgentSandesh > AgentSandeshPtr
Definition: agent_db.h:18
const std::string & name() const
Definition: db_table.h:110
Definition: peer.h:44
virtual Agent::RouteTableType GetRouteTableType()
boost::asio::ip::address_v4 Ip4Address
Definition: address.h:14
virtual string ToString() const
virtual void SetKey(const DBRequestKey *key)
const Ip4Address & src_ip_addr() const
virtual Agent::RouteTableType GetTableType() const
const Peer * peer() const
Definition: agent_route.h:47
#define COMPOSITETYPE
Definition: nexthop.h:1600
const std::string & vrf_name() const
Definition: agent_route.h:46
Inet4MulticastRouteKey(const string &vrf_name, const Ip4Address &dip, const Ip4Address &sip)
VrfEntry * vrf() const
Definition: agent_route.h:275
virtual int CompareTo(const Route &rhs) const
static DBTableBase * CreateTable(DB *db, const std::string &name)
static void AddMulticastRoute(const string &vn_name, const string &vrf_name, const Ip4Address &src_addr, const Ip4Address &grp_addr, ComponentNHKeyList &component_nh_key_list)
virtual const string GetSourceAddressString() const
RouteTableType
Definition: agent.h:415
DISALLOW_COPY_AND_ASSIGN(Inet4MulticastRouteKey)
Inet4MulticastRouteKey(const string &vrf_name, const Ip4Address &dip)
void McRtRouteNotifyDone(DBTableBase *base, DBState *)
virtual AgentRoute * AllocRouteEntry(VrfEntry *vrf, bool is_multicast) const
const Ip4Address & src_ip_addr() const