OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
agent_sandesh.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include <cmn/agent_cmn.h>
6 
7 #include <vnc_cfg_types.h>
8 #include <agent_types.h>
9 
10 #include <oper/peer.h>
11 #include <oper/vrf.h>
12 #include <oper/interface_common.h>
13 #include <oper/health_check.h>
14 #include <oper/nexthop.h>
15 #include <oper/vn.h>
16 #include <oper/vm.h>
17 #include <oper/mirror_table.h>
18 #include <oper/vxlan.h>
19 #include <oper/service_instance.h>
20 #include <filter/acl.h>
21 #include <oper/mpls.h>
22 #include <oper/route_common.h>
23 #include <oper/sg.h>
24 #include <oper/agent_sandesh.h>
25 #include <oper/vrf_assign.h>
26 #include <oper/forwarding_class.h>
27 #include <oper/qos_config.h>
28 #include <oper/qos_queue.h>
29 #include <oper/bridge_domain.h>
30 #include <oper/tag.h>
32 #include <filter/acl.h>
33 #include <filter/policy_set.h>
34 #include <oper/crypt_tunnel.h>
35 #include <oper/multicast_policy.h>
36 
38 // Utility routines
40 static bool MatchSubString(const string &str, const string &sub_str) {
41  if (sub_str.empty())
42  return true;
43 
44  return (str.find(sub_str) != string::npos);
45 }
46 
47 AgentVnSandesh::AgentVnSandesh(const std::string &context,
48  const std::string &name,
49  const std::string &u,
50  const std::string &vxlan_id,
51  const std::string &ipam_name) :
52  AgentSandesh(context, ""), name_(name), uuid_str_(u),
53  vxlan_id_(vxlan_id), ipam_name_(ipam_name) {
54 
55  boost::system::error_code ec;
56  uuid_ = StringToUuid(u);
57 }
58 
59 static bool MatchUuid(const string &uuid_str, const boost::uuids::uuid &u,
60  const boost::uuids::uuid val) {
61  if (uuid_str.empty())
62  return true;
63  return u == val;
64 }
65 
67 // Sandesh routines per DBTable
70  return static_cast<DBTable *>(Agent::GetInstance()->vn_table());
71 }
72 
74  resp_ = new VnListResp();
75 }
76 
77 bool AgentVnSandesh::Filter(const DBEntryBase *entry) {
78  const VnEntry *vn = dynamic_cast<const VnEntry *>(entry);
79  assert(vn);
80 
81  if (MatchSubString(vn->GetName(), name_) == false)
82  return false;
83 
84  if (MatchUuid(uuid_str_ , uuid_, vn->GetUuid()) == false)
85  return false;
86 
87  if (vxlan_id_.empty() == false) {
88  if (((vn->GetVxLanId()) == boost::lexical_cast<int>(vxlan_id_)) == false) {
89  return false;
90  }
91  }
92 
93  const std::vector<VnIpam> VnIpams = vn->GetVnIpam();
94  std::vector<VnIpam>::const_iterator pos;
95  bool ipam_flag = true;
96  for(pos=VnIpams.begin();pos < VnIpams.end();pos++) {
97  if ((MatchSubString(pos->ipam_name , ipam_name_) == true)) {
98  ipam_flag = false;
99  }
100  }
101  if (ipam_flag == true) {
102  return false;
103  }
104 
105  return true;
106 }
107 
109  args->Add("name", name_);
110  args->Add("uuid", uuid_str_);
111  args->Add("vxlan_id", vxlan_id_);
112  args->Add("ipam_name", ipam_name_);
113 
114  return true;
115 }
116 
118  return static_cast<DBTable *>(Agent::GetInstance()->sg_table());
119 }
120 
122  resp_ = new SgListResp();
123 }
124 
126  return static_cast<DBTable *>(Agent::GetInstance()->vm_table());
127 }
128 
130  resp_ = new VmListResp();
131 }
132 
133 AgentIntfSandesh::AgentIntfSandesh(const std::string &context,
134  const std::string &type,
135  const std::string &name,
136  const std::string &u,
137  const std::string &vn,
138  const std::string &mac,
139  const std::string &v4,
140  const std::string &v6,
141  const std::string &parent,
142  const std::string &ip_active,
143  const std::string &ip6_active,
144  const std::string &l2_active) :
145  AgentSandesh(context, ""), type_(type), name_(name), uuid_str_(u),
146  vn_(vn), mac_str_(mac), v4_str_(v4), v6_str_(v6),
147  parent_uuid_str_(parent), ip_active_str_(ip_active),
148  ip6_active_str_(ip6_active), l2_active_str_(l2_active) {
149 
150  boost::system::error_code ec;
151  uuid_ = StringToUuid(u);
152  v4_ = Ip4Address::from_string(v4, ec);
153  v6_ = Ip6Address::from_string(v6, ec);
154  parent_uuid_ = StringToUuid(parent);
155 }
156 
158  return static_cast<DBTable *>(Agent::GetInstance()->interface_table());
159 }
160 
162  resp_ = new ItfResp();
163 }
164 
166  const Interface *intf = dynamic_cast<const Interface *>(entry);
167  assert(intf);
168 
169  if (MatchSubString(intf->name(), name_) == false)
170  return false;
171 
172  if (type_.empty() == false) {
173  if (type_ == "physical" &&
174  (intf->type() != Interface::PHYSICAL &&
175  intf->type() != Interface::REMOTE_PHYSICAL))
176  return false;
177  if (type_ == "logical" && intf->type() != Interface::LOGICAL)
178  return false;
179  if (type_ == "vmi" && intf->type() != Interface::VM_INTERFACE)
180  return false;
181  if (type_ == "inet" && intf->type() != Interface::INET)
182  return false;
183  if (type_ == "pkt" && intf->type() != Interface::PACKET)
184  return false;
185  }
186 
187  if (MatchUuid(uuid_str_, uuid_, intf->GetUuid()) == false)
188  return false;
189 
190  // vn_, mac_str_, v4_str_ or v6_str_ set means get VM-Interfaces only
191  if (vn_.empty() == false || mac_str_.empty() == false ||
192  v4_str_.empty() == false || v6_str_.empty() == false) {
193  if (intf->type() != Interface::VM_INTERFACE)
194  return false;
195  }
196 
197  if (ip_active_str_.empty() == false) {
198  if (ip_active_str_ == "no" || ip_active_str_ == "inactive") {
199  if (intf->ipv4_active())
200  return false;
201  }
202  }
203 
204  if (ip6_active_str_.empty() == false) {
205  if (ip6_active_str_ == "no" || ip6_active_str_ == "inactive") {
206  if (intf->ipv6_active())
207  return false;
208  }
209  }
210 
211  if (l2_active_str_.empty() == false) {
212  if (l2_active_str_ == "no" || l2_active_str_ == "inactive") {
213  if (intf->l2_active())
214  return false;
215  }
216  }
217 
218  const LogicalInterface *li = dynamic_cast<const LogicalInterface *>(entry);
219  if (li) {
220  if (parent_uuid_str_.empty() == false && parent_uuid_.is_nil() == false
221  && li->physical_interface()) {
222  if (li->physical_interface()->GetUuid() != parent_uuid_)
223  return false;
224  }
225 
226  return true;
227  }
228 
229  const VmInterface *vmi = dynamic_cast<const VmInterface *>(entry);
230  if (vmi == NULL)
231  return true;
232 
233  if (vn_.empty() == false && vmi->vn()) {
234  if (MatchSubString(vmi->vn()->GetName(), vn_) == false)
235  return false;
236  }
237 
238  if (MatchSubString(vmi->vm_mac().ToString(), mac_str_) == false)
239  return false;
240 
241  if (v4_str_.empty() == false) {
242  if (v4_ != vmi->primary_ip_addr()) {
243  return false;
244  }
245  }
246 
247  if (v6_str_.empty() == false) {
248  if (v6_ != vmi->primary_ip6_addr()) {
249  return false;
250  }
251  }
252 
253  return true;
254 }
255 
257  args->Add("type", type_);
258  args->Add("name", name_);
259  args->Add("uuid", uuid_str_);
260  args->Add("vn", vn_);
261  args->Add("mac", mac_str_);
262  args->Add("ipv4", v4_str_);
263  args->Add("ipv6", v6_str_);
264  args->Add("parent", parent_uuid_str_);
265  args->Add("ip-active", ip_active_str_);
266  args->Add("ip6-active", ip6_active_str_);
267  args->Add("l2-active", l2_active_str_);
268  return true;
269 }
270 
272  return static_cast<DBTable *>(Agent::GetInstance()->nexthop_table());
273 }
274 
276  resp_ = new NhListResp();
277 }
278 
279 AgentNhSandesh::AgentNhSandesh(const std::string &context,
280  const std::string &type,
281  const std::string &nh_index,
282  const std::string &policy_enabled) :
283  AgentSandesh(context, ""), type_(type), nh_index_(nh_index),
284  policy_enabled_(policy_enabled) {
285 
286 }
287 
289  const NextHop *nh = dynamic_cast<const NextHop *>(entry);
290  assert(nh);
291 
292  if (type_.empty() == false) {
293  NextHop::Type nh_type = nh->GetType();
294  if (type_ == "invalid" &&
295  (nh_type != NextHop::INVALID))
296  return false;
297  if (type_ == "discard" &&
298  (nh_type != NextHop::DISCARD))
299  return false;
300  if (type_ == "l2-receive" &&
301  (nh_type != NextHop::L2_RECEIVE))
302  return false;
303  if (type_ == "receive" &&
304  (nh_type != NextHop::RECEIVE))
305  return false;
306  if (type_ == "resolve" &&
307  (nh_type != NextHop::RESOLVE))
308  return false;
309  if (type_ == "arp" &&
310  (nh_type != NextHop::ARP))
311  return false;
312  if (type_ == "vrf" &&
313  (nh_type != NextHop::VRF))
314  return false;
315  if (type_ == "interface" &&
316  (nh_type != NextHop::INTERFACE))
317  return false;
318  if (type_ == "tunnel" &&
319  (nh_type != NextHop::TUNNEL))
320  return false;
321  if (type_ == "mirror" &&
322  (nh_type != NextHop::MIRROR))
323  return false;
324  if (type_ == "composite" &&
325  (nh_type != NextHop::COMPOSITE))
326  return false;
327  if (type_ == "vlan" &&
328  (nh_type != NextHop::VLAN))
329  return false;
330 
331  }
332 
333  if (policy_enabled_.empty() == false) {
334  bool policy_flag = true;
335  if (MatchSubString("enabled", policy_enabled_) == false) {
336  policy_flag = false;
337  }
338  if (policy_flag != nh->PolicyEnabled()) {
339  return false;
340  }
341  }
342  if (nh_index_.empty() == false) {
343  if (((nh->id()) == boost::lexical_cast<uint32_t>(nh_index_)) == false)
344  return false;
345  }
346  return true;
347 
348  }
349 
351  args->Add("type", type_);
352  args->Add("nh_index", nh_index_);
353  args->Add("policy_enabled", policy_enabled_);
354  return true;
355 }
356 
358  return static_cast<DBTable *>(Agent::GetInstance()->mpls_table());
359 }
360 
362  resp_ = new MplsResp();
363 }
364 
365 AgentMplsSandesh::AgentMplsSandesh(const std::string &context,
366  const std::string &type,
367  const std::string &label) :
368  AgentSandesh(context, ""), type_(type), label_(label) {
369 
370 }
371 
373  const MplsLabel *mplsl = dynamic_cast<const MplsLabel *>(entry);
374  assert(mplsl);
375 
376  if (label_.empty() == false) {
377  if (((mplsl->label()) == boost::lexical_cast<uint32_t>(label_)) == false)
378  return false;
379  NextHop::Type nh_type = mplsl->nexthop()->GetType();
380  if (type_ == "invalid" &&
381  (nh_type != NextHop::INVALID))
382  return false;
383  if (type_ == "interface" &&
384  (nh_type != NextHop::INTERFACE))
385  return false;
386  if (type_ == "vlan" &&
387  (nh_type != NextHop::VLAN))
388  return false;
389  if (type_ == "vrf" &&
390  (nh_type != NextHop::VRF))
391  return false;
392  if (type_ == "composite" &&
393  (nh_type != NextHop::COMPOSITE))
394  return false;
395  }
396  return true;
397 }
398 
400  args->Add("type", type_);
401  args->Add("label", label_);
402  return true;
403 }
404 
406  return static_cast<DBTable *>(Agent::GetInstance()->vrf_table());
407 }
408 
410  resp_ = new VrfListResp();
411 }
412 
414  return static_cast<DBTable *>(vrf_->GetInet4UnicastRouteTable());
415 }
416 
418  resp_ = new Inet4UcRouteResp();
419 }
420 
422  InetUnicastRouteEntry *rt = static_cast<InetUnicastRouteEntry *>(entry);
423  if (dump_table_) {
424  return rt->DBEntrySandesh(resp_, stale_);
425  }
426  return rt->DBEntrySandesh(resp_, addr_, plen_, stale_);
427 }
428 
430  return static_cast<DBTable *>(vrf_->GetInet4MplsUnicastRouteTable());
431 }
432 
434  resp_ = new Inet4MplsUcRouteResp();
435 }
436 
438  InetUnicastRouteEntry *rt = static_cast<InetUnicastRouteEntry *>(entry);
439  if (dump_table_) {
440  return rt->DBEntrySandesh(resp_, stale_);
441  }
442  return rt->DBEntrySandesh(resp_, addr_, plen_, stale_);
443 }
444 
446  return static_cast<DBTable *>(vrf_->GetInet6UnicastRouteTable());
447 }
448 
450  resp_ = new Inet6UcRouteResp();
451 }
452 
454  InetUnicastRouteEntry *rt = static_cast<InetUnicastRouteEntry *>(entry);
455  if (dump_table_) {
456  return rt->DBEntrySandesh(resp_, stale_);
457  }
458  return rt->DBEntrySandesh(resp_, addr_, plen_, stale_);
459 }
460 
462  return static_cast<DBTable *>(vrf_->GetInet4MulticastRouteTable());
463 }
464 
466  resp_ = new Inet4McRouteResp();
467 }
468 
470  Inet4MulticastRouteEntry *rt = static_cast<Inet4MulticastRouteEntry *>(entry);
471  if (dump_table_) {
472  return rt->DBEntrySandesh(resp_, stale_);
473  }
475 }
476 
478  return static_cast<DBTable *>(vrf_->GetEvpnRouteTable());
479 }
480 
482  resp_ = new EvpnRouteResp();
483 }
484 
486  AgentRoute *rt = static_cast<AgentRoute *>(entry);
487  return rt->DBEntrySandesh(resp_, stale_);
488 }
489 
491  return static_cast<DBTable *>(vrf_->GetBridgeRouteTable());
492 }
493 
495  resp_ = new Layer2RouteResp();
496 }
497 
499  AgentRoute *rt = static_cast<AgentRoute *>(entry);
500  return rt->DBEntrySandesh(resp_, stale_);
501 }
502 
504  return static_cast<DBTable *>(vrf_->GetBridgeRouteTable());
505 }
506 
508  resp_ = new BridgeRouteResp();
509 }
510 
512  BridgeRouteEntry *rt = static_cast<BridgeRouteEntry *>(entry);
513  assert(rt);
514  if (MatchSubString(rt->prefix_address().ToString(), mac_) == false)
515  return false;
516 
517  return rt->DBEntrySandesh(resp_, stale_);
518 }
519 
521  return static_cast<DBTable *>(Agent::GetInstance()->acl_table());
522 }
523 
525  resp_ = new AclResp();
526 }
527 
529  AclDBEntry *ent = static_cast<AclDBEntry *>(entry);
530  return ent->DBEntrySandesh(resp_, name_);
531 }
532 
534  return static_cast<DBTable *>(Agent::GetInstance()->mirror_table());
535 }
536 
538  resp_ = new MirrorEntryResp();
539 }
540 
541 AgentMirrorSandesh::AgentMirrorSandesh(const std::string &context,
542  const std::string &analyzer_name) :
543  AgentSandesh(context, ""), analyzer_name_(analyzer_name) {
544 
545 }
546 
548  const MirrorEntry *mrentry = dynamic_cast<const MirrorEntry *>(entry);
549  assert(mrentry);
550 
551  if (MatchSubString(mrentry->GetAnalyzerName(), analyzer_name_) == false) {
552  return false;
553  }
554 
555  return true;
556 }
557 
559  args->Add("analyzer_name", analyzer_name_);
560 
561  return true;
562 }
563 
565  return static_cast<DBTable *>(Agent::GetInstance()->vrf_assign_table());
566 }
567 
569  resp_ = new VrfAssignResp();
570 }
571 
573  return static_cast<DBTable *>(Agent::GetInstance()->vxlan_table());
574 }
575 
577  resp_ = new VxLanResp();
578 }
579 
580 AgentVxLanSandesh::AgentVxLanSandesh(const std::string &context,
581  const std::string &vxlan_id):
582  AgentSandesh(context, ""), vxlan_id_(vxlan_id) {
583 
584 }
585 
587  const VxLanId *identry = dynamic_cast<const VxLanId *>(entry);
588  assert(identry);
589 
590  if (vxlan_id_.empty() == false) {
591  if (((identry->vxlan_id()) == boost::lexical_cast<uint32_t>(vxlan_id_)) == false) {
592  return false;
593  }
594  }
595 
596  return true;
597 }
598 
600  args->Add("vxlan_id", vxlan_id_);
601 
602  return true;
603 }
604 
606  return static_cast<DBTable *>(Agent::GetInstance()->service_instance_table());
607 }
608 
610  resp_ = new ServiceInstanceResp();
611 }
612 
614 // Routines to manage arguments
616 bool AgentSandeshArguments::Add(const std::string &key, const std::string &val){
617  if (val.empty())
618  return true;
619  ArgumentMap::iterator it = arguments_.find(key);
620  if (it != arguments_.end()) {
621  it->second = val;
622  return false;
623  }
624 
625  arguments_.insert(make_pair(key, val));
626  return true;
627 }
628 
629 bool AgentSandeshArguments::Add(const std::string &key, int val) {
630  std::stringstream ss;
631  ss << val;
632  ArgumentMap::iterator it = arguments_.find(key);
633  if (it != arguments_.end()) {
634  it->second = ss.str();
635  return false;
636  }
637 
638  arguments_.insert(make_pair(key, ss.str()));
639  return true;
640 }
641 
642 bool AgentSandeshArguments::Del(const std::string &key) {
643  ArgumentMap::iterator it = arguments_.find(key);
644  if (it != arguments_.end()) {
645  arguments_.erase(it);
646  return true;
647  }
648 
649  return false;
650 }
651 
652 bool AgentSandeshArguments::Get(const std::string &key, std::string *val) const{
653  ArgumentMap::const_iterator it = arguments_.find(key);
654  if (it == arguments_.end()) {
655  *val = "INVALID";
656  return false;
657  }
658  *val = it->second;
659  return true;
660 }
661 
662 string AgentSandeshArguments::GetString(const std::string &key) const {
663  ArgumentMap::const_iterator it = arguments_.find(key);
664  if (it == arguments_.end()) {
665  return "";
666  }
667  return it->second;
668 }
669 
670 bool AgentSandeshArguments::Get(const std::string &key, int *val) const {
671  ArgumentMap::const_iterator it = arguments_.find(key);
672  if (it == arguments_.end()) {
673  *val = -1;
674  return false;
675  }
676  *val = strtoul(it->second.c_str(), NULL, 0);
677  return true;
678 }
679 
680 int AgentSandeshArguments::GetInt(const std::string &key) const {
681  ArgumentMap::const_iterator it = arguments_.find(key);
682  if (it == arguments_.end()) {
683  return -1;
684  }
685  return (strtoul(it->second.c_str(), NULL, 0));
686 }
687 
688 int AgentSandeshArguments::Encode(std::string *str) {
689  ArgumentMap::iterator it = arguments_.begin();
690  while (it != arguments_.end()) {
691  *str += it->first + ':' + it->second;
692  it++;
693  if (it != arguments_.end())
694  *str += ",";
695  }
696  return arguments_.size();
697 }
698 
699 static int Split(const string &s, char delim, vector<string> &tokens) {
700  std::stringstream ss(s);
701  string item;
702  int count = 0;
703  while(getline(ss, item, delim)) {
704  tokens.push_back(item);
705  count++;
706  }
707 
708  return count;
709 }
710 
711 int AgentSandeshArguments::Decode(const std::string &str) {
712  vector<string> token_list;
713  int count = Split(str, ',', token_list);
714 
715  for (vector<string>::iterator it = token_list.begin();
716  it != token_list.end(); ++it) {
717  vector<string> args;
718  if (Split((*it), ':', args) < 2) {
719  return 0;
720  }
721  string val = (*it).substr(args[0].length() + 1);
722  Add(args[0], val);
723  }
724 
725  return count;
726 }
727 
729 // AgentSandesh Utilities
731 static int ComputeFirst(int first, int len) {
732  if (first < 0 || first > len)
733  return 0;
734 
735  return first;
736 }
737 
738 static int ComputeLast(int first, int last, int len) {
739  if (last < 0)
740  return -1;
741 
742  if (last >= len)
743  return first + AgentSandesh::kEntriesPerPage - 1;
744 
745  if (last < first)
746  return first + AgentSandesh::kEntriesPerPage - 1;
747 
748  return last;
749 }
750 
751 static int ComputePageSize(int first, int last) {
752  if (first < 0 || last < 0)
754 
755  if (last <= first)
757  return (last - first + 1);
758 }
759 
760 void SandeshError(DBTable *table, const std::string &msg,
761  const std::string &context) {
762  ErrorResp *resp = new ErrorResp();
763 
764  if (table) {
765  std::stringstream s;
766  s << table->name() << ":" << msg;
767  resp->set_resp(s.str());
768  } else {
769  resp->set_resp(msg);
770  }
771  resp->set_context(context);
772  resp->Response();
773  return;
774 }
775 
776 static void EncodeOne(string *s, DBTable *table, int begin, int end,
777  AgentSandeshArguments *filter) {
778  *s = "";
780  args.Add("table", table->name());
781  args.Add("begin", begin);
782  args.Add("end", end);
783  args.Encode(s);
784 
785  if (filter) {
786  *s += ",";
787  filter->Del("table");
788  filter->Del("begin");
789  filter->Del("end");
790  filter->Encode(s);
791  }
792 }
793 
794 void PageReq::HandleRequest() const {
796  agent->oper_db()->agent_sandesh_manager()->AddPageRequest(key, context());
797  return;
798 }
799 
801 // AgentSandeshManager routines
804  agent_(agent),
805  page_request_queue_(TaskScheduler::GetInstance()->GetTaskId(AGENT_SANDESH_TASKNAME),
806  0, boost::bind(&AgentSandeshManager::Run, this, _1)) {
807  page_request_queue_.set_name("Introspect page request");
808 }
809 
811 }
812 
814 }
815 
817  page_request_queue_.Shutdown();
818 }
819 
820 void AgentSandeshManager::AddPageRequest(const string &key,
821  const string &context) {
822  page_request_queue_.Enqueue(PageRequest(key, context));
823 }
824 
827  args.Decode(req.key_);
828 
829  string table_name;
830  int first = 0;
831  int last = 0;
832  if (args.Get("table", &table_name) == false ||
833  args.Get("begin", &first) == false ||
834  args.Get("end", &last) == false) {
835  SandeshError(NULL, "Invalid request", req.context_);
836  return true;
837  }
838 
839  DBTable *table = static_cast<DBTable *>
840  (Agent::GetInstance()->db()->FindTable(table_name));
841  if (table == NULL) {
842  SandeshError(NULL, "Invalid DBTable", req.context_);
843  return true;
844  }
845 
846  AgentDBTable *agent_table = dynamic_cast<AgentDBTable *>(table);
847  if (agent_table) {
848  AgentSandeshPtr sandesh = agent_table->GetAgentSandesh(&args,
849  req.context_);
850  if (sandesh) {
851  sandesh->DoSandesh(sandesh, first, last);
852  } else {
853  SandeshError(table, "Pagination not supported", req.context_);
854  }
855  return true;
856  }
857 
858  AgentRouteTable *route_table = dynamic_cast<AgentRouteTable *>(table);
859  if (route_table) {
860  AgentSandeshPtr sandesh = route_table->GetAgentSandesh(&args,
861  req.context_);
862  if (sandesh) {
863  sandesh->DoSandesh(sandesh, first, last);
864  } else {
865  SandeshError(table, "Pagination not supported", req.context_);
866  }
867  return true;
868  }
869 
870  SandeshError(table, "Pagination not supported", req.context_);
871  return true;
872 }
873 
875 // AgentSandesh routines
877 void AgentSandesh::MakeSandeshPageReq(PageReqData *req, DBTable *table,
878  int first, int count, int match_count,
879  int table_size, int page_size) {
880  AgentSandeshArguments filter;
881 
882  FilterToArgs(&filter);
883 
884  // Set table-size
885  int len = table->Size();
886  req->set_table_size(len);
887 
888  // Set entries
889  int last = first + count - 1;
890  std::stringstream entries_ss;
891  if (match_count >= 0) {
892  if (count == 0) {
893  entries_ss << " 0 / " << match_count;
894  } else {
895  entries_ss << first << "-" << last << "/" << match_count;
896  }
897  } else {
898  entries_ss << first << "-" << last;
899  }
900  req->set_entries(entries_ss.str());
901 
902  // Next-Page link
903  int next_page_first = last + 1;
904  int next_page_last = next_page_first + page_size - 1;
905  if (match_count >= 0 && next_page_last > match_count) {
906  next_page_last = match_count - 1;
907  }
908 
909  if (next_page_last >= table_size) {
910  next_page_last = table_size - 1;
911  }
912 
913  if ((match_count >= 0 && next_page_first < match_count) ||
914  (match_count < 0 && next_page_first < table_size)) {
915  string s;
916  EncodeOne(&s, table, next_page_first, next_page_last, &filter);
917  req->set_next_page(s);
918  }
919 
920  // Prev-Page link
921  if (first > 0) {
922  int prev_page_first;
923  if (page_size < AgentSandesh::kEntriesPerPage) {
924  prev_page_first = first - AgentSandesh::kEntriesPerPage;
925  } else {
926  prev_page_first = first - page_size;
927  }
928 
929  if (prev_page_first < 0)
930  prev_page_first = 0;
931 
932  int prev_page_last;
933 
934  if (page_size < AgentSandesh::kEntriesPerPage) {
935  prev_page_last = prev_page_first + AgentSandesh::kEntriesPerPage;
936  } else {
937  prev_page_last = prev_page_first + page_size;
938  }
939 
940  if (prev_page_last >= first)
941  prev_page_last = first - 1;
942  string s;
943  EncodeOne(&s, table, prev_page_first, prev_page_last, &filter);
944  req->set_prev_page(s);
945  }
946 
947  // First-Page link
948  string s;
949  if ((len - AgentSandesh::kEntriesPerPage) >= 0) {
950  EncodeOne(&s, table, 0, (AgentSandesh::kEntriesPerPage - 1), &filter);
951  } else {
952  EncodeOne(&s, table, 0, (page_size - 1), &filter);
953  }
954 
955  req->set_first_page(s);
956 
957  // All-Page link
958  s = "";
959  EncodeOne(&s, table, -1, -1, &filter);
960  req->set_all(s);
961 }
962 
964  int last) {
965  DBTable *table = AgentGetTable();
966  DBTablePartition *part = static_cast<DBTablePartition *>
967  (table->GetTablePartition(0));
968 
969  if (table == NULL || part == NULL) {
970  SandeshError(table, "Invalid DBTable name", context_);
971  return;
972  }
973 
974  int len = (int)table->Size();
975  int page_size = ComputePageSize(first, last);
976  first = ComputeFirst(first, len);
977  last = ComputeLast(first, last, len);
978 
979  SetResp();
980  DBTable::DBTableWalkRef walk_ref = table->AllocWalker(
981  boost::bind(&AgentSandesh::EntrySandesh, this, _2, first, last),
982  boost::bind(&AgentSandesh::SandeshDone, this, sandesh, first,
983  page_size, _1, _2));
984  table->WalkAgain(walk_ref);
985 }
986 
987 void AgentSandesh::DoSandesh(AgentSandeshPtr sandesh, int first, int last) {
988  sandesh->DoSandeshInternal(sandesh, first, last);
989 }
990 
992  DoSandesh(sandesh, 0, (kEntriesPerPage - 1));
993 }
994 
996  Alloc();
998 }
999 
1001  AgentDBEntry *ent = static_cast<AgentDBEntry *>(entry);
1002  return ent->DBEntrySandesh(resp_, name_);
1003 }
1004 
1005 bool AgentSandesh::EntrySandesh(DBEntryBase *entry, int first, int last) {
1006  if (Filter(entry) == false)
1007  return true;
1008 
1009  if (total_entries_ >= first && ((last < 0) || (total_entries_ <= last))) {
1010  if (!UpdateResp(entry)) {
1011  return true;
1012  }
1013  count_++;
1014 
1015  if ((count_ % entries_per_sandesh) == 0) {
1016  // send partial sandesh
1017  resp_->set_more(true);
1018  resp_->Response();
1019  SetResp();
1020  }
1021  }
1022  total_entries_++;
1023 
1024  return true;
1025 }
1026 
1027 void AgentSandesh::SandeshDone(AgentSandeshPtr ptr, int first, int page_size,
1028  DBTable::DBTableWalkRef walk_ref,
1029  DBTableBase *partition) {
1030  (static_cast<DBTable *>(partition))->ReleaseWalker(walk_ref);
1031  resp_->set_more(true);
1032  resp_->Response();
1033 
1034  Pagination *page = new Pagination();
1035  resp_ = page;
1037 
1038  DBTable *table = AgentGetTable();
1039  PageReqData req;
1040  MakeSandeshPageReq(&req, table, first, count_, total_entries_,
1041  table->Size(), page_size);
1042  page->set_req(req);
1043  resp_->Response();
1044 }
1045 
1046 void AgentInitStateReq::HandleRequest() const {
1047  AgentInitState *resp = new AgentInitState();
1048  resp->set_context(context());
1049  Agent *agent = Agent::GetInstance();
1050  if (agent->init_done()) {
1051  resp->set_state("InitDone");
1052  } else {
1053  resp->set_state("InProgress");
1054  }
1055  resp->Response();
1056 }
1057 
1058 void VrouterObjectLimitsReq::HandleRequest() const {
1059  VrouterObjectLimitsResp *resp = new VrouterObjectLimitsResp();
1060  resp->set_context(context());
1061 
1062  Agent *agent = Agent::GetInstance();
1063 
1064  VrouterObjectLimits vr_limits = agent->GetVrouterObjectLimits();
1065  resp->set_vrouter_object_limit(vr_limits);
1066  resp->Response();
1067 }
1068 
1070  const std::string &u) :
1071  AgentSandesh(context, ""), uuid_str_(u) {
1072  boost::system::error_code ec;
1073  uuid_ = StringToUuid(u);
1074 }
1075 
1077  return static_cast<DBTable *>(Agent::GetInstance()->health_check_table());
1078 }
1079 
1081  resp_ = new HealthCheckSandeshResp();
1082 }
1083 
1085  const HealthCheckService *service =
1086  dynamic_cast<const HealthCheckService *>(entry);
1087  assert(service);
1088 
1089  if (MatchUuid(uuid_str_ , uuid_, service->uuid()) == false)
1090  return false;
1091 
1092  return true;
1093 }
1094 
1096  args->Add("uuid", uuid_str_);
1097  return true;
1098 }
1099 
1101  const std::string &u,
1102  const std::string &name,
1103  const std::string &id) :
1104  AgentSandesh(context, ""), uuid_(u), name_(name), id_(id) {
1105 }
1106 
1108  return static_cast<DBTable *>(Agent::GetInstance()->qos_config_table());
1109 }
1110 
1112  resp_ = new AgentQosConfigSandeshResp();
1113 }
1114 
1116  const AgentQosConfig *qos =
1117  dynamic_cast<const AgentQosConfig *>(entry);
1118  assert(qos);
1119 
1120  if (uuid_.empty() && name_.empty() && id_.empty()) {
1121  return true;
1122  }
1123 
1124  if (id_.empty() == false) {
1125  uint32_t id;
1126  stringToInteger(id_, id);
1127  if (qos->id() != id) {
1128  return false;
1129  }
1130  }
1131 
1132  if (name_.empty() == false &&
1133  qos->name() != name_) {
1134  return false;
1135  }
1136 
1137  if (uuid_.empty() == false && qos->uuid() != StringToUuid(uuid_)) {
1138  return false;
1139  }
1140 
1141  return true;
1142 }
1143 
1145  args->Add("uuid", uuid_);
1146  args->Add("id", id_);
1147  args->Add("name", name_);
1148  return true;
1149 }
1150 
1152  const std::string &u,
1153  const std::string &name,
1154  const std::string &id) :
1155  AgentSandesh(context, ""), uuid_(u), name_(name), id_(id) {
1156 }
1157 
1159  return static_cast<DBTable *>(Agent::GetInstance()->forwarding_class_table());
1160 }
1161 
1163  resp_ = new ForwardingClassSandeshResp();
1164 }
1165 
1167  const ForwardingClass *fc =
1168  dynamic_cast<const ForwardingClass *>(entry);
1169  assert(fc);
1170 
1171  if (uuid_.empty() && name_.empty() && id_.empty()) {
1172  return true;
1173  }
1174 
1175  if (id_.empty() == false) {
1176  uint32_t id;
1177  stringToInteger(id_, id);
1178  if (fc->id() != id) {
1179  return false;
1180  }
1181  }
1182 
1183  if (name_.empty() == false &&
1184  fc->name() != name_) {
1185  return false;
1186  }
1187 
1188  if (uuid_.empty() == false && fc->uuid() != StringToUuid(uuid_)) {
1189  return false;
1190  }
1191 
1192  return true;
1193 }
1194 
1196  args->Add("uuid", uuid_);
1197  args->Add("id", id_);
1198  args->Add("name", name_);
1199  return true;
1200 }
1201 
1202 QosQueueSandesh::QosQueueSandesh(const std::string &context,
1203  const std::string &u,
1204  const std::string &name,
1205  const std::string &id) :
1206  AgentSandesh(context, ""), uuid_(u), name_(name), id_(id) {
1207 }
1208 
1210  return static_cast<DBTable *>(Agent::GetInstance()->qos_queue_table());
1211 }
1212 
1214  resp_ = new QosQueueSandeshResp();
1215 }
1216 
1218  const QosQueue *qos_queue = dynamic_cast<const QosQueue *>(entry);
1219  assert(qos_queue);
1220 
1221  if (uuid_.empty() && name_.empty() && id_.empty()) {
1222  return true;
1223  }
1224 
1225  if (id_.empty() == false) {
1226  uint32_t id;
1227  stringToInteger(id_, id);
1228  if (qos_queue->id() != id) {
1229  return false;
1230  }
1231  }
1232 
1233  if (name_.empty() == false &&
1234  qos_queue->name() != name_) {
1235  return false;
1236  }
1237 
1238  if (uuid_.empty() == false && qos_queue->uuid() != StringToUuid(uuid_)) {
1239  return false;
1240  }
1241 
1242  return true;
1243 }
1244 
1246  args->Add("uuid", uuid_);
1247  args->Add("name", name_);
1248  args->Add("id", id_);
1249  return true;
1250 }
1251 
1252 BridgeDomainSandesh::BridgeDomainSandesh(const std::string &context,
1253  const std::string &u,
1254  const std::string &name) :
1255  AgentSandesh(context, ""), uuid_str_(u), name_(name) {
1256  boost::system::error_code ec;
1257  uuid_ = StringToUuid(u);
1258 }
1259 
1261  return static_cast<DBTable *>(Agent::GetInstance()->bridge_domain_table());
1262 }
1263 
1265  resp_ = new BridgeDomainSandeshResp();
1266 }
1267 
1269  const BridgeDomainEntry *bd =
1270  dynamic_cast<const BridgeDomainEntry *>(entry);
1271  assert(bd);
1272 
1273  if (MatchUuid(uuid_str_ , uuid_, bd->uuid()) == false)
1274  return false;
1275 
1276  if (name_.empty() == false &&
1277  bd->name() != name_) {
1278  return false;
1279  }
1280 
1281  return true;
1282 }
1283 
1285  args->Add("uuid", uuid_str_);
1286  args->Add("name", name_);
1287  return true;
1288 }
1289 
1291  return static_cast<DBTable *>(Agent::GetInstance()->policy_set_table());
1292 }
1293 
1295  const std::string &u,
1296  const std::string &name) :
1297  AgentSandesh(context, ""), uuid_str_(u), name_(name) {
1298  boost::system::error_code ec;
1299  uuid_ = StringToUuid(u);
1300 }
1301 
1303  resp_ = new ApplicationPolicySetResp();
1304 }
1305 
1307  PolicySet *ent = static_cast<PolicySet *>(entry);
1308  return ent->DBEntrySandesh(resp_, name_);
1309 }
1310 
1312  args->Add("uuid", uuid_str_);
1313  args->Add("name", name_);
1314  return true;
1315 }
1316 
1318  const PolicySet *ps =
1319  dynamic_cast<const PolicySet *>(entry);
1320  assert(ps);
1321 
1322  if (MatchUuid(uuid_str_ , uuid_, ps->uuid()) == false) {
1323  return false;
1324  }
1325 
1326  if (name_.empty() == false &&
1327  ps->name() != name_) {
1328  return false;
1329  }
1330 
1331  return true;
1332 }
1333 
1334 TagSandesh::TagSandesh(const std::string &context,
1335  const std::string &u,
1336  const std::string &name) :
1337  AgentSandesh(context, ""), uuid_str_(u), name_(name) {
1338  boost::system::error_code ec;
1339  uuid_ = StringToUuid(u);
1340 }
1341 
1343  return static_cast<DBTable *>(Agent::GetInstance()->tag_table());
1344 }
1345 
1347  resp_ = new TagSandeshResp();
1348 }
1349 
1350 bool TagSandesh::Filter(const DBEntryBase *entry) {
1351  const TagEntry *tag =
1352  dynamic_cast<const TagEntry *>(entry);
1353  assert(tag);
1354 
1355  if (MatchUuid(uuid_str_ , uuid_, tag->tag_uuid()) == false)
1356  return false;
1357 
1358  if (name_.empty() == false &&
1359  tag->name() != name_) {
1360  return false;
1361  }
1362 
1363  return true;
1364 }
1365 
1367  args->Add("uuid", uuid_str_);
1368  args->Add("name", name_);
1369  return true;
1370 }
1371 
1373  return static_cast<DBTable *>(Agent::GetInstance()->slo_table());
1374 }
1375 
1377  resp_ = new SLOListResp();
1378 }
1379 
1381  return static_cast<DBTable *>(Agent::GetInstance()->crypt_tunnel_table());
1382 }
1383 
1385  resp_ = new CryptTunnelResp();
1386 }
1387 
1389  const std::string &remote_ip) :
1390  AgentSandesh(context, ""), remote_ip_(remote_ip) {
1391 }
1392 
1394  CryptTunnelEntry *ent = static_cast<CryptTunnelEntry *>(entry);
1395  return ent->DBEntrySandesh(resp_, remote_ip_);
1396 }
1397 
1399  args->Add("remote", remote_ip_);
1400  return true;
1401 }
1402 
1404  const CryptTunnelEntry *crypt_tunnel_entry =
1405  dynamic_cast<const CryptTunnelEntry *>(entry);
1406  assert(crypt_tunnel_entry);
1407 
1408  if (MatchSubString(crypt_tunnel_entry->ToString(), remote_ip_) == false)
1409  return false;
1410  return true;
1411 }
1412 
1414  return static_cast<DBTable *>(Agent::GetInstance()->mp_table());
1415 }
1416 
1418  resp_ = new MulticastPolicyResp();
1419 }
1420 
1422  MulticastPolicyEntry *ent = static_cast<MulticastPolicyEntry *>(entry);
1423  return ent->DBEntrySandesh(resp_, name_);
1424 }
1425 
std::string vxlan_id_
int GetVxLanId() const
Definition: vn.cc:727
virtual bool Filter(const DBEntryBase *entry)
AgentMirrorSandesh(const std::string &context, const std::string &analyzer_name)
DBTable * AgentGetTable()
AgentVnSandesh(const std::string &context, const std::string &name, const std::string &u, const std::string &vxlan_id, const std::string &ipam_name)
boost::uuids::uuid uuid_
DBTable * AgentGetTable()
virtual bool FilterToArgs(AgentSandeshArguments *args)
static void DoSandesh(AgentSandeshPtr sandesh, int start, int count)
std::string type_
const MacAddress & vm_mac() const
Type type() const
Definition: interface.h:112
std::string ipam_name_
uint32_t label() const
Definition: mpls.h:79
bool EntrySandesh(DBEntryBase *entry, int first, int last)
Agent * agent() const
static Agent * GetInstance()
Definition: agent.h:436
static boost::uuids::uuid StringToUuid(const std::string &str)
Definition: string_util.h:145
BridgeDomainSandesh(const std::string &context, const std::string &u, const std::string &name)
bool Run(PageRequest req)
The TaskScheduler keeps track of what tasks are currently schedulable. When a task is enqueued it is ...
Definition: task.h:178
std::string uuid_str_
int Encode(std::string *str)
DBTable * AgentGetTable()
AgentRouteTable * GetInet4MulticastRouteTable() const
Definition: vrf.cc:326
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual bool Filter(const DBEntryBase *entry)
AgentRouteTable * GetEvpnRouteTable() const
Definition: vrf.cc:330
std::string parent_uuid_str_
const std::string & name() const
Definition: policy_set.h:80
virtual bool Filter(const DBEntryBase *entry)
bool UpdateResp(DBEntryBase *entry)
virtual bool FilterToArgs(AgentSandeshArguments *args)
std::string GetString(const std::string &key) const
const boost::uuids::uuid & GetUuid() const
Definition: interface.h:113
bool UpdateResp(DBEntryBase *entry)
NextHopTable * nexthop_table() const
Definition: agent.h:475
bool UpdateResp(DBEntryBase *entry)
std::string nh_index_
bool DBEntrySandesh(Sandesh *sresp, std::string &name) const
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
DB * db() const
Definition: agent.h:1118
std::string type_
bool DBEntrySandesh(Sandesh *resp, std::string &name) const
Definition: acl.cc:68
const NextHop * nexthop() const
Definition: mpls.h:80
DBTable * AgentGetTable()
bool stringToInteger(const std::string &str, NumberType &num)
Definition: string_util.h:71
bool l2_active() const
Definition: interface.h:122
std::string v6_str_
const std::string & name() const
static int ComputeLast(int first, int last, int len)
DBTableWalkRef AllocWalker(WalkFn walk_fn, WalkCompleteFn walk_complete)
Definition: db_table.cc:613
InetUnicastAgentRouteTable * GetInet4UnicastRouteTable() const
Definition: vrf.cc:319
bool UpdateResp(DBEntryBase *entry)
const std::string & name() const
Definition: bridge_domain.h:56
WorkQueue< PageRequest > page_request_queue_
Definition: agent_sandesh.h:75
InterfaceTable * interface_table() const
Definition: agent.h:465
virtual bool FilterToArgs(AgentSandeshArguments *args)
uint32_t id() const
Definition: qos_config.h:73
boost::uuids::uuid uuid
VnTable * vn_table() const
Definition: agent.h:495
InetUnicastAgentRouteTable * GetInet4MplsUnicastRouteTable() const
Definition: vrf.cc:323
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual bool FilterToArgs(AgentSandeshArguments *args)
Interface * physical_interface() const
std::string policy_enabled_
InetUnicastAgentRouteTable * GetInet6UnicastRouteTable() const
Definition: vrf.cc:338
std::string vn_
std::string context_
boost::uuids::uuid uuid_
static const uint16_t kEntriesPerPage
Definition: agent_sandesh.h:91
boost::uuids::uuid uuid_
ForwardingClassSandesh(const std::string &context, const std::string &u, const std::string &name, const std::string &idx)
DBTable * AgentGetTable()
virtual bool FilterToArgs(AgentSandeshArguments *args)
DBTable * AgentGetTable()
std::string uuid_str_
MplsTable * mpls_table() const
Definition: agent.h:510
Definition: vxlan.h:14
std::string mac_str_
Type GetType() const
Definition: nexthop.h:405
Base class for all Route entries in agent.
Definition: agent_route.h:224
DBTable * AgentGetTable()
bool UpdateResp(DBEntryBase *entry)
DBTable * AgentGetTable()
TagTable * tag_table() const
Definition: agent.h:505
QosQueueTable * qos_queue_table() const
Definition: agent.h:562
DBTable * AgentGetTable()
AgentHealthCheckSandesh(const std::string &context, const std::string &u)
DBTable * AgentGetTable()
MirrorTable * mirror_table() const
Definition: agent.h:525
OperDB * oper_db() const
Definition: agent.cc:1013
std::string uuid_
std::string ToString() const
Definition: mac_address.cc:53
std::string type_
bool Del(const std::string &key)
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const =0
AgentPolicySetSandesh(const std::string &context, const std::string &uuid, const std::string &name)
boost::uuids::uuid uuid_
virtual bool Filter(const DBEntryBase *entry)
DBTable * AgentGetTable()
void WalkAgain(DBTableWalkRef walk)
Definition: db_table.cc:631
ServiceInstanceTable * service_instance_table() const
Definition: agent.h:817
virtual size_t Size() const
Definition: db_table.cc:507
static bool MatchUuid(const string &uuid_str, const boost::uuids::uuid &u, const boost::uuids::uuid val)
virtual void Response()
Definition: p/sandesh.h:502
void MakeSandeshPageReq(PageReqData *req, DBTable *table, int first, int last, int end, int count, int page_size)
virtual bool FilterToArgs(AgentSandeshArguments *args)
uint32_t id() const
virtual bool Filter(const DBEntryBase *entry)
PolicySetTable * policy_set_table() const
Definition: agent.h:520
uint8_t type
Definition: load_balance.h:109
bool Get(const std::string &key, std::string *val) const
std::string ip6_active_str_
static void EncodeOne(string *s, DBTable *table, int begin, int end, AgentSandeshArguments *filter)
bool UpdateResp(DBEntryBase *entry)
Definition: agent.h:358
QosQueueSandesh(const std::string &context, const std::string &u, const std::string &name, const std::string &id)
std::string uuid_str_
std::string name_
boost::uuids::uuid uuid_
virtual bool Filter(const DBEntryBase *entry)
bool ipv4_active() const
Definition: interface.h:116
BridgeDomainTable * bridge_domain_table() const
Definition: agent.cc:941
AgentVxLanSandesh(const std::string &context, const std::string &vxlan_id)
const std::string & name() const
Definition: qos_queue.h:70
virtual bool Filter(const DBEntryBase *entry)
std::string analyzer_name_
std::string name_
boost::uuids::uuid parent_uuid_
VrfAssignTable * vrf_assign_table() const
Definition: agent.h:530
virtual bool Filter(const DBEntryBase *entry)
AgentNhSandesh(const std::string &context, const std::string &type, const std::string &nh_index, const std::string &policy_enabled)
const boost::uuids::uuid & tag_uuid() const
AgentRouteTable * GetBridgeRouteTable() const
Definition: vrf.cc:334
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
bool DBEntrySandesh(Sandesh *resp, std::string &name) const
Definition: policy_set.cc:92
std::string v4_str_
const std::vector< VnIpam > & GetVnIpam() const
Definition: vn.h:171
class boost::shared_ptr< AgentSandesh > AgentSandeshPtr
Definition: agent_db.h:18
const VnEntry * vn() const
AgentCryptTunnelSandesh(const std::string &context, const std::string &name)
bool init_done() const
Definition: agent.h:1213
const std::string & name() const
Definition: db_table.h:110
CryptTunnelTable * crypt_tunnel_table() const
Definition: agent.h:480
AgentSandeshManager * agent_sandesh_manager()
Definition: operdb_init.h:73
std::string l2_active_str_
bool UpdateResp(DBEntryBase *entry)
bool Add(const std::string &key, const std::string &val)
std::string label_
const boost::uuids::uuid & uuid() const
Definition: policy_set.h:79
virtual bool Filter(const DBEntryBase *entry)
void AddPageRequest(const std::string &key, const std::string &context)
virtual void Alloc()=0
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual const PrefixType & prefix_address() const
Returns the value of a stored prefix address (IPv4, IPv6 or MAC address)
Definition: agent_route.h:375
Definition: vn.h:151
virtual bool UpdateResp(DBEntryBase *entry)
virtual bool Filter(const DBEntryBase *entry)
VrfTable * vrf_table() const
Definition: agent.h:485
std::string name_
const boost::uuids::uuid & uuid() const
Definition: bridge_domain.h:55
const Ip4Address & primary_ip_addr() const
virtual DBTablePartBase * GetTablePartition(const DBRequestKey *key)
Definition: db_table.cc:436
const boost::uuids::uuid & uuid() const
Definition: health_check.h:325
virtual bool FilterToArgs(AgentSandeshArguments *args)
void DoSandeshInternal(AgentSandeshPtr sandesh, int start, int count)
const boost::uuids::uuid & uuid() const
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual string ToString() const
Definition: crypt_tunnel.cc:38
int GetInt(const std::string &key) const
std::string name_
virtual DBTable * AgentGetTable()=0
uint32_t vxlan_id() const
Definition: vxlan.h:27
std::string name() const
Definition: qos_config.h:77
uint32_t id() const
Definition: nexthop.h:408
HealthCheckTable * health_check_table() const
Definition: agent.cc:933
AgentQosConfigTable * qos_config_table() const
Definition: agent.h:554
VxLanTable * vxlan_table() const
Definition: agent.h:535
static const uint8_t entries_per_sandesh
Definition: agent_sandesh.h:90
SecurityLoggingObjectTable * slo_table() const
Definition: agent.h:547
ArgumentMap arguments_
Definition: agent_sandesh.h:40
TagSandesh(const std::string &context, const std::string &u, const std::string &name)
std::string ip_active_str_
std::string name_
static int Split(const string &s, char delim, vector< string > &tokens)
DBTable * AgentGetTable()
const Ip6Address & primary_ip6_addr() const
void set_context(std::string context)
Definition: p/sandesh.h:310
Definition: mpls.h:52
virtual AgentSandeshPtr GetAgentSandesh(const AgentSandeshArguments *args, const std::string &context)
Definition: agent_db.h:186
boost::uuids::uuid uuid() const
Definition: qos_config.h:66
bool DBEntrySandesh(Sandesh *sresp, std::string &name) const
AgentIntfSandesh(const std::string &context, const std::string &type, const std::string &name, const std::string &u, const std::string &vn, const std::string &mac, const std::string &v4, const std::string &v6, const std::string &parent, const std::string &ip_active, const std::string &ip6_active, const std::string &l2_active)
virtual bool Filter(const DBEntryBase *entry)
virtual bool Filter(const DBEntryBase *entry)
std::string vxlan_id_
DBTable * AgentGetTable()
virtual bool DBEntrySandesh(Sandesh *resp, std::string &name) const =0
virtual bool FilterToArgs(AgentSandeshArguments *args)
static bool MatchSubString(const string &str, const string &sub_str)
bool UpdateResp(DBEntryBase *entry)
std::string id_
const std::string & name() const
static int ComputePageSize(int first, int last)
SgTable * sg_table() const
Definition: agent.h:500
uint32_t id() const
Definition: qos_queue.h:63
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
const std::string GetAnalyzerName() const
Definition: mirror_table.h:77
DBTable * AgentGetTable()
const std::string & name() const
Definition: interface.h:114
#define AGENT_SANDESH_TASKNAME
Definition: agent.h:301
AgentQosConfigSandesh(const std::string &context, const std::string &u, const std::string &name, const std::string &id)
bool PolicyEnabled() const
Definition: nexthop.h:407
const boost::uuids::uuid & GetUuid() const
Definition: vn.h:161
bool UpdateResp(DBEntryBase *entry)
const string & GetName() const
Definition: vn.h:162
DBTable * AgentGetTable()
AgentMplsSandesh(const std::string &context, const std::string &type, const std::string &label)
AgentSandeshManager(Agent *agent)
const boost::uuids::uuid & uuid() const
Definition: qos_queue.h:62
ForwardingClassTable * forwarding_class_table() const
Definition: agent.h:540
boost::intrusive_ptr< DBTableWalk > DBTableWalkRef
Definition: db_table.h:169
MulticastPolicyTable * mp_table() const
Definition: agent.h:642
boost::uuids::uuid uuid_
void SandeshError(const std::string &msg, const std::string &context)
Definition: dns_mgr.cc:781
bool UpdateResp(DBEntryBase *entry)
AclTable * acl_table() const
Definition: agent.h:515
virtual bool Filter(const DBEntryBase *entry)
static int ComputeFirst(int first, int len)
virtual bool FilterToArgs(AgentSandeshArguments *args)
SandeshResponse * resp_
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual void set_more(const bool val)=0
void SandeshDone(AgentSandeshPtr ptr, int first, int page_size, DBTable::DBTableWalkRef walk_ref, DBTableBase *partition)
bool ipv6_active() const
Definition: interface.h:117
bool UpdateResp(DBEntryBase *entry)
VmTable * vm_table() const
Definition: agent.h:490
Definition: acl.h:92
virtual bool FilterToArgs(AgentSandeshArguments *args)
DBTableBase * FindTable(const std::string &name)
Definition: db.cc:68
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
int Decode(const std::string &str)
DBTable * AgentGetTable()
VrouterObjectLimits GetVrouterObjectLimits()
Definition: agent.cc:1157
virtual bool Filter(const DBEntryBase *entry)
virtual AgentSandeshPtr GetAgentSandesh(const AgentSandeshArguments *args, const std::string &context)
Definition: agent_route.h:130
virtual bool Filter(const DBEntryBase *entry)
std::string uuid_str_