7 #include <vnc_cfg_types.h>
8 #include <agent_types.h>
44 return (str.find(sub_str) != string::npos);
48 const std::string &name,
50 const std::string &vxlan_id,
51 const std::string &ipam_name) :
53 vxlan_id_(vxlan_id), ipam_name_(ipam_name) {
55 boost::system::error_code ec;
74 resp_ =
new VnListResp();
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++) {
101 if (ipam_flag ==
true) {
122 resp_ =
new SgListResp();
130 resp_ =
new VmListResp();
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) :
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) {
150 boost::system::error_code ec;
152 v4_ = Ip4Address::from_string(v4, ec);
153 v6_ = Ip6Address::from_string(v6, ec);
162 resp_ =
new ItfResp();
172 if (
type_.empty() ==
false) {
173 if (
type_ ==
"physical" &&
191 if (
vn_.empty() ==
false ||
mac_str_.empty() ==
false ||
233 if (
vn_.empty() ==
false && vmi->
vn()) {
241 if (
v4_str_.empty() ==
false) {
247 if (
v6_str_.empty() ==
false) {
276 resp_ =
new NhListResp();
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) {
292 if (
type_.empty() ==
false) {
294 if (
type_ ==
"invalid" &&
297 if (
type_ ==
"discard" &&
300 if (
type_ ==
"l2-receive" &&
303 if (
type_ ==
"receive" &&
306 if (
type_ ==
"resolve" &&
309 if (
type_ ==
"arp" &&
312 if (
type_ ==
"vrf" &&
315 if (
type_ ==
"interface" &&
318 if (
type_ ==
"tunnel" &&
321 if (
type_ ==
"mirror" &&
324 if (
type_ ==
"composite" &&
327 if (
type_ ==
"vlan" &&
334 bool policy_flag =
true;
343 if (((nh->
id()) == boost::lexical_cast<uint32_t>(
nh_index_)) ==
false)
362 resp_ =
new MplsResp();
366 const std::string &
type,
367 const std::string &label) :
376 if (
label_.empty() ==
false) {
377 if (((mplsl->
label()) == boost::lexical_cast<uint32_t>(
label_)) ==
false)
380 if (
type_ ==
"invalid" &&
383 if (
type_ ==
"interface" &&
386 if (
type_ ==
"vlan" &&
389 if (
type_ ==
"vrf" &&
392 if (
type_ ==
"composite" &&
410 resp_ =
new VrfListResp();
418 resp_ =
new Inet4UcRouteResp();
434 resp_ =
new Inet4MplsUcRouteResp();
450 resp_ =
new Inet6UcRouteResp();
466 resp_ =
new Inet4McRouteResp();
482 resp_ =
new EvpnRouteResp();
495 resp_ =
new Layer2RouteResp();
508 resp_ =
new BridgeRouteResp();
525 resp_ =
new AclResp();
538 resp_ =
new MirrorEntryResp();
542 const std::string &analyzer_name) :
543 AgentSandesh(context,
""), analyzer_name_(analyzer_name) {
569 resp_ =
new VrfAssignResp();
577 resp_ =
new VxLanResp();
581 const std::string &vxlan_id):
591 if (((identry->
vxlan_id()) == boost::lexical_cast<uint32_t>(
vxlan_id_)) ==
false) {
610 resp_ =
new ServiceInstanceResp();
619 ArgumentMap::iterator it =
arguments_.find(key);
630 std::stringstream ss;
632 ArgumentMap::iterator it =
arguments_.find(key);
634 it->second = ss.str();
643 ArgumentMap::iterator it =
arguments_.find(key);
653 ArgumentMap::const_iterator it =
arguments_.find(key);
663 ArgumentMap::const_iterator it =
arguments_.find(key);
671 ArgumentMap::const_iterator it =
arguments_.find(key);
676 *val = strtoul(it->second.c_str(), NULL, 0);
681 ArgumentMap::const_iterator it =
arguments_.find(key);
685 return (strtoul(it->second.c_str(), NULL, 0));
689 ArgumentMap::iterator it =
arguments_.begin();
691 *str += it->first +
':' + it->second;
699 static int Split(
const string &s,
char delim, vector<string> &tokens) {
700 std::stringstream ss(s);
703 while(getline(ss, item, delim)) {
704 tokens.push_back(item);
712 vector<string> token_list;
713 int count =
Split(str,
',', token_list);
715 for (vector<string>::iterator it = token_list.begin();
716 it != token_list.end(); ++it) {
718 if (
Split((*it),
':', args) < 2) {
721 string val = (*it).substr(args[0].length() + 1);
732 if (first < 0 || first > len)
746 return first + AgentSandesh::kEntriesPerPage - 1;
752 if (first < 0 || last < 0)
757 return (last - first + 1);
761 const std::string &context) {
762 ErrorResp *resp =
new ErrorResp();
766 s << table->
name() <<
":" << msg;
767 resp->set_resp(s.str());
771 resp->set_context(context);
780 args.
Add(
"table", table->
name());
781 args.
Add(
"begin", begin);
782 args.
Add(
"end", end);
787 filter->
Del(
"table");
788 filter->
Del(
"begin");
794 void PageReq::HandleRequest()
const {
821 const string &context) {
832 if (args.
Get(
"table", &table_name) ==
false ||
833 args.
Get(
"begin", &first) ==
false ||
834 args.
Get(
"end", &last) ==
false) {
851 sandesh->DoSandesh(sandesh, first, last);
863 sandesh->DoSandesh(sandesh, first, last);
878 int first,
int count,
int match_count,
879 int table_size,
int page_size) {
885 int len = table->
Size();
886 req->set_table_size(len);
889 int last = first + count - 1;
890 std::stringstream entries_ss;
891 if (match_count >= 0) {
893 entries_ss <<
" 0 / " << match_count;
895 entries_ss << first <<
"-" << last <<
"/" << match_count;
898 entries_ss << first <<
"-" << last;
900 req->set_entries(entries_ss.str());
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;
909 if (next_page_last >= table_size) {
910 next_page_last = table_size - 1;
913 if ((match_count >= 0 && next_page_first < match_count) ||
914 (match_count < 0 && next_page_first < table_size)) {
916 EncodeOne(&s, table, next_page_first, next_page_last, &filter);
917 req->set_next_page(s);
926 prev_page_first = first - page_size;
929 if (prev_page_first < 0)
937 prev_page_last = prev_page_first + page_size;
940 if (prev_page_last >= first)
941 prev_page_last = first - 1;
943 EncodeOne(&s, table, prev_page_first, prev_page_last, &filter);
944 req->set_prev_page(s);
952 EncodeOne(&s, table, 0, (page_size - 1), &filter);
955 req->set_first_page(s);
969 if (table == NULL || part == NULL) {
974 int len = (int)table->
Size();
988 sandesh->DoSandeshInternal(sandesh, first, last);
1006 if (
Filter(entry) ==
false)
1030 (
static_cast<DBTable *
>(partition))->ReleaseWalker(walk_ref);
1034 Pagination *page =
new Pagination();
1041 table->
Size(), page_size);
1046 void AgentInitStateReq::HandleRequest()
const {
1047 AgentInitState *resp =
new AgentInitState();
1048 resp->set_context(context());
1051 resp->set_state(
"InitDone");
1053 resp->set_state(
"InProgress");
1058 void VrouterObjectLimitsReq::HandleRequest()
const {
1059 VrouterObjectLimitsResp *resp =
new VrouterObjectLimitsResp();
1060 resp->set_context(context());
1065 resp->set_vrouter_object_limit(vr_limits);
1070 const std::string &u) :
1072 boost::system::error_code ec;
1081 resp_ =
new HealthCheckSandeshResp();
1101 const std::string &u,
1102 const std::string &name,
1103 const std::string &
id) :
1112 resp_ =
new AgentQosConfigSandeshResp();
1124 if (
id_.empty() ==
false) {
1127 if (qos->
id() != id) {
1132 if (
name_.empty() ==
false &&
1152 const std::string &u,
1153 const std::string &name,
1154 const std::string &
id) :
1163 resp_ =
new ForwardingClassSandeshResp();
1175 if (
id_.empty() ==
false) {
1178 if (fc->
id() != id) {
1183 if (
name_.empty() ==
false &&
1203 const std::string &u,
1204 const std::string &name,
1205 const std::string &
id) :
1214 resp_ =
new QosQueueSandeshResp();
1225 if (
id_.empty() ==
false) {
1228 if (qos_queue->
id() != id) {
1233 if (
name_.empty() ==
false &&
1253 const std::string &u,
1254 const std::string &name) :
1256 boost::system::error_code ec;
1265 resp_ =
new BridgeDomainSandeshResp();
1276 if (
name_.empty() ==
false &&
1295 const std::string &u,
1296 const std::string &name) :
1298 boost::system::error_code ec;
1303 resp_ =
new ApplicationPolicySetResp();
1326 if (
name_.empty() ==
false &&
1335 const std::string &u,
1336 const std::string &name) :
1338 boost::system::error_code ec;
1347 resp_ =
new TagSandeshResp();
1352 dynamic_cast<const TagEntry *
>(entry);
1358 if (
name_.empty() ==
false &&
1377 resp_ =
new SLOListResp();
1385 resp_ =
new CryptTunnelResp();
1389 const std::string &remote_ip) :
1406 assert(crypt_tunnel_entry);
1418 resp_ =
new MulticastPolicyResp();
AgentMirrorSandesh(const std::string &context, const std::string &analyzer_name)
AgentVnSandesh(const std::string &context, const std::string &name, const std::string &u, const std::string &vxlan_id, const std::string &ipam_name)
DBTable * AgentGetTable()
DBTable * AgentGetTable()
virtual bool FilterToArgs(AgentSandeshArguments *args)
static void DoSandesh(AgentSandeshPtr sandesh, int start, int count)
const MacAddress & vm_mac() const
bool EntrySandesh(DBEntryBase *entry, int first, int last)
static Agent * GetInstance()
static boost::uuids::uuid StringToUuid(const std::string &str)
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 ...
int Encode(std::string *str)
DBTable * AgentGetTable()
AgentRouteTable * GetInet4MulticastRouteTable() const
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual bool Filter(const DBEntryBase *entry)
AgentRouteTable * GetEvpnRouteTable() const
std::string parent_uuid_str_
const std::string & name() const
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
DBTable * AgentGetTable()
bool UpdateResp(DBEntryBase *entry)
NextHopTable * nexthop_table() const
bool UpdateResp(DBEntryBase *entry)
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.
bool DBEntrySandesh(Sandesh *resp, std::string &name) const
const NextHop * nexthop() const
DBTable * AgentGetTable()
bool stringToInteger(const std::string &str, NumberType &num)
const std::string & name() const
static int ComputeLast(int first, int last, int len)
DBTable * AgentGetTable()
DBTableWalkRef AllocWalker(WalkFn walk_fn, WalkCompleteFn walk_complete)
InetUnicastAgentRouteTable * GetInet4UnicastRouteTable() const
bool UpdateResp(DBEntryBase *entry)
const std::string & name() const
WorkQueue< PageRequest > page_request_queue_
InterfaceTable * interface_table() const
virtual bool FilterToArgs(AgentSandeshArguments *args)
VnTable * vn_table() const
InetUnicastAgentRouteTable * GetInet4MplsUnicastRouteTable() const
virtual bool FilterToArgs(AgentSandeshArguments *args)
DBTable * AgentGetTable()
virtual bool FilterToArgs(AgentSandeshArguments *args)
Interface * physical_interface() const
std::string policy_enabled_
InetUnicastAgentRouteTable * GetInet6UnicastRouteTable() const
static const uint16_t kEntriesPerPage
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()
MplsTable * mpls_table() const
Base class for all Route entries in agent.
DBTable * AgentGetTable()
bool UpdateResp(DBEntryBase *entry)
DBTable * AgentGetTable()
TagTable * tag_table() const
QosQueueTable * qos_queue_table() const
DBTable * AgentGetTable()
AgentHealthCheckSandesh(const std::string &context, const std::string &u)
DBTable * AgentGetTable()
MirrorTable * mirror_table() const
std::string ToString() const
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)
DBTable * AgentGetTable()
virtual bool Filter(const DBEntryBase *entry)
DBTable * AgentGetTable()
void WalkAgain(DBTableWalkRef walk)
ServiceInstanceTable * service_instance_table() const
virtual size_t Size() const
static bool MatchUuid(const string &uuid_str, const boost::uuids::uuid &u, const boost::uuids::uuid val)
void MakeSandeshPageReq(PageReqData *req, DBTable *table, int first, int last, int end, int count, int page_size)
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual bool Filter(const DBEntryBase *entry)
PolicySetTable * policy_set_table() const
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)
QosQueueSandesh(const std::string &context, const std::string &u, const std::string &name, const std::string &id)
virtual bool Filter(const DBEntryBase *entry)
BridgeDomainTable * bridge_domain_table() const
AgentVxLanSandesh(const std::string &context, const std::string &vxlan_id)
const std::string & name() const
virtual bool Filter(const DBEntryBase *entry)
std::string analyzer_name_
boost::uuids::uuid parent_uuid_
VrfAssignTable * vrf_assign_table() const
virtual bool Filter(const DBEntryBase *entry)
DBTable * AgentGetTable()
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
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
bool DBEntrySandesh(Sandesh *resp, std::string &name) const
DBTable * AgentGetTable()
const std::vector< VnIpam > & GetVnIpam() const
class boost::shared_ptr< AgentSandesh > AgentSandeshPtr
const VnEntry * vn() const
AgentCryptTunnelSandesh(const std::string &context, const std::string &name)
const std::string & name() const
CryptTunnelTable * crypt_tunnel_table() const
AgentSandeshManager * agent_sandesh_manager()
std::string l2_active_str_
bool UpdateResp(DBEntryBase *entry)
bool Add(const std::string &key, const std::string &val)
const boost::uuids::uuid & uuid() const
virtual bool Filter(const DBEntryBase *entry)
void AddPageRequest(const std::string &key, const std::string &context)
virtual bool FilterToArgs(AgentSandeshArguments *args)
virtual const PrefixType & prefix_address() const
Returns the value of a stored prefix address (IPv4, IPv6 or MAC address)
DBTable * AgentGetTable()
virtual bool UpdateResp(DBEntryBase *entry)
virtual bool Filter(const DBEntryBase *entry)
VrfTable * vrf_table() const
const boost::uuids::uuid & uuid() const
const Ip4Address & primary_ip_addr() const
virtual DBTablePartBase * GetTablePartition(const DBRequestKey *key)
const boost::uuids::uuid & uuid() const
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
int GetInt(const std::string &key) const
virtual DBTable * AgentGetTable()=0
uint32_t vxlan_id() const
HealthCheckTable * health_check_table() const
AgentQosConfigTable * qos_config_table() const
VxLanTable * vxlan_table() const
static const uint8_t entries_per_sandesh
SecurityLoggingObjectTable * slo_table() const
DBTable * AgentGetTable()
std::string ip_active_str_
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)
virtual AgentSandeshPtr GetAgentSandesh(const AgentSandeshArguments *args, const std::string &context)
boost::uuids::uuid uuid() const
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)
DBTable * AgentGetTable()
virtual bool DBEntrySandesh(Sandesh *resp, std::string &name) const =0
DBTable * AgentGetTable()
virtual bool FilterToArgs(AgentSandeshArguments *args)
static bool MatchSubString(const string &str, const string &sub_str)
bool UpdateResp(DBEntryBase *entry)
const std::string & name() const
static int ComputePageSize(int first, int last)
SgTable * sg_table() const
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
const std::string GetAnalyzerName() const
DBTable * AgentGetTable()
const std::string & name() const
#define AGENT_SANDESH_TASKNAME
AgentQosConfigSandesh(const std::string &context, const std::string &u, const std::string &name, const std::string &id)
bool PolicyEnabled() const
const boost::uuids::uuid & GetUuid() const
bool UpdateResp(DBEntryBase *entry)
const string & GetName() const
DBTable * AgentGetTable()
AgentMplsSandesh(const std::string &context, const std::string &type, const std::string &label)
AgentSandeshManager(Agent *agent)
const boost::uuids::uuid & uuid() const
ForwardingClassTable * forwarding_class_table() const
boost::intrusive_ptr< DBTableWalk > DBTableWalkRef
MulticastPolicyTable * mp_table() const
void SandeshError(const std::string &msg, const std::string &context)
bool UpdateResp(DBEntryBase *entry)
AclTable * acl_table() const
DBTable * AgentGetTable()
virtual bool Filter(const DBEntryBase *entry)
static int ComputeFirst(int first, int len)
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 UpdateResp(DBEntryBase *entry)
VmTable * vm_table() const
virtual bool FilterToArgs(AgentSandeshArguments *args)
DBTable * AgentGetTable()
DBTable * AgentGetTable()
DBTableBase * FindTable(const std::string &name)
virtual bool DBEntrySandesh(Sandesh *sresp, bool stale) const
int Decode(const std::string &str)
DBTable * AgentGetTable()
VrouterObjectLimits GetVrouterObjectLimits()
virtual bool Filter(const DBEntryBase *entry)
virtual AgentSandeshPtr GetAgentSandesh(const AgentSandeshArguments *args, const std::string &context)
virtual bool Filter(const DBEntryBase *entry)