OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vm_interface_request.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 #include <cmn/agent_cmn.h>
5 #include <init/agent_param.h>
6 #include <oper/operdb_init.h>
7 #include <oper/route_common.h>
8 #include <oper/vm.h>
9 #include <oper/vn.h>
10 #include <oper/vrf.h>
11 #include <oper/nexthop.h>
12 #include <oper/mpls.h>
13 #include <oper/mirror_table.h>
14 #include <oper/metadata_ip.h>
15 #include <oper/interface_common.h>
16 #include <oper/health_check.h>
17 #include <oper/vrf_assign.h>
18 #include <oper/vxlan.h>
19 #include <oper/oper_dhcp_options.h>
21 #include <oper/global_vrouter.h>
22 #include <oper/qos_config.h>
23 #include <oper/bridge_domain.h>
24 #include <oper/sg.h>
25 #include <oper/bgp_as_service.h>
26 #include <oper/tag.h>
27 
28 #include <filter/acl.h>
34 
35 using namespace std;
36 using namespace boost::uuids;
37 using namespace autogen;
38 
40 // VM Port Key routines
43  const boost::uuids::uuid &uuid, const std::string &name) :
44  InterfaceKey(sub_op, Interface::VM_INTERFACE, uuid, name, false) {
45 }
46 
48  Agent *agent = table->agent();
49  /* OS oper state is disabled by default in Vmware mode */
50  bool os_oper_state = !agent->isVmwareMode();
51  return new VmInterface(uuid_, name_, os_oper_state, nil_uuid());
52 }
53 
55  const InterfaceData *data) const {
56  const VmInterfaceData *vm_data =
57  static_cast<const VmInterfaceData *>(data);
58 
59  VmInterface *vmi = vm_data->OnAdd(table, this);
60  return vmi;
61 }
62 
64  return new VmInterfaceKey(*this);
65 }
66 
68 // VmInterfaceConfigData routines
71  VmInterfaceData(agent, node, CONFIG, Interface::TRANSPORT_INVALID),
72  addr_(0), ip6_addr_(), vm_mac_(""),
73  cfg_name_(""), vm_uuid_(), vm_name_(), vn_uuid_(), vrf_name_(""),
74  fabric_port_(true), need_linklocal_ip_(false), bridging_(true),
75  layer3_forwarding_(true), mirror_enable_(false), ecmp_(false),
76  ecmp6_(false), dhcp_enable_(true), dhcp_enable_v6_(false),
77  proxy_arp_mode_(VmInterface::PROXY_ARP_NONE), admin_state_(true),
78  disable_policy_(false), analyzer_name_(""),
79  local_preference_(0), oper_dhcp_options_(),
80  mirror_direction_(Interface::UNKNOWN),
81  cfg_igmp_enable_(false), igmp_enabled_(false),
82  mac_ip_learning_enable_(false), max_flows_(0), sg_list_(),
83  floating_ip_list_(), alias_ip_list_(), service_vlan_list_(),
84  static_route_list_(), allowed_address_pair_list_(),
85  instance_ipv4_list_(true), instance_ipv6_list_(false),
86  bridge_domain_list_(),
87  device_type_(VmInterface::DEVICE_TYPE_INVALID),
88  vmi_type_(VmInterface::VMI_TYPE_INVALID), hbs_intf_type_(VmInterface::HBS_INTF_INVALID),
89  physical_interface_(""), parent_vmi_(), subnet_(0), subnet_plen_(0),
90  rx_vlan_id_(VmInterface::kInvalidVlanId),
91  tx_vlan_id_(VmInterface::kInvalidVlanId),
92  logical_interface_(nil_uuid()), ecmp_load_balance_(),
93  service_health_check_ip_(), service_ip_(0),
94  service_ip_ecmp_(false), service_ip6_(), service_ip_ecmp6_(false),
95  qos_config_uuid_(), learning_enabled_(false),
96  vhostuser_mode_(VmInterface::vHostUserClient), is_left_si_(false), service_mode_(VmInterface::SERVICE_MODE_ERROR),
97  si_other_end_vmi_(nil_uuid()), vmi_cfg_uuid_(nil_uuid()),
98  service_intf_type_(""), physical_interface_list_() {
99 }
100 
102  const VmInterfaceKey *key) const {
103 
104  Interface *parent = NULL;
108  return NULL;
109 
112  parent = static_cast<Interface *>
113  (table->agent()->interface_table()->FindActiveEntry(&key_1));
114  }
115 
116  if (parent == NULL)
117  return NULL;
118  }
119 
120  boost::system::error_code ec;
122  if (ec.value() != 0) {
123  mac.Zero();
124  }
125 
126  Agent *agent = table->agent();
127  /* OS oper state is disabled by default in Vmware mode */
128  bool os_oper_state = !agent->isVmwareMode();
129  VmInterface *vmi =
130  new VmInterface(key->uuid_, key->name_, addr_, mac, vm_name_,
131  nil_uuid(), tx_vlan_id_, rx_vlan_id_, parent,
133  os_oper_state, logical_router_uuid_);
136  return vmi;
137 }
138 
140  VmInterface *vmi) const {
141  if (vmi->IsConfigurerSet(VmInterface::CONFIG) == false)
142  return true;
143 
144  VmInterfaceConfigData data(NULL, NULL);
145  vmi->Resync(table, &data);
147  return true;
148 }
149 
151  VmInterface *vmi,
152  bool *force_update) const {
153  bool sg_changed = false;
154  bool ecmp_changed = false;
155  bool local_pref_changed = false;
156  bool ecmp_load_balance_changed = false;
157  bool static_route_config_changed = false;
158  bool etree_leaf_mode_changed = false;
159  bool tag_changed = false;
160  bool ret = false;
161 
162  ret = vmi->CopyConfig(table, this, &sg_changed, &ecmp_changed,
163  &local_pref_changed, &ecmp_load_balance_changed,
164  &static_route_config_changed,
165  &etree_leaf_mode_changed, &tag_changed);
166  if (sg_changed || ecmp_changed || local_pref_changed ||
167  ecmp_load_balance_changed || static_route_config_changed
168  || etree_leaf_mode_changed || tag_changed )
169  *force_update = true;
170 
172  return ret;
173 }
174 
175 autogen::VirtualMachineInterface *VmInterfaceConfigData::GetVmiCfg() const {
176  IFMapNode *node = ifmap_node();
177  if (node != NULL) {
178  if (node->GetObject() != NULL) {
179  return static_cast <autogen::VirtualMachineInterface *>
180  (node->GetObject());
181  }
182  }
183  return NULL;
184 }
185 
186 //Configuration of vhost interface to be filled from
187 //config file. This include
188 //1> IP of vhost
189 //2> Default route to be populated if any
190 //3> Resolve route to be added
191 //4> Multicast receive route
193  transport_ = static_cast<Interface::Transport>
194  (agent->GetInterfaceTransport());
195 
199 
201  if (agent->router_id() != Ip4Address(0) && agent->is_l3mh() == false) {
202  addr_ = agent->router_id();
203  instance_ipv4_list_.list_.insert(
204  VmInterface::InstanceIp(agent->router_id(), 32, false, true,
205  false, false, false, Ip4Address(0)));
206  }
207 
208  boost::system::error_code ec;
209  IpAddress mc_addr =
210  Ip4Address::from_string(IPV4_MULTICAST_BASE_ADDRESS, ec);
211  receive_route_list_.list_.insert(
213  false));
214 
215  mc_addr = Ip6Address::from_string(IPV6_MULTICAST_BASE_ADDRESS, ec);
216  receive_route_list_.list_.insert(
218  false));
219 
220  if (agent->params()->subnet_hosts_resolvable() == true) {
221  //Add resolve route
222  subnet_ = agent->router_id();
223  subnet_plen_ = agent->vhost_prefix_len();
224  }
225 
227 
228  PhysicalInterfaceKey physical_key(agent->fabric_interface_name());
229  const Interface *pif =
230  static_cast<const Interface *>(agent->interface_table()->
231  FindActiveEntry(&physical_key));
232  vm_mac_ = pif->mac().ToString();
233  if (agent->is_l3mh()) {
234  vm_mac_ = agent->vrrp_mac().ToString();
235  }
236 
237  //Add default route pointing to gateway
238  static_route_list_.list_.insert(
240  agent->params()->gateway_list(),
241  CommunityList()));
242 }
243 
244 
246  bool ret = false;
247 
248  // Retain the old if new IP could not be got
249  if (addr.is_unspecified()) {
250  return false;
251  }
252 
253  if (primary_ip6_addr_ != addr) {
254  primary_ip6_addr_ = addr;
255  ret = true;
256  }
257 
258  return ret;
259 }
260 
261 // Copies configuration from DB-Request data. The actual applying of
262 // configuration, like adding/deleting routes must be done with ApplyConfig()
264  const VmInterfaceConfigData *data,
265  bool *sg_changed,
266  bool *ecmp_changed,
267  bool *local_pref_changed,
268  bool *ecmp_load_balance_changed,
269  bool *static_route_config_changed,
270  bool *etree_leaf_mode_changed,
271  bool *tag_changed) {
272  bool ret = false;
273  if (table) {
274  VmEntry *vm = table->FindVmRef(data->vm_uuid_);
275  if (vm_.get() != vm) {
276  vm_ = vm;
277  ret = true;
278  }
279 
280  bool drop_new_flows =
281  (vm_.get() != NULL) ? vm_->drop_new_flows() : false;
282  if (drop_new_flows_ != drop_new_flows) {
284  ret = true;
285  }
286 
287  VrfEntry *vrf = table->FindVrfRef(data->vrf_name_);
288  if (vrf_.get() != vrf) {
289  vrf_ = vrf;
290  ret = true;
291  }
292 
294  if (vrf && vrf_->forwarding_vrf()) {
295  forwarding_vrf = vrf_->forwarding_vrf();
296  }
297 
298  if (forwarding_vrf != forwarding_vrf_) {
300  ret = true;
301  }
302 
303  MirrorEntry *mirror = table->FindMirrorRef(data->analyzer_name_);
304  if (mirror_entry_.get() != mirror) {
305  mirror_entry_ = mirror;
306  ret = true;
307  }
308  }
309 
310  if (vmi_type_ != data->vmi_type_) {
311  *etree_leaf_mode_changed = true;
312  vmi_type_ = data->vmi_type_;
313  ret = true;
314  }
315 
316  if (vmi_cfg_uuid_ != data->vmi_cfg_uuid_) {
318  ret = true;
319  }
320 
321  if (vhostuser_mode_ != data->vhostuser_mode_) {
323  ret = true;
324  }
325 
327  if (mirror_direction_ != mirror_direction) {
329  ret = true;
330  }
331 
332  string cfg_name = data->cfg_name_;
333  if (cfg_name_ != cfg_name) {
335  ret = true;
336  }
337 
338  // Read ifindex for the interface
339  if (table) {
340  VnEntry *vn = table->FindVnRef(data->vn_uuid_);
341  if (vn_.get() != vn) {
342  vn_ = vn;
343  ret = true;
344  }
345 
346  bool val = vn ? vn->layer3_forwarding() : false;
347  if (vmi_type_ == VHOST) {
348  val = true;
349  }
350 
351  if (layer3_forwarding_ != val) {
352  layer3_forwarding_ = val;
353  ret = true;
354  }
355 
356  val = vn ? vn->bridging() : false;
357  if (vmi_type_ == VHOST) {
358  //Bridging not supported on VHOST vmi
359  val = false;
360  }
361 
362  if (bridging_ != val) {
363  bridging_ = val;
364  ret = true;
365  }
366 
367  int vxlan_id = vn ? vn->GetVxLanId() : 0;
368  if (vxlan_id_ != vxlan_id) {
370  ret = true;
371  }
372 
373  bool is_etree_leaf = false;
374  if (vn) {
375  is_etree_leaf = vn->pbb_etree_enable();
376  }
377 
378  if (etree_leaf_ != is_etree_leaf) {
379  etree_leaf_ = is_etree_leaf;
380  *etree_leaf_mode_changed = true;
381  ret = true;
382  }
383 
384  bool flood_unknown_unicast =
385  vn ? vn->flood_unknown_unicast(): false;
386  if (flood_unknown_unicast_ != flood_unknown_unicast) {
388  ret = true;
389  }
390 
391  bool layer2_control_word = false;
392  if (vn) {
393  layer2_control_word = vn->layer2_control_word();
394  }
395  if (layer2_control_word_ != layer2_control_word) {
397  *etree_leaf_mode_changed = true;
398  ret = true;
399  }
400 
401  // global_qos_config is applicable for vmi of VHOST type.
402  // Skip checking for qos for vmi of VHOST type, since cfg_qos_table
403  // is not applicable.
404  if (vmi_type_ != VHOST) {
405  AgentQosConfigTable *qos_table = table->agent()->qos_config_table();
406  AgentQosConfigKey qos_key(data->qos_config_uuid_);
407  const AgentQosConfig *qos_config = static_cast<AgentQosConfig *>
408  (qos_table->FindActiveEntry(&qos_key));
409  bool is_vn_qos_config = false;
410 
411  if (qos_config == NULL) {
412  if (vn && vn->qos_config()) {
413  qos_config = vn->qos_config();
414  is_vn_qos_config = true;
415  }
416  }
417 
418  if (qos_config_ != qos_config) {
420  ret = true;
421  }
422 
423  if (is_vn_qos_config != is_vn_qos_config_) {
425  ret = true;
426  }
427  }
428 
429  if (max_flows_ != data->max_flows_) {
430  if(data->max_flows_ != 0) {
431  max_flows_ = data->max_flows_;
432  } else {
433  uint32_t max_flow = 0;
434  if (vn) {
435  max_flow = vn->vn_max_flows();
436  }
437  max_flows_ = max_flow;
438  }
439  ret = true;
440  }
441 
442  }
443 
444  if (local_preference_ != data->local_preference_) {
446  *local_pref_changed = true;
447  ret = true;
448  }
449 
450  if (need_linklocal_ip_ != data->need_linklocal_ip_) {
452  ret = true;
453  }
454 
455  // CopyIpAddress uses fabric_port_. So, set it before CopyIpAddresss
456  if (fabric_port_ != data->fabric_port_) {
457  fabric_port_ = data->fabric_port_;
458  ret = true;
459  }
460 
463  ret = true;
464  }
465 
466  //If nova gives a instance-ip then retain that
467  //ip address as primary ip address
468  //Else choose the ip address to be old
469  //primary ip address as long as its present in
470  //new configuration also
471  Ip4Address ipaddr = data->addr_;
472  if (nova_ip_addr_ != Ip4Address(0)) {
473  ipaddr = nova_ip_addr_;
474  }
475  if (CopyIpAddress(ipaddr)) {
476  ret = true;
477  }
478 
479  Ip6Address ip6_addr = data->ip6_addr_;
480  if (nova_ip6_addr_ != Ip6Address()) {
481  ip6_addr = nova_ip6_addr_;
482  }
483 
484  if (CopyIp6Address(ip6_addr)) {
485  ret = true;
486  }
487 
488  if (dhcp_enable_ != data->dhcp_enable_) {
489  dhcp_enable_ = data->dhcp_enable_;
490  ret = true;
491  }
492 
493  if (dhcp_enable_v6_ != data->dhcp_enable_v6_){
495  ret = true;
496  }
497 
498  if (cfg_igmp_enable_ != data->cfg_igmp_enable_) {
500  ret = true;
501  }
502 
503  if (igmp_enabled_ != data->igmp_enabled_) {
505  ret = true;
506  }
507 
510  ret = true;
511  }
512 
513  if (proxy_arp_mode_ != data->proxy_arp_mode_) {
515  ret = true;
516  }
517 
518  if (disable_policy_ != data->disable_policy_) {
520  ret = true;
521  }
522 
523  if (is_left_si_ != data->is_left_si_) {
524  is_left_si_ = data->is_left_si_;
525  ret = true;
526  }
527 
528  if (service_mode_ != data->service_mode_) {
530  ret = true;
531  }
532 
533  if (si_other_end_vmi_ != data->si_other_end_vmi_) {
535  ret = true;
536  }
537 
538  // Update MAC address if not set already. We dont allow modification
539  // of mac-address
540  bool mac_set = true;
541  if (vm_mac_ == MacAddress::kZeroMac) {
542  mac_set = false;
543  }
544  if (mac_set_ != mac_set) {
545  mac_set_ = mac_set;
546  }
547 
548  if (mac_set_ == false) {
549  boost::system::error_code ec;
550  mac_set_ = true;
551  vm_mac_ = MacAddress::FromString(data->vm_mac_, &ec);
552  if (ec.value() != 0) {
553  vm_mac_ = MacAddress();
554  mac_set_ = false;
555  }
556 
557  if (vmi_type_ == VHOST) {
558  vm_mac_ = GetVifMac(table->agent());
559  if (vm_mac_ != MacAddress()) {
560  mac_set_ = true;
561  }
562  }
563  ret = true;
564  }
565 
566  if (admin_state_ != data->admin_state_) {
567  admin_state_ = data->admin_state_;
568  ret = true;
569  }
570 
571  if (subnet_ != data->subnet_ || subnet_plen_ != data->subnet_plen_) {
572  subnet_ = data->subnet_;
573  subnet_plen_ = data->subnet_plen_;
574  }
575 
576  if (learning_enabled_ != data->learning_enabled_) {
578  *etree_leaf_mode_changed = true;
579  ret = true;
580  }
581 
582  if (service_intf_type_ != data->service_intf_type_) {
584  ret = true;
585  }
586  // Copy DHCP options; ret is not modified as there is no dependent action
588 
589  // Audit operational and config floating-ip list
590  FloatingIpSet &old_fip_list = floating_ip_list_.list_;
591  const FloatingIpSet &new_fip_list = data->floating_ip_list_.list_;
592  if (AuditList<FloatingIpList, FloatingIpSet::iterator>
593  (floating_ip_list_, old_fip_list.begin(), old_fip_list.end(),
594  new_fip_list.begin(), new_fip_list.end())) {
595  ret = true;
596  assert(floating_ip_list_.list_.size() ==
598  }
599 
600  // Audit operational and config alias-ip list
601  AliasIpSet &old_aip_list = alias_ip_list_.list_;
602  const AliasIpSet &new_aip_list = data->alias_ip_list_.list_;
603  if (AuditList<AliasIpList, AliasIpSet::iterator>
604  (alias_ip_list_, old_aip_list.begin(), old_aip_list.end(),
605  new_aip_list.begin(), new_aip_list.end())) {
606  ret = true;
607  assert(alias_ip_list_.list_.size() ==
609  }
610 
611  // Audit operational and config Service VLAN list
612  ServiceVlanSet &old_service_list = service_vlan_list_.list_;
613  const ServiceVlanSet &new_service_list = data->service_vlan_list_.list_;
614  if (AuditList<ServiceVlanList, ServiceVlanSet::iterator>
615  (service_vlan_list_, old_service_list.begin(), old_service_list.end(),
616  new_service_list.begin(), new_service_list.end())) {
617  ret = true;
618  }
619 
620  // Audit operational and config Static Route list
621  StaticRouteSet &old_route_list = static_route_list_.list_;
622  const StaticRouteSet &new_route_list = data->static_route_list_.list_;
623  if (AuditList<StaticRouteList, StaticRouteSet::iterator>
624  (static_route_list_, old_route_list.begin(), old_route_list.end(),
625  new_route_list.begin(), new_route_list.end())) {
626  *static_route_config_changed = true;
627  ret = true;
628  }
629 
630  // Audit operational and config allowed address pair
632  const AllowedAddressPairSet &new_aap_list = data->
634  if (AuditList<AllowedAddressPairList, AllowedAddressPairSet::iterator>
635  (allowed_address_pair_list_, old_aap_list.begin(), old_aap_list.end(),
636  new_aap_list.begin(), new_aap_list.end())) {
637  ret = true;
638  }
639 
640  // Audit operational and config Security Group list
641  SecurityGroupEntrySet &old_sg_list = sg_list_.list_;
642  const SecurityGroupEntrySet &new_sg_list = data->sg_list_.list_;
643  *sg_changed =
644  AuditList<SecurityGroupEntryList, SecurityGroupEntrySet::iterator>
645  (sg_list_, old_sg_list.begin(), old_sg_list.end(),
646  new_sg_list.begin(), new_sg_list.end());
647  if (*sg_changed) {
648  ret = true;
649  }
650 
651  VrfAssignRuleSet &old_vrf_assign_list = vrf_assign_rule_list_.list_;
652  const VrfAssignRuleSet &new_vrf_assign_list = data->
654  if (AuditList<VrfAssignRuleList, VrfAssignRuleSet::iterator>
655  (vrf_assign_rule_list_, old_vrf_assign_list.begin(),
656  old_vrf_assign_list.end(), new_vrf_assign_list.begin(),
657  new_vrf_assign_list.end())) {
658  ret = true;
659  }
660 
661  FatFlowEntrySet &old_fat_flow_entry_list = fat_flow_list_.list_;
662  const FatFlowEntrySet &new_fat_flow_entry_list =
663  data->fat_flow_list_.list_;
664  if (AuditList<FatFlowList, FatFlowEntrySet::iterator>
665  (fat_flow_list_, old_fat_flow_entry_list.begin(),
666  old_fat_flow_entry_list.end(), new_fat_flow_entry_list.begin(),
667  new_fat_flow_entry_list.end())) {
668  ret = true;
669  }
670 
671  InstanceIpSet &old_ipv4_list = instance_ipv4_list_.list_;
672  InstanceIpSet new_ipv4_list = data->instance_ipv4_list_.list_;
673  //Native ip of instance should be advertised even if
674  //config is not present, so manually add that entry
675  if (nova_ip_addr_ != Ip4Address(0) &&
676  data->vrf_name_ != Agent::NullString()) {
677  new_ipv4_list.insert(
679  data->ecmp_, true, false, false, false,
680  Ip4Address(0)));
681  }
682  if (AuditList<InstanceIpList, InstanceIpSet::iterator>
683  (instance_ipv4_list_, old_ipv4_list.begin(), old_ipv4_list.end(),
684  new_ipv4_list.begin(), new_ipv4_list.end())) {
685  ret = true;
686  }
687 
688  InstanceIpSet &old_ipv6_list = instance_ipv6_list_.list_;
689  InstanceIpSet new_ipv6_list = data->instance_ipv6_list_.list_;
690  if (nova_ip6_addr_ != Ip6Address() &&
691  data->vrf_name_ != Agent::NullString()) {
692  new_ipv6_list.insert(
694  data->ecmp6_, true, false, false, false,
695  Ip4Address(0)));
696  }
697 
698  if (AuditList<InstanceIpList, InstanceIpSet::iterator>
699  (instance_ipv6_list_, old_ipv6_list.begin(), old_ipv6_list.end(),
700  new_ipv6_list.begin(), new_ipv6_list.end())) {
701  ret = true;
702  }
703 
705  const BridgeDomainEntrySet &new_bd_list = data->bridge_domain_list_.list_;
706  if (AuditList<BridgeDomainList, BridgeDomainEntrySet::iterator>
707  (bridge_domain_list_, old_bd_list.begin(), old_bd_list.end(),
708  new_bd_list.begin(), new_bd_list.end())) {
709  ret = true;
710  }
711 
712 
713  TagEntrySet &old_tag_list = tag_list_.list_;
714  const TagEntrySet &new_tag_list = data->tag_list_.list_;
715  *tag_changed = AuditList<TagEntryList, TagEntrySet::iterator>(tag_list_,
716  old_tag_list.begin(),
717  old_tag_list.end(),
718  new_tag_list.begin(),
719  new_tag_list.end());
720  if (*tag_changed) {
721  ret = true;
722  }
723 
725  const VmiReceiveRouteSet &new_recv_list = data->receive_route_list_.list_;
726  *tag_changed = AuditList<VmiReceiveRouteList,
727  VmiReceiveRouteSet::iterator>(receive_route_list_,
728  old_recv_list.begin(),
729  old_recv_list.end(),
730  new_recv_list.begin(),
731  new_recv_list.end());
732  if (*tag_changed) {
733  ret = true;
734  }
735  bool pbb_interface = new_bd_list.size() ? true: false;
736  if (pbb_interface_ != pbb_interface) {
738  *etree_leaf_mode_changed = true;
739  ret = true;
740  }
741 
742  if (data->addr_ != Ip4Address(0) && ecmp_ != data->ecmp_) {
743  ecmp_ = data->ecmp_;
744  *ecmp_changed = true;
745  }
746 
747  if (!data->ip6_addr_.is_unspecified() && ecmp6_ != data->ecmp6_) {
748  ecmp6_ = data->ecmp6_;
749  *ecmp_changed = true;
750  }
751 
752  if (service_ip_ecmp_ != data->service_ip_ecmp_ ||
753  service_ip_ != data->service_ip_) {
755  service_ip_ = data->service_ip_;
756  *ecmp_changed = true;
757  ret = true;
758  }
759 
760  if (service_ip_ecmp6_ != data->service_ip_ecmp6_ ||
761  service_ip6_ != data->service_ip6_) {
763  service_ip6_ = data->service_ip6_;
764  *ecmp_changed = true;
765  ret = true;
766  }
767 
769  device_type_ != data->device_type_) {
770  device_type_= data->device_type_;
771  ret = true;
772  }
773 
776  if (rx_vlan_id_ != data->rx_vlan_id_) {
777  rx_vlan_id_ = data->rx_vlan_id_;
778  ret = true;
779  }
780  if (tx_vlan_id_ != data->tx_vlan_id_) {
781  tx_vlan_id_ = data->tx_vlan_id_;
782  ret = true;
783  }
784  }
785 
786  if (hbs_intf_type_ != data->hbs_intf_type_) {
788  ret = true;
789  }
790 
791  if (logical_interface_ != data->logical_interface_) {
793  ret = true;
794  }
795  Interface *new_parent = NULL;
796  InterfaceList new_parent_list;
797  if (data->physical_interface_list_.empty() == false) {
798  std::vector<std::string>::const_iterator ptr;
799  for (ptr = data->physical_interface_list_.begin();
800  ptr < data->physical_interface_list_.end(); ptr++) {
801  PhysicalInterfaceKey key(*ptr);
802  new_parent_list.push_back(static_cast<Interface *>
803  (table->agent()->interface_table()->FindActiveEntry(&key)));
804  }
805  } else if (data->physical_interface_.empty() == false) {
807  new_parent = static_cast<Interface *>
808  (table->agent()->interface_table()->FindActiveEntry(&key));
809  } else if (data->parent_vmi_.is_nil() == false) {
811  new_parent = static_cast<Interface *>
812  (table->agent()->interface_table()->FindActiveEntry(&key));
813  } else {
814  new_parent = parent_.get();
815  }
816 
817  if (parent_list_ != new_parent_list) {
818  parent_list_ = new_parent_list;
819  ret = true;
820  }
821 
822  if (parent_ != new_parent) {
823  parent_ = new_parent;
824  ret = true;
825  }
826 
827  if (table) {
828  if (os_index() == kInvalidIndex) {
829  GetOsParams(table->agent());
830  if (os_index() != kInvalidIndex)
831  ret = true;
832  }
833  }
834 
835  if (ecmp_load_balance_ != data->ecmp_load_balance_) {
837  *ecmp_load_balance_changed = true;
838  ret = true;
839  }
840 
841  if (slo_list_ != data->slo_list_) {
842  slo_list_ = data->slo_list_;
843  }
844 
845  if (logical_router_uuid() != data->logical_router_uuid_) {
847  ret = true;
848  }
849  return ret;
850 }
851 
853 // VmInterfaceNovaData routines
856  VmInterfaceData(NULL, NULL, INSTANCE_MSG, Interface::TRANSPORT_INVALID),
857  ipv4_addr_(),
858  ipv6_addr_(),
859  mac_addr_(),
860  vm_name_(),
861  vm_uuid_(),
862  vm_project_uuid_(),
863  physical_interface_(),
864  tx_vlan_id_(),
865  rx_vlan_id_(),
866  vhostuser_mode_() {
867 }
868 
870  const Ip6Address &ipv6_addr,
871  const std::string &mac_addr,
872  const std::string vm_name,
873  boost::uuids::uuid vm_uuid,
874  boost::uuids::uuid vm_project_uuid,
875  const std::string &physical_interface,
876  uint16_t tx_vlan_id,
877  uint16_t rx_vlan_id,
878  VmInterface::DeviceType device_type,
879  VmInterface::VmiType vmi_type,
880  uint8_t vhostuser_mode,
881  Interface::Transport transport,
882  uint8_t link_state) :
883  VmInterfaceData(NULL, NULL, INSTANCE_MSG, transport),
884  ipv4_addr_(ipv4_addr),
885  ipv6_addr_(ipv6_addr),
886  mac_addr_(mac_addr),
887  vm_name_(vm_name),
888  vm_uuid_(vm_uuid),
889  vm_project_uuid_(vm_project_uuid),
890  physical_interface_(physical_interface),
891  tx_vlan_id_(tx_vlan_id),
892  rx_vlan_id_(rx_vlan_id),
893  device_type_(device_type),
894  vmi_type_(vmi_type),
895  vhostuser_mode_(vhostuser_mode), link_state_(link_state) {
896 }
897 
899 }
900 
902  const VmInterfaceKey *key) const {
903  Interface *parent = NULL;
908  parent = static_cast<Interface *>
909  (table->agent()->interface_table()->FindActiveEntry(&key_1));
910  assert(parent != NULL);
911  }
912 
913  boost::system::error_code ec;
915  if (ec.value() != 0) {
916  mac.Zero();
917  }
918 
919  /* OS oper state is passed by PortIpc module (VmiSubscribeEntry) which
920  * invokes NovaAdd in case of vmware */
921  bool os_oper_state = link_state_;
922  VmInterface *vmi =
923  new VmInterface(key->uuid_, key->name_, ipv4_addr_, mac, vm_name_,
926  vhostuser_mode_, os_oper_state, logical_router_uuid_);
928  vmi->nova_ip_addr_ = ipv4_addr_;
929  vmi->nova_ip6_addr_ = ipv6_addr_;
930 
931  return vmi;
932 }
933 
935  VmInterface *vmi) const {
936  if (vmi->IsConfigurerSet(VmInterface::INSTANCE_MSG) == false)
937  return true;
938 
939  VmInterfaceConfigData data(NULL, NULL);
940  vmi->Resync(table, &data);
943  table->operdb()->bgp_as_a_service()->DeleteVmInterface(vmi->GetUuid());
945  return true;
946 }
947 
949  VmInterface *vmi,
950  bool *force_update) const {
951  bool ret = false;
952 
953  if (vmi->vm_project_uuid_ != vm_project_uuid_) {
955  ret = true;
956  }
957 
958  if (vmi->tx_vlan_id_ != tx_vlan_id_) {
959  vmi->tx_vlan_id_ = tx_vlan_id_;
960  ret = true;
961  }
962 
963  if (vmi->rx_vlan_id_ != rx_vlan_id_) {
964  vmi->rx_vlan_id_ = rx_vlan_id_;
965  ret = true;
966  }
967 
968  if (vmi->nova_ip_addr_ != ipv4_addr_) {
969  vmi->nova_ip_addr_ = ipv4_addr_;
970  ret = true;
971  }
972 
973  if (vmi->nova_ip6_addr_ != ipv6_addr_) {
974  vmi->nova_ip6_addr_ = ipv6_addr_;
975  ret = true;
976  }
977 
979 
980  return ret;
981 }
982 
983 // Add a VM-Interface
984 void VmInterface::NovaAdd(InterfaceTable *table, const uuid &intf_uuid,
985  const string &os_name, const Ip4Address &addr,
986  const string &mac, const string &vm_name,
987  const uuid &vm_project_uuid, uint16_t tx_vlan_id,
988  uint16_t rx_vlan_id, const std::string &parent,
989  const Ip6Address &ip6,
990  uint8_t vhostuser_mode,
991  Interface::Transport transport,
992  uint8_t link_state) {
994  req.key.reset(new VmInterfaceKey(AgentKey::ADD_DEL_CHANGE, intf_uuid,
995  os_name));
996 
997  req.data.reset(new VmInterfaceNovaData(addr, ip6, mac, vm_name,
998  nil_uuid(), vm_project_uuid, parent,
999  tx_vlan_id, rx_vlan_id,
1002  vhostuser_mode,
1003  transport, link_state));
1004  table->Enqueue(&req);
1005 }
1006 
1007 // Delete a VM-Interface
1008 void VmInterface::Delete(InterfaceTable *table, const uuid &intf_uuid,
1009  VmInterface::Configurer configurer) {
1011  req.key.reset(new VmInterfaceKey(AgentKey::ADD_DEL_CHANGE, intf_uuid, ""));
1012 
1013  if (configurer == VmInterface::CONFIG) {
1014  req.data.reset(new VmInterfaceConfigData(NULL, NULL));
1015  } else if (configurer == VmInterface::INSTANCE_MSG) {
1016  req.data.reset(new VmInterfaceNovaData());
1017  } else {
1018  assert(0);
1019  }
1020  table->Enqueue(&req);
1021 }
1022 
1024 // VmInterfaceMirrorData routines
1027  VmInterface *vmi,
1028  bool *force_update) const {
1029  bool ret = false;
1030 
1031  MirrorEntry *mirror_entry = NULL;
1032  if (mirror_enable_ == true) {
1033  mirror_entry = table->FindMirrorRef(analyzer_name_);
1034  }
1035 
1036  if (vmi->mirror_entry_ != mirror_entry) {
1037  vmi->mirror_entry_ = mirror_entry;
1038  ret = true;
1039  }
1040 
1041  return ret;
1042 }
1043 
1045 // VmInterfaceIpAddressData routines
1047 // Update for VM IP address only
1048 // For interfaces in IP Fabric VRF, we send DHCP requests to external servers
1049 // if config doesnt provide an address. This address is updated here.
1051  VmInterface *vmi,
1052  bool *force_update) const {
1053  bool ret = false;
1054 
1055  if (vmi->os_index() == VmInterface::kInvalidIndex) {
1056  vmi->GetOsParams(table->agent());
1057  if (vmi->os_index() != VmInterface::kInvalidIndex)
1058  ret = true;
1059  }
1060 
1061  // Ignore IP address change if L3 Forwarding not enabled
1062  if (!vmi->layer3_forwarding_) {
1063  return ret;
1064  }
1065 
1066  Ip4Address addr = Ip4Address(0);
1067  if (vmi->CopyIpAddress(addr)) {
1068  ret = true;
1069  }
1070 
1071  return ret;
1072 }
1073 
1075 // VmInterfaceOsOperStateData routines
1077 // Resync oper-state for the interface
1079  VmInterface *vmi,
1080  bool *force_update) const {
1081  bool ret = false;
1082  Agent *agent = table->agent();
1083 
1084  uint32_t old_os_index = vmi->os_index();
1085  bool old_ipv4_active = vmi->ipv4_active_;
1086  bool old_ipv6_active = vmi->ipv6_active_;
1087 
1088  vmi->GetOsParams(agent);
1089  /* In DPDK mode (where we have interfaces of type TRANSPORT_PMD), oper_state
1090  * is updated based on Netlink notification received from vrouter */
1091  if ((vmi->transport_ == Interface::TRANSPORT_PMD) ||
1092  vmi->NeedDefaultOsOperStateDisabled(agent)) {
1093  if (vmi->os_params_.os_oper_state_ != oper_state_) {
1095  ret = true;
1096  }
1097  }
1098  if (vmi->os_index() != old_os_index)
1099  ret = true;
1100 
1101  vmi->ipv4_active_ = vmi->IsIpv4Active();
1102  if (vmi->ipv4_active_ != old_ipv4_active)
1103  ret = true;
1104 
1105  vmi->ipv6_active_ = vmi->IsIpv6Active();
1106  if (vmi->ipv6_active_ != old_ipv6_active)
1107  ret = true;
1108  // Update the Oper data for SubInterfaces if attached to parent interface.
1109  if (ret == true)
1110  vmi->UpdateOperStateOfSubIntf(table);
1111 
1112  return ret;
1113 }
1114 
1116 // Global VRouter config update
1119  VmInterface *vmi,
1120  bool *force_update) const {
1121  bool ret = false;
1122 
1123  if (layer3_forwarding_ != vmi->layer3_forwarding_) {
1125  *force_update = true;
1126  ret = true;
1127  }
1128 
1129  if (bridging_ != vmi->bridging_) {
1130  vmi->bridging_= bridging_;
1131  *force_update = true;
1132  ret = true;
1133  }
1134 
1135  if (vxlan_id_ != vmi->vxlan_id_)
1136  ret = true;
1137 
1138  if (vmi->ecmp_load_balance().use_global_vrouter()) {
1139  *force_update = true;
1140  ret = true;
1141  }
1142 
1143  return ret;
1144 }
1145 
1147 // Health Check update
1150  VmInterfaceData(NULL, NULL, HEALTH_CHECK, Interface::TRANSPORT_INVALID) {
1151 }
1152 
1154 }
1155 
1157  VmInterface *vmi,
1158  bool *force_update) const {
1159  return vmi->UpdateIsHealthCheckActive();
1160 }
1161 
1163  VmInterfaceData(NULL, NULL, DROP_NEW_FLOWS, Interface::TRANSPORT_INVALID),
1164  drop_new_flows_(drop_new_flows) {
1165 }
1166 
1168 }
1169 
1171  VmInterface *vmi,
1172  bool *force_update) const {
1173  if (vmi->drop_new_flows_ != drop_new_flows_) {
1175  return true;
1176  }
1177 
1178  return false;
1179 }
1180 
1182  bool is_hc_active = true;
1183  HealthCheckInstanceSet::iterator it = hc_instance_set_.begin();
1184  while (it != hc_instance_set_.end()) {
1185  if ((*it)->active() == false) {
1186  // if any of the health check instance reports not active
1187  // status mark interface health check status inactive
1188  is_hc_active = false;
1189  break;
1190  }
1191  it++;
1192  }
1193 
1194  if (is_hc_active_ != is_hc_active) {
1196  return true;
1197  }
1198  return false;
1199 }
1200 
1202 // VmInterfaceIfNameData routines
1203 // The request is used to add/delete interface with only ifname as data
1206  VmInterfaceData(NULL, NULL, INSTANCE_MSG, Interface::TRANSPORT_INVALID),
1207  ifname_() {
1208 }
1209 
1211 (const std::string &ifname):
1212  VmInterfaceData(NULL, NULL, INSTANCE_MSG, Interface::TRANSPORT_ETHERNET),
1213  ifname_(ifname) {
1214 }
1215 
1217 }
1218 
1220  const VmInterfaceKey *key) const {
1221  Agent *agent = table->agent();
1222  /* OS oper state is disabled by default in Vmware mode */
1223  bool os_oper_state = !agent->isVmwareMode();
1224  VmInterface *vmi =
1225  new VmInterface(key->uuid_, key->name_, Ip4Address(), MacAddress(), "",
1226  nil_uuid(), VmInterface::kInvalidVlanId,
1229  VmInterface::vHostUserClient, os_oper_state,
1232  return vmi;
1233 }
1234 
1236  VmInterface *vmi) const {
1237  if (vmi->IsConfigurerSet(VmInterface::INSTANCE_MSG) == false)
1238  return true;
1239 
1240  VmInterfaceConfigData data(NULL, NULL);
1241  vmi->Resync(table, &data);
1244  table->operdb()->bgp_as_a_service()->DeleteVmInterface(vmi->GetUuid());
1246  return true;
1247 }
1248 
1250  VmInterface *vmi,
1251  bool *force_update) const {
1252  bool ret = false;
1254  return ret;
1255 }
1257  VmInterfaceData(NULL, NULL, HEALTH_CHECK, Interface::TRANSPORT_INVALID),
1258  is_add(true), mac_ip_list_() {
1259 }
1261 
1263  LearntMacIpSet::iterator it = data->mac_ip_list_.list_.begin();
1264  while (it != data->mac_ip_list_.list_.end()) {
1265  if (data->is_add) {
1266  learnt_mac_ip_list_.Insert(it.operator->());
1267  } else {
1268  learnt_mac_ip_list_.Remove(it.operator->());
1269  }
1270  it++;
1271  }
1272  return true;
1273 }
1275  VmInterface *vmi,
1276  bool *force_update) const {
1277  return vmi->copyMacIpData(this);
1278 }
1279 
1280 // Utility methods to enqueue add/delete requests
1282  const string &ifname) {
1284  req.key.reset(new VmInterfaceKey(AgentKey::ADD_DEL_CHANGE, uuid,
1285  ifname));
1286 
1287  req.data.reset(new VmInterfaceIfNameData(ifname));
1288  table->Enqueue(&req);
1289 }
1290 
1293  req.key.reset(new VmInterfaceKey(AgentKey::ADD_DEL_CHANGE, uuid, ""));
1294  req.data.reset(new VmInterfaceIfNameData());
1295  table->Enqueue(&req);
1296 }
1297 
1299 // QoS Config change - used from introspect
1301 void AddVmiQosConfig::HandleRequest() const {
1302  QosResponse *resp = new QosResponse();
1303  resp->set_context(context());
1304 
1305  boost::uuids::uuid vmi_uuid = StringToUuid(std::string(get_vmi_uuid()));
1306  boost::uuids::uuid qos_config_uuid =
1307  StringToUuid(std::string(get_qos_config_uuid()));
1309 
1310  DBRequest req;
1312  req.key.reset(new VmInterfaceKey(AgentKey::RESYNC, vmi_uuid, ""));
1313  req.data.reset(new InterfaceQosConfigData(NULL, NULL, qos_config_uuid));
1314  table->Enqueue(&req);
1315  resp->set_resp("Success");
1316  resp->Response();
1317 }
std::set< AliasIp, AliasIp > AliasIpSet
Definition: vm_interface.h:612
int GetVxLanId() const
Definition: vn.cc:727
virtual VmInterface * OnAdd(const InterfaceTable *table, const VmInterfaceKey *key) const
VmInterface::FloatingIpList floating_ip_list_
std::string analyzer_name_
bool drop_new_flows_
virtual bool OnDelete(const InterfaceTable *table, VmInterface *vmi) const
VmInterface::StaticRouteList static_route_list_
bool is_hc_active_
Definition: interface.h:169
BridgeDomainEntrySet list_
bool pbb_interface() const
std::vector< Interface * > InterfaceList
Definition: agent.h:218
int vxlan_id() const
boost::uuids::uuid parent_vmi_
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
bool isVmwareMode() const
Definition: agent.cc:1033
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
virtual VmInterface * OnAdd(const InterfaceTable *table, const VmInterfaceKey *key) const
boost::uuids::uuid qos_config_uuid_
std::set< VrfAssignRule, VrfAssignRule > VrfAssignRuleSet
Definition: vm_interface.h:864
AliasIpList alias_ip_list_
std::string cfg_name_
const AgentQosConfig * qos_config() const
Definition: interface.h:140
static Agent * GetInstance()
Definition: agent.h:436
static const uint8_t kMaxV6PrefixLen
Definition: address.h:22
static boost::uuids::uuid StringToUuid(const std::string &str)
Definition: string_util.h:145
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
Definition: vrf.h:86
std::set< InstanceIp, InstanceIp > InstanceIpSet
Definition: vm_interface.h:933
boost::uuids::uuid logical_interface_
Interface::MirrorDirection mirror_direction_
OperDhcpOptions oper_dhcp_options_
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
uint8_t vhostuser_mode_
const boost::uuids::uuid & GetUuid() const
Definition: interface.h:113
bool cfg_igmp_enable_
boost::uuids::uuid vmi_cfg_uuid_
void UpdateOperStateOfSubIntf(const InterfaceTable *table)
Definition: interface.cc:1493
VmInterface::VmiType vmi_type_
virtual VmInterface * OnAdd(const InterfaceTable *table, const VmInterfaceKey *key) const
void ResetConfigurer(VmInterface::Configurer type)
uint16_t rx_vlan_id_
bool learning_enabled_
Ip4Address nova_ip_addr_
Ip6Address primary_ip6_addr_
Transport transport_
Definition: interface.h:186
VmInterface::DeviceType device_type_
uint32_t vhost_prefix_len() const
Definition: agent.h:653
bool is_l3mh() const
Definition: agent.h:725
bool igmp_enabled_
uint32_t os_index() const
Definition: interface.h:130
AllowedAddressPairList allowed_address_pair_list_
const AddressList & gateway_list() const
Definition: agent_param.h:191
std::set< BridgeDomain, BridgeDomain > BridgeDomainEntrySet
boost::asio::ip::address IpAddress
Definition: address.h:13
static const MacAddress & vrrp_mac()
Definition: agent.h:439
std::string physical_interface_
VmInterface::InstanceIpList instance_ipv4_list_
const MacAddress & GetVifMac(const Agent *) const
static const MacAddress kZeroMac
Definition: mac_address.h:149
Definition: vm.h:32
VmEntry * FindVmRef(const boost::uuids::uuid &uuid) const
Definition: interface.cc:301
IpAddress service_health_check_ip_
void DelPhysicalDeviceVnEntry(const boost::uuids::uuid &vmi)
VmInterface::InstanceIpList instance_ipv6_list_
std::unique_ptr< DBRequestData > data
Definition: db_table.h:49
InterfaceKey * Clone() const
void Remove(const LearntMacIp *rhs)
ProxyArpMode proxy_arp_mode_
uint32_t vn_max_flows() const
Definition: vn.h:259
Interface::MirrorDirection mirror_direction_
boost::uuids::uuid vm_project_uuid_
std::set< VmiReceiveRoute, VmiReceiveRoute > VmiReceiveRouteSet
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
bool need_linklocal_ip_
boost::uuids::uuid uuid
static const uint8_t kMaxV4PrefixLen
Definition: address.h:20
bool use_global_vrouter() const
Interface::Transport transport_
Definition: interface.h:266
VmInterface::ProxyArpMode proxy_arp_mode_
static void SetIfNameReq(InterfaceTable *table, const boost::uuids::uuid &uuid, const std::string &ifname)
bool pbb_etree_enable() const
Definition: vn.h:210
StaticRouteList static_route_list_
VmInterfaceNewFlowDropData(bool drop_new_flows)
boost::uuids::uuid vm_uuid_
Agent * agent() const
Definition: interface.h:447
VrfEntry * vrf() const
Definition: interface.h:115
bool CopyIp6Address(const Ip6Address &addr)
const boost::uuids::uuid & logical_router_uuid() const
Definition: interface.h:146
boost::uuids::uuid vm_project_uuid_
Ip4Address subnet_
MirrorEntry * FindMirrorRef(const std::string &name) const
Definition: interface.cc:311
VmInterface::BridgeDomainList bridge_domain_list_
uint32_t service_mode_
VrfAssignRuleList vrf_assign_rule_list_
boost::uuids::uuid logical_router_uuid_
Definition: interface.h:267
uint32_t max_flows_
VmInterface::LearntMacIpList mac_ip_list_
std::set< StaticRoute, StaticRoute > StaticRouteSet
Definition: vm_interface.h:701
std::string ToString() const
Definition: mac_address.cc:53
bool flood_unknown_unicast() const
Definition: vn.h:199
std::string name_
Definition: interface.h:245
bool AuditList(List &list, Iterator old_first, Iterator old_last, Iterator new_first, Iterator new_last)
Definition: audit_list.h:14
const VmiEcmpLoadBalance & ecmp_load_balance() const
VmEntryBackRef vm_
virtual void Copy(const VmiEcmpLoadBalance &rhs)
bool ipv6_active_
Definition: interface.h:167
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
bool pbb_interface_
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
void SetConfigurer(VmInterface::Configurer type)
BridgeDomainList bridge_domain_list_
VmInterface::VmiType vmi_type_
friend struct VmInterfaceNovaData
virtual bool OnDelete(const InterfaceTable *table, VmInterface *entry) const
BgpAsAService * bgp_as_a_service() const
Definition: operdb_init.h:77
Ip4Address service_ip_
virtual bool OnDelete(const InterfaceTable *table, VmInterface *entry) const
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
MirrorEntryRef mirror_entry_
bool layer3_forwarding_
void Insert(const LearntMacIp *rhs)
virtual VmInterface * OnAdd(const InterfaceTable *table, const VmInterfaceKey *key) const
bool is_vn_qos_config_
static const uint8_t vHostUserClient
Definition: vm_interface.h:363
uint8_t GetInterfaceTransport() const
Definition: agent.cc:1179
bool IsConfigurerSet(VmInterface::Configurer type)
static const uint32_t kInvalidVlanId
Definition: vm_interface.h:360
VrfEntryRef forwarding_vrf_
VmiReceiveRouteList receive_route_list_
Definition: agent.h:358
bool flood_unknown_unicast() const
Ip6Address service_ip6_
boost::uuids::uuid si_other_end_vmi_
VmInterface::HbsIntfType hbs_intf_type_
VnEntryRef vn_
friend struct VmInterfaceConfigData
const std::string & fabric_interface_name() const
Definition: agent.h:1129
virtual void GetOsParams(Agent *agent)
boost::asio::ip::address_v6 Ip6Address
Definition: address.h:15
Ip4Address router_id() const
Definition: agent.h:666
bool flood_unknown_unicast_
VnEntry * FindVnRef(const boost::uuids::uuid &uuid) const
Definition: interface.cc:306
ServiceVlanList service_vlan_list_
std::unique_ptr< DBRequestKey > key
Definition: db_table.h:48
const std::vector< std::string > & fabric_interface_name_list() const
Definition: agent.h:1133
std::string service_intf_type_
VmInterface::SecurityGroupEntryList sg_list_
DBOperation oper
Definition: db_table.h:42
VmInterface::AliasIpList alias_ip_list_
bool IsIpv4Active() const
LearntMacIpList learnt_mac_ip_list_
boost::uuids::uuid si_other_end_vmi_
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
static const std::string & NullString()
Definition: agent.h:437
uint16_t tx_vlan_id_
VmInterface::VmiType vmi_type_
void set_hbs_intf_type(VmInterface::HbsIntfType val)
OperDhcpOptions oper_dhcp_options_
uint8_t subnet_plen_
IpAddress service_health_check_ip_
bool NeedDefaultOsOperStateDisabled(Agent *agent) const
Definition: interface.cc:1509
VrfEntry * FindVrfRef(const std::string &name) const
Definition: interface.cc:295
bool admin_state_
Definition: interface.h:178
VmInterface::DeviceType device_type_
HealthCheckInstanceSet hc_instance_set_
std::set< SecurityGroupEntry, SecurityGroupEntry > SecurityGroupEntrySet
Definition: vm_interface.h:791
const VnEntry * vn() const
std::vector< std::string > CommunityList
Definition: bgp_config.h:347
std::string mac_addr_
FatFlowList fat_flow_list_
Interface::MirrorDirection mirror_direction() const
std::vector< std::string > physical_interface_list_
AgentParam * params() const
Definition: agent.h:1218
boost::uuids::uuid logical_interface_
InterfaceBackRef parent_
bool disable_policy_
TagEntryList tag_list_
#define MULTICAST_BASE_ADDRESS_PLEN
Definition: agent.h:304
void CopyVhostData(const Agent *agent)
bool service_ip_ecmp6_
boost::asio::ip::address_v4 Ip4Address
Definition: address.h:14
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
Definition: vn.h:151
IFMapNode * ifmap_node() const
Definition: oper_db.h:59
bool ipv4_active_
Definition: interface.h:166
bool layer2_control_word_
bool CopyIpAddress(Ip4Address &addr)
void Delete()
Definition: db_entry.cc:131
std::string physical_interface_
std::string vm_name_
VmInterfaceConfigData(Agent *agent, IFMapNode *node)
VmInterface::HbsIntfType hbs_intf_type_
IFMapObject * GetObject()
Definition: ifmap_node.cc:63
MacAddress vm_mac_
OperDB * operdb() const
Definition: interface.h:448
bool dhcp_enable_v6_
std::set< TagEntry, TagEntry > TagEntrySet
Definition: vm_interface.h:828
bool Resync(const InterfaceTable *table, const VmInterfaceData *data)
boost::uuids::uuid vmi_cfg_uuid_
static void DeleteIfNameReq(InterfaceTable *table, const boost::uuids::uuid &uuid)
VmInterface::TagEntryList tag_list_
const Agent * agent() const
Definition: oper_db.h:65
InterfaceList parent_list_
AgentQosConfigTable * qos_config_table() const
Definition: agent.h:554
bool layer3_forwarding() const
Definition: vn.h:192
VmInterface::FatFlowList fat_flow_list_
std::set< ServiceVlan, ServiceVlan > ServiceVlanSet
Definition: vm_interface.h:664
InstanceIpList instance_ipv4_list_
static const uint32_t kInvalidIndex
Definition: interface.h:70
bool is_vn_qos_config() const
bool mac_ip_learning_enable_
FloatingIpList floating_ip_list_
const std::string & cfg_name() const
InstanceIpList instance_ipv6_list_
AgentQosConfigConstRef qos_config_
Definition: interface.h:187
const AgentQosConfig * qos_config() const
Definition: vn.h:201
std::set< FloatingIp, FloatingIp > FloatingIpSet
Definition: vm_interface.h:567
std::set< FatFlowEntry, FatFlowEntry > FatFlowEntrySet
DBSubOperation
Definition: agent_db.h:96
#define IPV4_MULTICAST_BASE_ADDRESS
Definition: agent.h:302
VrfEntryRef vrf_
Definition: interface.h:163
bool layer2_control_word() const
#define IPV6_MULTICAST_BASE_ADDRESS
Definition: agent.h:303
struct InterfaceOsParams os_params_
Definition: interface.h:188
VmInterfaceKey(AgentKey::DBSubOperation sub_op, const boost::uuids::uuid &uuid, const std::string &name)
void set_logical_router_uuid(const boost::uuids::uuid &logical_router_uuid)
Definition: interface.h:149
bool layer2_control_word() const
Definition: vn.h:218
Interface * AllocEntry(const InterfaceTable *table) const
bool copyMacIpData(const VmInterfaceLearntMacIpData *data)
std::set< AllowedAddressPair, AllowedAddressPair > AllowedAddressPairSet
Definition: vm_interface.h:754
VrfEntry * forwarding_vrf() const
bool subnet_hosts_resolvable() const
Definition: agent_param.h:353
VmiEcmpLoadBalance ecmp_load_balance_
autogen::VirtualMachineInterface * GetVmiCfg() const
VmInterface::DeviceType device_type_
virtual bool OnResync(const InterfaceTable *table, VmInterface *vmi, bool *force_update) const
bool bridging() const
Definition: vn.h:191
std::string analyzer_name_
static MacAddress FromString(const std::string &str, boost::system::error_code *error=NULL)
Definition: mac_address.cc:71
void Zero()
Definition: mac_address.h:131
void DeleteVmInterface(const boost::uuids::uuid &vmi_uuid)
static void NovaAdd(InterfaceTable *table, const boost::uuids::uuid &intf_uuid, const std::string &os_name, const Ip4Address &addr, const std::string &mac, const std::string &vn_name, const boost::uuids::uuid &vm_project_uuid, uint16_t tx_vlan_id, uint16_t rx_vlan_id, const std::string &parent, const Ip6Address &ipv6, uint8_t vhostuser_mode, Interface::Transport transport, uint8_t link_state)
std::string service_intf_type_
UuidList slo_list_
MirrorDirection
Definition: interface.h:55
boost::uuids::uuid uuid_
Definition: interface.h:244
VmiEcmpLoadBalance ecmp_load_balance_
bool IsIpv6Active() const
VmInterface::ServiceVlanList service_vlan_list_
bool UpdateIsHealthCheckActive()
Ip6Address nova_ip6_addr_
VmInterface::VmiReceiveRouteList receive_route_list_
SecurityGroupEntryList sg_list_
boost::uuids::uuid vn_uuid_
bool is_hc_active() const
Definition: interface.h:118
const VmEntry * vm() const
bool CopyConfig(const InterfaceTable *table, const VmInterfaceConfigData *data, bool *sg_changed, bool *ecmp_changed, bool *local_pref_changed, bool *ecmp_load_balance_changed, bool *static_route_config_changed, bool *etree_leaf_mode_changed, bool *tag_changed)
bool drop_new_flows() const
uint32_t local_preference_
bool service_ip_ecmp_
const std::string & fabric_policy_vrf_name() const
Definition: agent.h:908