OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
inet_interface.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include <sys/types.h>
6 #include <net/ethernet.h>
7 #include <boost/uuid/uuid_io.hpp>
8 
9 #include "base/address_util.h"
10 #include "base/logging.h"
11 #include "db/db.h"
12 #include "db/db_entry.h"
13 #include "db/db_table.h"
14 #include "ifmap/ifmap_node.h"
15 
16 #include <cfg/cfg_init.h>
17 #include <cmn/agent.h>
18 #include <init/agent_param.h>
19 #include <oper/operdb_init.h>
20 #include <oper/route_common.h>
21 #include <oper/vm.h>
22 #include <oper/vn.h>
23 #include <oper/vrf.h>
24 #include <oper/nexthop.h>
25 #include <oper/mpls.h>
26 #include <oper/mirror_table.h>
27 #include <oper/interface_common.h>
28 #include <oper/vrf_assign.h>
29 #include <oper/vxlan.h>
30 
31 #include <vnc_cfg_types.h>
32 #include <oper/agent_sandesh.h>
33 #include <oper/sg.h>
34 #include "sandesh/sandesh_trace.h"
35 #include "sandesh/common/vns_types.h"
36 #include "sandesh/common/vns_constants.h"
40 
41 using namespace std;
42 using namespace boost::uuids;
43 
45 // Inet Interface Key and Data methods
47 InetInterfaceKey::InetInterfaceKey(const std::string &name) :
48  InterfaceKey(AgentKey::ADD_DEL_CHANGE, Interface::INET, nil_uuid(), name,
49  false) {
50 }
51 
53  return new InetInterface(name_);
54 }
55 
57  const InterfaceData *data)const {
58  const InetInterfaceData *vhost_data =
59  static_cast<const InetInterfaceData *>(data);
60 
61  VrfKey key(data->vrf_name_);
62  VrfEntry *vrf = static_cast<VrfEntry *>
63  (table->agent()->vrf_table()->FindActiveEntry(&key));
64  assert(vrf);
65 
66  Interface *xconnect = NULL;
67  if (vhost_data->sub_type_ == InetInterface::VHOST) {
68  PhysicalInterfaceKey key(vhost_data->xconnect_);
69  xconnect = static_cast<Interface *>
70  (table->agent()->interface_table()->FindActiveEntry(&key));
71  assert(xconnect != NULL);
72  }
73 
74  InetInterface *intf = new InetInterface(name_, vhost_data->sub_type_, vrf,
75  vhost_data->ip_addr_,
76  vhost_data->plen_, vhost_data->gw_,
77  xconnect, vhost_data->vn_name_);
78  return intf;
79 }
80 
82  return new InetInterfaceKey(name_);
83 }
84 
86  const std::string &vrf_name,
87  const Ip4Address &addr, int plen,
88  const Ip4Address &gw,
89  const std::string &xconnect,
90  const std::string vn_name,
91  Interface::Transport transport) :
92  InterfaceData(NULL, NULL, transport), sub_type_(sub_type), ip_addr_(addr),
93  plen_(plen), gw_(gw), xconnect_(xconnect), vn_name_(vn_name) {
94  InetInit(vrf_name);
95 }
96 
98 // SIMPLE GATEWAY Utility functions
101  InterfaceTable *table = static_cast<InterfaceTable *>(get_table());
102  Agent *agent = table->agent();
103 
104  // Create InterfaceNH before MPLS is created
106  agent->pkt_interface_mac());
107 
108  //There is no policy enabled nexthop created for VGW interface,
109  //hence use interface nexthop without policy as flow key index
112  agent->pkt_interface_mac());
113  flow_key_nh_ = static_cast<const NextHop *>(
114  agent->nexthop_table()->FindActiveEntry(&key));
115  assert(flow_key_nh_);
116  label_ = flow_key_nh_->mpls_label()->label();
117 }
118 
120  InetUnicastAgentRouteTable *uc_rt_table =
122 
123  InterfaceTable *table = static_cast<InterfaceTable *>(get_table());
124  Agent *agent = table->agent();
125 
126  // Delete routes
128  uc_rt_table->DeleteReq(agent->local_vm_peer(), agent->fabric_vrf_name(),
129  addr, plen_, NULL);
130 
131  uc_rt_table->DeleteReq(agent->local_vm_peer(),
132  vrf()->GetName(), Ip4Address(0), 0, NULL);
133 
134  // Delete NH
136 
137  // Reset Label
139  flow_key_nh_ = NULL;
140 }
141 
143 // VHOST / LL Utility functions
145 
146 // Add default route with given gateway
148  const VrfEntry *vrf, const Interface *xconnect,
149  const Ip4Address &gw, const string &vn_name) {
150 
151  if (xconnect) {
152  const PhysicalInterface *physical_intf =
153  static_cast<const PhysicalInterface *>(xconnect);
154  if (physical_intf->no_arp() ||
155  (physical_intf->encap_type() == PhysicalInterface::RAW_IP)) {
156  table->AddInterfaceRouteReq(agent, agent->local_peer(),
157  vrf->GetName(), Ip4Address(0), 0,
158  xconnect, vn_name);
159  return;
160  }
161  }
162 
163  VnListType vn_list;
164  vn_list.insert(vn_name);
165  table->AddGatewayRoute(agent->local_peer(),
166  vrf->GetName(), Ip4Address(0), 0, AddressList(1, gw), vn_list,
168  TagList(), CommunityList(), true);
169  return;
170 }
171 
173  const VrfEntry *vrf, const Ip4Address &addr) {
174  table->Delete(agent->local_peer(), vrf->GetName(), Ip4Address(0), 0);
175 }
176 
177 // Following routes are added due o an inet interface
178 // - Receive route for IP address assigned
179 // - Receive route for the sub-net broadcast address
180 // - Resolve route for the subnet address
181 static void AddHostRoutes(Agent *agent, InetUnicastAgentRouteTable *table,
182  const VrfEntry *vrf, const string &interface,
183  const Interface *xconnect, const Ip4Address &addr,
184  int plen, const string &vn_name) {
185 
186  InetInterfaceKey intf_key(interface);
187  table->AddVHostRecvRoute(agent->local_peer(), vrf->GetName(), intf_key,
188  addr, 32, vn_name, false, true);
189 
190  const PhysicalInterface *physical_intf =
191  static_cast<const PhysicalInterface *>(xconnect);
192  if (physical_intf) {
193  if (physical_intf->no_arp())
194  return;
195  if (physical_intf->encap_type() != PhysicalInterface::ETHERNET)
196  return;
197  }
198 
199  table->AddVHostSubnetRecvRoute(agent->local_peer(), vrf->GetName(),
200  intf_key,
201  GetIp4SubnetBroadcastAddress(addr, plen),
202  32, vn_name, false);
203  if (agent->params()->subnet_hosts_resolvable() == true) {
204  InetInterfaceKey intf_key(interface);
205  table->AddResolveRoute(agent->local_peer(), vrf->GetName(),
206  Address::GetIp4SubnetAddress(addr, plen), plen,
207  intf_key, MplsTable::kInvalidLabel, false, vn_name,
209  }
210 
211  if ((agent->tsn_enabled() == true) &&
212  (agent->forwarding_enabled() == false)) {
213  InetUnicastAgentRouteTable *inet_table =
214  static_cast<InetUnicastAgentRouteTable *>
216  VmInterfaceKey vmi_key(AgentKey::ADD_DEL_CHANGE, nil_uuid(),
217  agent->params()->vhost_name());
218  inet_table->AddVHostRecvRouteReq(agent->local_peer(),
219  agent->fabric_policy_vrf_name(),
220  vmi_key,
221  agent->params()->vhost_addr(),
222  32,
223  agent->fabric_vn_name(),
224  false, true);
225  }
226 }
227 
229  const VrfEntry *vrf, const Interface *xconnect,
230  const Ip4Address &addr, int plen) {
231  table->Delete(agent->local_peer(), vrf->GetName(), addr, 32);
232  const PhysicalInterface *physical_intf =
233  static_cast<const PhysicalInterface *>(xconnect);
234  if (physical_intf && physical_intf->no_arp()) {
235  return;
236  }
237 
238  table->Delete(agent->local_peer(), vrf->GetName(),
239  Address::GetIp4SubnetAddress(addr, plen), plen);
240  table->Delete(agent->local_peer(), vrf->GetName(),
241  GetIp4SubnetBroadcastAddress(addr, plen), 32);
242 }
243 
245  VrfTable *vrf_table = static_cast<VrfTable *>(vrf()->get_table());
246  InetUnicastAgentRouteTable *uc_rt_table =
247  (vrf_table->GetInet4UnicastRouteTable(vrf()->GetName()));
248  boost::system::error_code ec;
249  InetInterfaceKey intf_key(name());
250  // Add v4 route for covering multicast
251  uc_rt_table->
252  AddVHostRecvRoute(uc_rt_table->agent()->local_peer(),
253  vrf()->GetName(),
254  intf_key,
255  Ip4Address::from_string(IPV4_MULTICAST_BASE_ADDRESS,
256  ec),
258  vn_name_,
259  false, true);
260  // Add v6 route for covering multicast
261  uc_rt_table->
262  AddVHostRecvRoute(uc_rt_table->agent()->local_peer(),
263  vrf()->GetName(),
264  intf_key,
265  Ip6Address::from_string(IPV6_MULTICAST_BASE_ADDRESS,
266  ec),
268  vn_name_,
269  false, true);
270 }
271 
273  VrfTable *vrf_table = static_cast<VrfTable *>(vrf()->get_table());
274  InetUnicastAgentRouteTable *uc_rt_table =
275  (vrf_table->GetInet4UnicastRouteTable(vrf()->GetName()));
276  boost::system::error_code ec;
277  // Del v4 route for covering multicast
278  uc_rt_table->Delete(uc_rt_table->agent()->local_peer(),
279  vrf()->GetName(),
280  Ip4Address::from_string(IPV4_MULTICAST_BASE_ADDRESS,
281  ec),
283  // Del v6 route for covering multicast
284  uc_rt_table->Delete(uc_rt_table->agent()->local_peer(),
285  vrf()->GetName(),
286  Ip6Address::from_string(IPV6_MULTICAST_BASE_ADDRESS,
287  ec),
289 }
290 
291 // Things to do to activate VHOST/LL interface
292 // 1. Create the receive next-hops for interface (with policy and witout policy)
293 // 2. Add routes needed to manage the IP address on interface
294 // 3. Add default route for the gateway
295 // 4. Add broadcast route in multicast route table
297  InterfaceTable *table = static_cast<InterfaceTable *>(get_table());
298  Agent *agent = table->agent();
299 
300  // Create receive nexthops
301  ReceiveNH::Create(agent->nexthop_table(), this, false);
302 
303  VrfTable *vrf_table = static_cast<VrfTable *>(vrf()->get_table());
304  InetUnicastAgentRouteTable *uc_rt_table =
305  (vrf_table->GetInet4UnicastRouteTable(vrf()->GetName()));
306  if (ip_addr_.to_ulong()) {
307  AddHostRoutes(agent, uc_rt_table, vrf(), name(), xconnect_.get(),
309  }
311 
312  if (gw_.to_ulong()) {
313  AddDefaultRoute(agent, uc_rt_table, vrf(), xconnect_.get(), gw_,
314  vn_name_);
315  }
316 
317  ReceiveNHKey nh_key(new InetInterfaceKey(name()), false);
318  flow_key_nh_ = static_cast<const NextHop *>(
319  agent->nexthop_table()->FindActiveEntry(&nh_key));
320 }
321 
323  ipv4_active_ = false;
324 
325  Agent *agent = static_cast<InterfaceTable *>(get_table())->agent();
326  VrfTable *vrf_table = static_cast<VrfTable *>(vrf()->get_table());
327  InetUnicastAgentRouteTable *uc_rt_table =
328  (vrf_table->GetInet4UnicastRouteTable(vrf()->GetName()));
329  if (ip_addr_.to_ulong()) {
330  DeleteHostRoutes(agent, uc_rt_table, vrf(), xconnect_.get(), ip_addr_,
331  plen_);
332  }
334 
335  if (gw_.to_ulong()) {
336  DeleteDefaultRoute(agent, uc_rt_table, vrf(), gw_);
337  }
338 
339  // Delete receive nexthops
340  ReceiveNH::Delete(agent->nexthop_table(), this, false);
341  flow_key_nh_ = NULL;
342 }
343 
345 // Inet Interface methods
347 InetInterface::InetInterface(const std::string &name) :
348  Interface(Interface::INET, nil_uuid(), name, NULL, true, nil_uuid()),
349  sub_type_(VHOST), ip_addr_(0), plen_(0), gw_(0), xconnect_(NULL),
350  vn_name_("") {
351  ipv4_active_ = false;
352  l2_active_ = false;
353 }
354 
356  VrfEntry *vrf, const Ip4Address &ip_addr, int plen,
357  const Ip4Address &gw, Interface *xconnect,
358  const std::string &vn_name) :
359  Interface(Interface::INET, nil_uuid(), name, vrf, true, nil_uuid()),
360  sub_type_(sub_type),
361  ip_addr_(ip_addr),
362  plen_(plen),
363  gw_(gw),
364  xconnect_(xconnect),
365  vn_name_(vn_name) {
366  ipv4_active_ = false;
367  l2_active_ = false;
368 }
369 
370 bool InetInterface::CmpInterface(const DBEntry &rhs) const {
371  const InetInterface &intf = static_cast<const InetInterface &>(rhs);
372  return name() < intf.name();
373 }
374 
376  InterfaceKey *key = new InetInterfaceKey(name());
377  return DBEntryBase::KeyPtr(key);
378 }
379 
381  ipv4_active_ = true;
382  if (sub_type_ == SIMPLE_GATEWAY) {
384  } else {
386  }
387 
388  return;
389 }
390 
392  ipv4_active_ = false;
393 
394  if (sub_type_ == SIMPLE_GATEWAY) {
396  } else {
398  }
399 }
400 
402  DeActivate();
403  return true;
404 }
405 
406 // Interface Activate cannot be done in AllocEntry. It must be done in PostAdd
407 // Activating an interface results in adding Interface Nexthops. Creating of
408 // Interface NH from AllocEntry will fail since the interface is not yet added
409 // in DB Table PartitionInterface. So, Activate an interface in PostAdd
411  Activate();
412 }
413 
415  bool ret = false;
416 
417  // A Delete followed by Add will result in OnChange callback. Interface is
418  // Deactivated on delete. Activate it again to create Interface NH etc...
419  if (ipv4_active_ != true) {
420  Activate();
421  ret = true;
422  }
423 
424  if (sub_type_ == SIMPLE_GATEWAY) {
425  return ret;
426  }
427 
428  InterfaceTable *table = static_cast<InterfaceTable *>(get_table());
429  Agent *agent = table->agent();
430 
431  VrfTable *vrf_table = static_cast<VrfTable *>(vrf()->get_table());
432  InetUnicastAgentRouteTable *uc_rt_table =
433  (vrf_table->GetInet4UnicastRouteTable(vrf()->GetName()));
434 
435  if (ip_addr_ != data->ip_addr_ || plen_ != data->plen_) {
436  // Delete routes based on old ip-addr and prefix
437  if (ip_addr_.to_ulong()) {
438  DeleteHostRoutes(agent, uc_rt_table, vrf(), xconnect_.get(),
439  ip_addr_, plen_);
440  }
441 
442  ip_addr_ = data->ip_addr_;
443  plen_ = data->plen_;
444  vn_name_ = data->vn_name_;
445  // Add routes for new ip-address and prefix
446  if (data->ip_addr_.to_ulong()) {
447  AddHostRoutes(agent, uc_rt_table, vrf(), name(), xconnect_.get(),
449  }
450  ret = true;
451  } else if (vn_name_ != data->vn_name_) {
452  // Change in vn_name, update route with new VN Name
453  vn_name_ = data->vn_name_;
454  AddHostRoutes(agent, uc_rt_table, vrf(), name(), xconnect_.get(),
456  ret = true;
457  }
458 
459  if (gw_ != data->gw_) {
460  // Delete routes based on old gateway
461  if (gw_.to_ulong()) {
462  DeleteDefaultRoute(agent, uc_rt_table, vrf(), gw_);
463  }
464 
465  gw_ = data->gw_;
466  // Add route for new gateway
467  if (gw_.to_ulong()) {
468  AddDefaultRoute(agent, uc_rt_table, vrf(), xconnect_.get(), gw_,
469  vn_name_);
470  }
471 
472  ret = true;
473  }
474 
475  if (transport_ != data->transport_) {
476  transport_ = data->transport_;
477  }
478  return ret;
479 }
480 
481 // Helper to Inet Interface
482 void InetInterface::CreateReq(InterfaceTable *table, const std::string &ifname,
483  SubType sub_type, const std::string &vrf_name,
484  const Ip4Address &addr, int plen,
485  const Ip4Address &gw,
486  const std::string &xconnect,
487  const std::string &vn_name,
488  Interface::Transport transport) {
490  req.key.reset(new InetInterfaceKey(ifname));
491  req.data.reset(new InetInterfaceData(sub_type, vrf_name, Ip4Address(addr),
492  plen, Ip4Address(gw), xconnect,
493  vn_name, transport));
494  table->Enqueue(&req);
495 }
496 
497 // Helper to Inet Interface
498 void InetInterface::Create(InterfaceTable *table, const std::string &ifname,
499  SubType sub_type, const std::string &vrf_name,
500  const Ip4Address &addr, int plen,
501  const Ip4Address &gw,
502  const std::string &xconnect,
503  const std::string &vn_name,
504  Interface::Transport transport) {
506  req.key.reset(new InetInterfaceKey(ifname));
507  req.data.reset(new InetInterfaceData(sub_type, vrf_name, Ip4Address(addr),
508  plen, Ip4Address(gw), xconnect,
509  vn_name, transport));
510  table->Process(req);
511 }
512 
513 // Helper to delete Inet Interface
514 void InetInterface::DeleteReq(InterfaceTable *table, const string &ifname) {
516  req.key.reset(new InetInterfaceKey(ifname));
517  req.data.reset(NULL);
518  table->Enqueue(&req);
519 }
520 
521 void InetInterface::Delete(InterfaceTable *table, const string &ifname) {
523  req.key.reset(new InetInterfaceKey(ifname));
524  req.data.reset(NULL);
525  table->Process(req);
526 }
static void AddHostRoutes(Agent *agent, InetUnicastAgentRouteTable *table, const VrfEntry *vrf, const string &interface, const Interface *xconnect, const Ip4Address &addr, int plen, const string &vn_name)
static void DeleteHostRoutes(Agent *agent, InetUnicastAgentRouteTable *table, const VrfEntry *vrf, const Interface *xconnect, const Ip4Address &addr, int plen)
std::string vn_name_
void DelHostMulticastRoutes()
bool tsn_enabled() const
Definition: agent.h:1162
static void AddResolveRoute(const Peer *peer, const string &vrf_name, const Ip4Address &ip, const uint8_t plen, const InterfaceKey &intf_key, const uint32_t label, bool policy, const std::string &vn_name, const SecurityGroupList &sg_list, const TagList &tag_list)
const std::string & vhost_name() const
Definition: agent_param.h:183
uint8_t sub_type
Definition: load_balance.h:110
Definition: vrf.h:86
Ip4Address GetIp4SubnetBroadcastAddress(const Ip4Address &ip_prefix, uint16_t plen)
Definition: vrf.h:268
void DeActivateSimpleGateway()
NextHopTable * nexthop_table() const
Definition: agent.h:475
DBTableBase * get_table() const
Definition: db_entry.cc:119
Transport transport_
Definition: interface.h:186
void ActivateSimpleGateway()
VrfEntry * fabric_policy_vrf() const
Definition: agent.h:917
std::vector< int > SecurityGroupList
Definition: agent.h:201
bool l2_active_
Definition: interface.h:173
std::unique_ptr< DBRequestData > data
Definition: db_table.h:49
InetUnicastAgentRouteTable * GetInet4UnicastRouteTable() const
Definition: vrf.cc:319
AgentDBEntry * FindActiveEntry(const DBEntry *key)
Definition: agent_db.cc:110
InterfaceTable * interface_table() const
Definition: agent.h:465
bool Enqueue(DBRequest *req)
Definition: db_table.cc:194
Interface::Transport transport_
Definition: interface.h:266
void DeActivateHostInterface()
const string & GetName() const
Definition: vrf.h:100
static void CreateInetInterfaceNextHop(const string &ifname, const string &vrf_name, const MacAddress &mac)
Definition: nexthop.cc:817
static void CreateReq(InterfaceTable *table, const std::string &ifname, SubType sub_type, const std::string &vrf_name, const Ip4Address &addr, int plen, const Ip4Address &gw, const std::string &xconnect, const std::string &vn_name, Interface::Transport transport)
const Ip4Address & vhost_addr() const
Definition: agent_param.h:184
Agent * agent() const
Definition: interface.h:447
VrfEntry * vrf() const
Definition: interface.h:115
static Ip4Address GetIp4SubnetAddress(const Ip4Address &prefix, uint16_t plen)
Definition: address.cc:179
std::unique_ptr< DBRequestKey > KeyPtr
Definition: db_entry.h:25
InetInterface::SubType sub_type_
KeyPtr GetDBRequestKey() const
static void AddVHostSubnetRecvRoute(const Peer *peer, const string &vrf, const InterfaceKey &interface, const Ip4Address &addr, uint8_t plen, const std::string &vn_name, bool policy)
bool no_arp() const
static void AddVHostRecvRouteReq(const Peer *peer, const string &vrf, const InterfaceKey &interface, const IpAddress &addr, uint8_t plen, const string &vn_name, bool policy, bool native_encap)
InetUnicastAgentRouteTable * GetInet4UnicastRouteTable(const std::string &vrf_name)
Definition: vrf.cc:898
InterfaceRef xconnect_
std::string name_
Definition: interface.h:245
static void AddVHostRecvRoute(const Peer *peer, const string &vrf, const InterfaceKey &interface, const IpAddress &addr, uint8_t plen, const string &vn_name, bool policy, bool native_encap, bool ipam_host_route=true)
const std::string & fabric_vrf_name() const
Definition: agent.h:903
static VrfTable * GetInstance()
Definition: vrf.h:323
static void Delete(const Peer *peer, const string &vrf_name, const IpAddress &addr, uint8_t plen)
InetInterfaceKey(const std::string &name)
Definition: agent.h:358
uint32_t label_
Definition: interface.h:164
std::string vrf_name_
Definition: interface.h:265
static void Create(InterfaceTable *table, const std::string &ifname, SubType sub_type, const std::string &vrf_name, const Ip4Address &addr, int plen, const Ip4Address &gw, const std::string &xconnect, const std::string &vn_name, Interface::Transport transport)
static void Create(NextHopTable *table, const Interface *intf, bool policy)
Definition: nexthop.cc:1530
Definition: vrf.h:22
NextHopConstRef flow_key_nh_
Definition: interface.h:185
std::unique_ptr< DBRequestKey > key
Definition: db_table.h:48
const Peer * local_peer() const
Definition: agent.h:1022
bool OnChange(InetInterfaceData *data)
SubType sub_type_
std::vector< std::string > CommunityList
Definition: bgp_config.h:347
std::vector< Ip4Address > AddressList
Definition: agent.h:217
virtual void Process(DBRequest &req)
Definition: agent_db.cc:231
AgentParam * params() const
Definition: agent.h:1218
std::set< std::string > VnListType
Definition: agent.h:212
static void DeleteReq(const Peer *peer, const string &vrf_name, const IpAddress &addr, uint8_t plen, AgentRouteData *data)
void ActivateHostInterface()
#define MULTICAST_BASE_ADDRESS_PLEN
Definition: agent.h:304
static void DeleteDefaultRoute(Agent *agent, InetUnicastAgentRouteTable *table, const VrfEntry *vrf, const Ip4Address &addr)
boost::asio::ip::address_v4 Ip4Address
Definition: address.h:14
Interface * AllocEntry(const InterfaceTable *table) const
bool ipv4_active_
Definition: interface.h:166
EncapType encap_type() const
static const uint32_t kInvalidLabel
Definition: mpls.h:101
void AddHostMulticastRoutes()
static void AddDefaultRoute(Agent *agent, InetUnicastAgentRouteTable *table, const VrfEntry *vrf, const Interface *xconnect, const Ip4Address &gw, const string &vn_name)
VrfTable * vrf_table() const
Definition: agent.h:485
void Delete()
Definition: db_entry.cc:131
InetInterface(const std::string &name)
Ip4Address ip_addr_
static void DeleteInetInterfaceNextHop(const string &ifname, const MacAddress &mac)
Definition: nexthop.cc:833
static void AddGatewayRoute(const Peer *peer, const string &vrf_name, const Ip4Address &dst_addr, uint8_t plen, const AddressList &gw_list, const VnListType &vn_name, uint32_t label, const SecurityGroupList &sg_list, const TagList &tag_list, const CommunityList &communities, bool native_encap)
void AddInterfaceRouteReq(Agent *agent, const Peer *peer, const string &vrf_name, const Ip4Address &ip, uint8_t plen, const Interface *intrface, const std::string &vn_name)
InetInterfaceData(InetInterface::SubType sub_type, const std::string &vrf_name, const Ip4Address &addr, int plen, const Ip4Address &gw, const std::string &xconnect, const std::string vn_name, Interface::Transport transport)
#define IPV4_MULTICAST_BASE_ADDRESS
Definition: agent.h:302
bool forwarding_enabled() const
Definition: agent.h:1166
#define IPV6_MULTICAST_BASE_ADDRESS
Definition: agent.h:303
Agent * agent() const
Definition: agent_route.h:159
const std::string & name() const
Definition: interface.h:114
const Peer * local_vm_peer() const
Definition: agent.h:1023
static const MacAddress & pkt_interface_mac()
Definition: agent.h:440
void InetInit(const std::string &vrf_name)
Definition: interface.h:259
static void DeleteReq(InterfaceTable *table, const std::string &ifname)
bool subnet_hosts_resolvable() const
Definition: agent_param.h:353
std::string xconnect_
std::string vn_name_
const std::string & fabric_vn_name() const
Definition: agent.h:901
Ip4Address gw_
InterfaceKey * Clone() const
virtual bool CmpInterface(const DBEntry &rhs) const
std::vector< int > TagList
Definition: agent.h:202
const std::string & fabric_policy_vrf_name() const
Definition: agent.h:908