28 singular_db<l3_list::key_t, l3_list> l3_list::m_db;
33 std::map<handle_t, std::weak_ptr<l3_list>> l3_list::m_hdl_db;
68 m_db.release(m_key,
this);
71 std::shared_ptr<l3_list>
74 return find_or_add(*
this);
93 s <<
"acl-list:[" << m_key <<
" " << m_hdl.
to_string() <<
" rules:[";
95 for (
auto rule : m_rules) {
96 s << rule.to_string() <<
" ";
107 m_rules.insert(rule);
122 std::shared_ptr<l3_list>
125 return (m_hdl_db[handle].lock());
128 std::shared_ptr<l3_list>
131 return (m_db.find(key));
134 std::shared_ptr<l3_list>
135 l3_list::find_or_add(
const l3_list& temp)
137 return (m_db.find_or_add(temp.
key(), temp));
141 l3_list::handle_i()
const 143 return (m_hdl.
data());
149 std::shared_ptr<l3_list> sp =
find(key);
152 m_hdl_db[item.
data()] = sp;
159 m_hdl_db.erase(item.
data());
186 std::shared_ptr<list_cmds::l3_dump_cmd>
cmd =
187 std::make_shared<list_cmds::l3_dump_cmd>();
192 for (
auto& record : *cmd) {
193 auto& payload = record.get_payload();
195 const handle_t hdl(payload.acl_index);
198 for (
unsigned int ii = 0; ii < payload.count; ii++) {
231 l3_list::event_handler::order()
const 237 l3_list::event_handler::handle_replay()
243 l3_list::update(
const l3_list& obj)
248 if (
rc_t::OK != m_hdl.
rc() || obj.m_rules != m_rules) {
256 m_rules = obj.m_rules;
275 l3_list::replay(
void)
An L3 ACL list comprises a set of match actions rules to be applied to packets.
void set_src_from_port(uint16_t srcport_or_icmptype_first)
Set Src port or ICMP Type first.
static const action_t & from_int(uint8_t i)
Get the enum type from a VPP integer value.
void set_dst_from_port(uint16_t dstport_or_icmpcode_first)
Set Dst port or ICMP code first.
const key_t & key() const
void db_dump(const DB &db, std::ostream &os)
Print each of the objects in the DB into the stream provided.
void set_tcp_flags_value(uint8_t tcp_flags_value)
Set TCP flags value.
const std::string key_t
In the opflex world each entity is known by a URI which can be converted into a string.
const handle_t & handle() const
Return the VPP assign handle.
std::multiset< l3_rule > rules_t
The rule container type.
static void register_handler(const std::vector< std::string > &cmds, const std::string &help, command_handler *ch)
Register a command handler for inspection.
std::string key_t
The KEY can be used to uniquely identify the ACL.
static rc_t write()
Write/Execute all commands hitherto enqueued.
rc_t rc() const
Get the HW return code.
const rules_t & rules() const
static const log_level_t DEBUG
void set_tcp_flags_mask(uint8_t tcp_flags_mask)
Set TCP flags mask.
static std::shared_ptr< l3_list > find(const handle_t &handle)
std::shared_ptr< l3_list > singular() const
Return the 'sigular instance' of the ACL that matches this object.
T & data()
Return the data read/written.
std::string to_string() const
convert to string format for debug purposes
void set_src_to_port(uint16_t srcport_or_icmptype_last)
Set Src port or ICMP Type last.
static void add(const key_t &key, const HW::item< handle_t > &item)
void remove(const l3_rule &rule)
Remove a rule from the list.
A command class that Create the list.
A cmd class that Deletes an ACL.
void set_dst_to_port(uint16_t dstport_or_icmpcode_last)
Set Dst port or ICMP code last.
static void dump(std::ostream &os)
Dump all ACLs into the stream provided.
A type declaration of an interface handle in VPP.
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)
void set_proto(uint8_t proto)
Set proto.
dependency_t
There needs to be a strict order in which object types are read from VPP (at boot time) and replayed ...
bool operator==(const l3_list &l) const
Comparison operator - for UT.
static const rc_t OK
The HW write was successfull.
static void enqueue(cmd *f)
Enqueue A command for execution.
void insert(const l3_rule &rule)
Insert priority sorted a rule into the list.
The VPP Object Model (VOM) library.
l3_list(const key_t &key)
Construct a new object matching the desried state.
An ACL rule is the building block of an ACL.
const neighbour::flags_t from_api(vapi_enum_ip_neighbor_flags f)
A representation of a method call to VPP.
void reset()
reset the value of the handle to ~0
std::string to_string() const
convert to string format for debug purposes
static bool register_listener(listener *listener)
Register a listener of events.