X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvpp-api%2Fvom%2Finterface.cpp;h=f323727b052d8a25bdb76ef242f9a122d040fb06;hb=ed76ee24dfe76fb9400470a4efb3871acd37cad9;hp=8e270136d8b5f5809fd9433709d6f5f4defc7beb;hpb=9ef1c0adbf9399c55deeede3cf629dd4e8c20304;p=vpp.git diff --git a/src/vpp-api/vom/interface.cpp b/src/vpp-api/vom/interface.cpp index 8e270136d8b..f323727b052 100644 --- a/src/vpp-api/vom/interface.cpp +++ b/src/vpp-api/vom/interface.cpp @@ -14,6 +14,9 @@ */ #include "vom/interface.hpp" +#include "vom/bond_group_binding.hpp" +#include "vom/bond_group_binding_cmds.hpp" +#include "vom/bond_interface_cmds.hpp" #include "vom/interface_cmds.hpp" #include "vom/interface_factory.hpp" #include "vom/l3_binding_cmds.hpp" @@ -24,7 +27,7 @@ namespace VOM { /** * A DB of all the interfaces, key on the name */ -singular_db interface::m_db; +singular_db interface::m_db; /** * A DB of all the interfaces, key on VPP's handle @@ -38,7 +41,8 @@ interface::event_handler interface::m_evh; */ interface::interface(const std::string& name, interface::type_t itf_type, - interface::admin_state_t itf_state) + interface::admin_state_t itf_state, + const std::string& tag) : m_hdl(handle_t::INVALID) , m_name(name) , m_type(itf_type) @@ -46,28 +50,15 @@ interface::interface(const std::string& name, , m_table_id(route::DEFAULT_TABLE) , m_l2_address(l2_address_t::ZERO, rc_t::UNSET) , m_oper(oper_state_t::DOWN) -{ -} - -interface::interface(const handle_t& handle, - const l2_address_t& l2_address, - const std::string& name, - interface::type_t type, - interface::admin_state_t state) - : m_hdl(handle) - , m_name(name) - , m_type(type) - , m_state(state) - , m_table_id(route::DEFAULT_TABLE) - , m_l2_address(l2_address) - , m_oper(oper_state_t::DOWN) + , m_tag(tag) { } interface::interface(const std::string& name, interface::type_t itf_type, interface::admin_state_t itf_state, - const route_domain& rd) + const route_domain& rd, + const std::string& tag) : m_hdl(handle_t::INVALID) , m_name(name) , m_type(itf_type) @@ -76,6 +67,7 @@ interface::interface(const std::string& name, , m_table_id(m_rd->table_id()) , m_l2_address(l2_address_t::ZERO, rc_t::UNSET) , m_oper(oper_state_t::DOWN) + , m_tag(tag) { } @@ -88,9 +80,19 @@ interface::interface(const interface& o) , m_table_id(o.m_table_id) , m_l2_address(o.m_l2_address) , m_oper(o.m_oper) + , m_tag(o.m_tag) { } +bool +interface::operator==(const interface& i) const +{ + return ((key() == i.key()) && + (m_l2_address.data() == i.m_l2_address.data()) && + (m_state == i.m_state) && (m_rd == i.m_rd) && (m_type == i.m_type) && + (m_oper == i.m_oper)); +} + interface::event_listener::event_listener() : m_status(rc_t::NOOP) { @@ -124,6 +126,12 @@ interface::type() const const handle_t& interface::handle() const +{ + return (singular()->handle_i()); +} + +const handle_t& +interface::handle_i() const { return (m_hdl.data()); } @@ -149,7 +157,7 @@ interface::cend() void interface::sweep() { - if (m_table_id) { + if (m_table_id && (m_table_id.data() != route::DEFAULT_TABLE)) { m_table_id.data() = route::DEFAULT_TABLE; HW::enqueue( new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV4, m_hdl)); @@ -157,11 +165,17 @@ interface::sweep() new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV6, m_hdl)); } + if (m_stats) { + HW::enqueue(new interface_cmds::stats_disable_cmd(m_hdl.data())); + m_stats.reset(); + } + // If the interface is up, bring it down if (m_state && interface::admin_state_t::UP == m_state.data()) { m_state.data() = interface::admin_state_t::DOWN; HW::enqueue(new interface_cmds::state_change_cmd(m_state, m_hdl)); } + if (m_hdl) { std::queue cmds; HW::enqueue(mk_delete_cmd(cmds)); @@ -181,7 +195,7 @@ interface::replay() HW::enqueue(new interface_cmds::state_change_cmd(m_state, m_hdl)); } - if (m_table_id) { + if (m_table_id && (m_table_id.data() != route::DEFAULT_TABLE)) { HW::enqueue( new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV4, m_hdl)); HW::enqueue( @@ -207,15 +221,21 @@ interface::to_string() const { std::ostringstream s; s << "interface:[" << m_name << " type:" << m_type.to_string() - << " hdl:" << m_hdl.to_string() - << " l2-address:" << m_l2_address.to_string(); + << " hdl:" << m_hdl.to_string() << " l2-address:[" + << m_l2_address.to_string() << "]"; if (m_rd) { s << " rd:" << m_rd->to_string(); } s << " admin-state:" << m_state.to_string() - << " oper-state:" << m_oper.to_string() << "]"; + << " oper-state:" << m_oper.to_string(); + + if (!m_tag.empty()) { + s << " tag:[" << m_tag << "]"; + } + + s << "]"; return (s.str()); } @@ -226,7 +246,7 @@ interface::name() const return (m_name); } -const interface::key_type& +const interface::key_t& interface::key() const { return (name()); @@ -240,10 +260,22 @@ interface::mk_create_cmd(std::queue& q) } else if (type_t::BVI == m_type) { q.push(new interface_cmds::loopback_create_cmd(m_hdl, m_name)); q.push(new interface_cmds::set_tag(m_hdl, m_name)); + /* + * set the m_tag for pretty-print + */ + m_tag = m_name; } else if (type_t::AFPACKET == m_type) { q.push(new interface_cmds::af_packet_create_cmd(m_hdl, m_name)); + if (!m_tag.empty()) + q.push(new interface_cmds::set_tag(m_hdl, m_tag)); } else if (type_t::TAP == m_type) { q.push(new interface_cmds::tap_create_cmd(m_hdl, m_name)); + if (!m_tag.empty()) + q.push(new interface_cmds::set_tag(m_hdl, m_tag)); + } else if (type_t::VHOST == m_type) { + q.push(new interface_cmds::vhost_create_cmd(m_hdl, m_name, m_tag)); + } else { + m_hdl.set(rc_t::OK); } return (q); @@ -258,6 +290,8 @@ interface::mk_delete_cmd(std::queue& q) q.push(new interface_cmds::af_packet_delete_cmd(m_hdl, m_name)); } else if (type_t::TAP == m_type) { q.push(new interface_cmds::tap_delete_cmd(m_hdl)); + } else if (type_t::VHOST == m_type) { + q.push(new interface_cmds::vhost_delete_cmd(m_hdl, m_name)); } return (q); @@ -267,32 +301,68 @@ void interface::update(const interface& desired) { /* - * the desired state is always that the interface should be created - */ + * the desired state is always that the interface should be created + */ if (rc_t::OK != m_hdl.rc()) { std::queue cmds; HW::enqueue(mk_create_cmd(cmds)); + /* + * interface create now, so we can barf early if it fails + */ + HW::write(); } /* - * change the interface state to that which is deisred - */ + * If the interface is not created do other commands should be issued + */ + if (rc_t::OK != m_hdl.rc()) + return; + + /* + * change the interface state to that which is deisred + */ if (m_state.update(desired.m_state)) { HW::enqueue(new interface_cmds::state_change_cmd(m_state, m_hdl)); } /* - * change the interface state to that which is deisred - */ + * change the interface state to that which is deisred + */ if (m_l2_address.update(desired.m_l2_address)) { HW::enqueue(new interface_cmds::set_mac_cmd(m_l2_address, m_hdl)); } /* - * If the interface is mapped into a route domain, set VPP's - * table ID - */ - if (!m_table_id && m_rd) { + * If the interface is mapped into a route domain, set VPP's + * table ID + */ + if (m_rd != desired.m_rd) { + /* + * changing route domains. need to remove all L3 bindings, swap the table + * then reapply the bindings. + */ + auto it = l3_binding::cbegin(); + + while (it != l3_binding::cend()) { + if (it->second.lock()->itf().key() == key()) + it->second.lock()->sweep(); + ++it; + } + m_rd = desired.m_rd; + m_table_id.update(m_rd ? m_rd->table_id() : route::DEFAULT_TABLE); + HW::enqueue( + new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV4, m_hdl)); + HW::enqueue( + new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV6, m_hdl)); + HW::write(); + + it = l3_binding::cbegin(); + while (it != l3_binding::cend()) { + if (it->second.lock()->itf().key() == key()) + it->second.lock()->replay(); //(*it->second.lock()); + ++it; + } + } else if (!m_table_id && m_rd) { HW::enqueue( new interface_cmds::set_table_cmd(m_table_id, l3_proto_t::IPV4, m_hdl)); HW::enqueue( @@ -300,6 +370,12 @@ interface::update(const interface& desired) } } +void +interface::set(const admin_state_t& state) +{ + m_state = state; +} + void interface::set(const l2_address_t& addr) { @@ -308,16 +384,44 @@ interface::set(const l2_address_t& addr) m_l2_address.update(addr); } +void +interface::set(const handle_t& hdl) +{ + m_hdl = hdl; +} + void interface::set(const oper_state_t& state) { m_oper = state; } +void +interface::set(const std::string& tag) +{ + m_tag = tag; +} + +void +interface::enable_stats_i(interface::stat_listener& el) +{ + if (!m_stats) { + m_stats.reset(new interface_cmds::stats_enable_cmd(el, handle_i())); + HW::enqueue(m_stats); + HW::write(); + } +} + +void +interface::enable_stats(interface::stat_listener& el) +{ + singular()->enable_stats_i(el); +} + std::shared_ptr interface::singular_i() const { - return (m_db.find_or_add(name(), *this)); + return (m_db.find_or_add(key(), *this)); } std::shared_ptr @@ -327,9 +431,9 @@ interface::singular() const } std::shared_ptr -interface::find(const std::string& name) +interface::find(const key_t& k) { - return (m_db.find(name)); + return (m_db.find(k)); } std::shared_ptr @@ -339,9 +443,9 @@ interface::find(const handle_t& handle) } void -interface::add(const std::string& name, const HW::item& item) +interface::add(const key_t& key, const HW::item& item) { - std::shared_ptr sp = find(name); + std::shared_ptr sp = find(key); if (sp && item) { m_hdl_db[item.data()] = sp; @@ -364,29 +468,44 @@ void interface::event_handler::handle_populate(const client_db::key_t& key) { /* - * dump VPP current states - */ - std::shared_ptr cmd(new interface_cmds::dump_cmd()); + * dump VPP current states + */ + std::shared_ptr vcmd = + std::make_shared(); + + HW::enqueue(vcmd); + HW::write(); + + for (auto& vhost_itf_record : *vcmd) { + std::shared_ptr vitf = + interface_factory::new_vhost_user_interface( + vhost_itf_record.get_payload()); + VOM_LOG(log_level_t::DEBUG) << " vhost-dump: " << vitf->to_string(); + OM::commit(key, *vitf); + } + + std::shared_ptr cmd = + std::make_shared(); HW::enqueue(cmd); HW::write(); for (auto& itf_record : *cmd) { - std::unique_ptr itf = + std::shared_ptr itf = interface_factory::new_interface(itf_record.get_payload()); if (itf && interface::type_t::LOCAL != itf->type()) { VOM_LOG(log_level_t::DEBUG) << "dump: " << itf->to_string(); /* - * Write each of the discovered interfaces into the OM, - * but disable the HW Command q whilst we do, so that no - * commands are sent to VPP - */ + * Write each of the discovered interfaces into the OM, + * but disable the HW Command q whilst we do, so that no + * commands are sent to VPP + */ OM::commit(key, *itf); /** - * Get the address configured on the interface - */ + * Get the address configured on the interface + */ std::shared_ptr dcmd = std::make_shared( l3_binding_cmds::dump_v4_cmd(itf->handle())); @@ -406,6 +525,60 @@ interface::event_handler::handle_populate(const client_db::key_t& key) } } } + + std::shared_ptr bcmd = + std::make_shared(); + + HW::enqueue(bcmd); + HW::write(); + + for (auto& bond_itf_record : *bcmd) { + std::shared_ptr bond_itf = + interface_factory::new_bond_interface(bond_itf_record.get_payload()); + + VOM_LOG(log_level_t::DEBUG) << " bond-dump:" << bond_itf->to_string(); + + /* + * Write each of the discovered interfaces into the OM, + * but disable the HW Command q whilst we do, so that no + * commands are sent to VPP + */ + OM::commit(key, *bond_itf); + + std::shared_ptr scmd = + std::make_shared( + bond_group_binding_cmds::dump_cmd(bond_itf->handle())); + + HW::enqueue(scmd); + HW::write(); + + bond_group_binding::enslaved_itf_t enslaved_itfs; + + for (auto& slave_itf_record : *scmd) { + bond_member slave_itf = interface_factory::new_bond_member_interface( + slave_itf_record.get_payload()); + + VOM_LOG(log_level_t::DEBUG) << " slave-dump:" << slave_itf.to_string(); + + /* + * Write each of the discovered interfaces into the OM, + * but disable the HW Command q whilst we do, so that no + * commands are sent to VPP + */ + // OM::commit(slave_itf->key(), *slave_itf); + enslaved_itfs.insert(slave_itf); + } + + if (!enslaved_itfs.empty()) { + bond_group_binding bid(*bond_itf, enslaved_itfs); + /* + * Write each of the discovered interfaces into the OM, + * but disable the HW Command q whilst we do, so that no + * commands are sent to VPP + */ + OM::commit(key, bid); + } + } } interface::event_handler::event_handler() @@ -431,7 +604,9 @@ interface::event_handler::show(std::ostream& os) { m_db.dump(os); } -} + +} // namespace VOM + /* * fd.io coding-style-patch-verification: ON *