23 singular_db<gbp_contract::key_t, gbp_contract> gbp_contract::m_db;
35 , m_acl(acl.singular())
37 , m_allowed_ethertypes(allowed_ethertypes)
43 , m_sclass(gbpc.m_sclass)
44 , m_dclass(gbpc.m_dclass)
46 , m_gbp_rules(gbpc.m_gbp_rules)
47 , m_allowed_ethertypes(gbpc.m_allowed_ethertypes)
56 m_db.release(
key(),
this);
62 return (std::make_pair(m_sclass, m_dclass));
68 return ((
key() == gbpc.
key()) && (m_acl->handle() == gbpc.m_acl->handle()));
85 m_acl->handle(), m_gbp_rules,
86 m_allowed_ethertypes));
94 s <<
"gbp-contract:[{" << m_sclass <<
", " << m_dclass <<
"}, " 95 << m_acl->to_string();
96 if (m_gbp_rules.size()) {
97 auto it = m_gbp_rules.cbegin();
98 while (it != m_gbp_rules.cend()) {
104 for (
auto e : m_allowed_ethertypes)
119 m_acl->handle(), m_gbp_rules,
120 m_allowed_ethertypes));
124 std::shared_ptr<gbp_contract>
127 return (m_db.find_or_add(temp.
key(), temp));
130 std::shared_ptr<gbp_contract>
133 return (m_db.find(k));
136 std::shared_ptr<gbp_contract>
139 return find_or_add(*
this);
155 gbp_contract::event_handler::handle_replay()
163 std::shared_ptr<gbp_contract_cmds::dump_cmd>
cmd =
164 std::make_shared<gbp_contract_cmds::dump_cmd>();
169 for (
auto& record : *cmd) {
170 auto& payload = record.get_payload();
172 std::shared_ptr<ACL::l3_list> acl =
178 for (uint8_t
i = 0;
i < payload.contract.n_rules;
i++) {
182 payload.contract.rules[
i].nh_set.hash_mode);
184 for (
u8 j = 0; j < payload.contract.rules[
i].nh_set.n_nhs; j++) {
186 from_api(payload.contract.rules[
i].nh_set.nhs[j].ip),
187 from_api(payload.contract.rules[
i].nh_set.nhs[j].mac),
188 payload.contract.rules[
i].nh_set.nhs[j].bd_id,
189 payload.contract.rules[
i].nh_set.nhs[j].rd_id);
201 data = (((
u8*)&payload.contract.n_ether_types) +
202 (
sizeof(payload.contract.rules[0]) * payload.contract.n_rules));
206 for (uint8_t
i = 0;
i < n_et;
i++) {
210 gbp_contract gbpc(payload.contract.sclass, payload.contract.dclass, *acl,
211 rules, allowed_ethertypes);
222 gbp_contract::event_handler::order()
const 236 os <<
"{ " << key.first <<
"," << key.second <<
"}";
An L3 ACL list comprises a set of match actions rules to be applied to packets.
const key_t key() const
Return the object's key.
void db_dump(const DB &db, std::ostream &os)
Print each of the objects in the DB into the stream provided.
const std::string key_t
In the opflex world each entity is known by a URI which can be converted into a string.
static void dump(std::ostream &os)
Dump all bridge_domain-doamin into the stream provided.
static void register_handler(const std::vector< std::string > &cmds, const std::string &help, command_handler *ch)
Register a command handler for inspection.
static rc_t write()
Write/Execute all commands hitherto enqueued.
static const log_level_t DEBUG
static const ethertype_t & from_numeric_val(uint16_t numeric)
Get the ethertype from the numeric value.
static std::shared_ptr< l3_list > find(const handle_t &handle)
std::set< ethertype_t > ethertype_set_t
A set of allowed ethertypes.
std::shared_ptr< gbp_contract > singular() const
Return the matching 'singular instance'.
rc_t rc() const
Get the HW return code.
bool operator==(const gbp_contract &bdae) const
comparison operator
void replay(void)
replay the object to create it in hardware
Representation of set of next hops and associated hash mode profile.
vl_api_gbp_next_hop_t nhs[8]
A entry in the ARP termination table of a Bridge Domain.
std::pair< sclass_t, sclass_t > key_t
The key for a contract is the pair of EPG-IDs.
~gbp_contract()
Destructor.
std::string to_string() const
Convert to string for debugging.
A command class that creates or updates the GBP contract.
vl_api_gbp_rule_t rules[n_rules]
static rc_t commit(const client_db::key_t &key, const OBJ &obj)
Make the State in VPP reflect the expressed desired state.
void event_handler(void *tls_async)
dependency_t
There needs to be a strict order in which object types are read from VPP (at boot time) and replayed ...
Representation of next hop.
static const rc_t OK
The HW write was successfull.
static void enqueue(cmd *f)
Enqueue A command for execution.
static const log_level_t ERROR
std::set< gbp_rule > gbp_rules_t
set of gbp rules
std::ostream & operator<<(std::ostream &os, const std::pair< direction_t, interface::key_t > &key)
The VPP Object Model (VOM) library.
const neighbour::flags_t from_api(vapi_enum_ip_neighbor_flags f)
A representation of a method call to VPP.
std::set< next_hop_t > next_hops_t
unordered set of next hops
static std::shared_ptr< gbp_contract > find(const key_t &k)
Find the instnace of the bridge_domain domain in the OM.
gbp_contract(sclass_t sclass, sclass_t dclass, const ACL::l3_list &acl, const gbp_rules_t &gpb_rules, const ethertype_set_t &allowed_ethertypes)
Construct a GBP contract.
A cmd class that deletes a GBP contract.
u16 allowed_ethertypes[16]
static const hash_mode_t & from_int(vapi_enum_gbp_hash_mode i)
create the hash mode from int value
static bool register_listener(listener *listener)
Register a listener of events.
static const action_t & from_int(vapi_enum_gbp_rule_action i)
create the action from int value