FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
gbp_vxlan_cmds.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "vom/gbp_vxlan_cmds.hpp"
17 #include "vom/api_types.hpp"
18 
19 namespace VOM {
20 namespace gbp_vxlan_cmds {
22  const std::string& name,
23  const boost::asio::ip::address_v4& src,
24  uint32_t vni,
25  bool is_l2,
26  uint32_t bd_rd)
27  : interface::create_cmd<vapi::Gbp_vxlan_tunnel_add>(item, name)
28  , m_src(src)
29  , m_vni(vni)
30  , m_is_l2(is_l2)
31  , m_bd_rd(bd_rd)
32 {
33 }
34 
35 rc_t
37 {
38  msg_t req(con.ctx(), std::ref(*this));
39 
40  auto& payload = req.get_request().get_payload();
41 
42  payload.tunnel.vni = m_vni;
43  payload.tunnel.bd_rd_id = m_bd_rd;
44  if (m_is_l2)
45  payload.tunnel.mode = GBP_VXLAN_TUNNEL_MODE_L2;
46  else
47  payload.tunnel.mode = GBP_VXLAN_TUNNEL_MODE_L3;
48  to_api(m_src, payload.tunnel.src);
49 
50  VAPI_CALL(req.execute());
51 
52  wait();
53  if (m_hw_item.rc() == rc_t::OK) {
55  }
56 
57  return (m_hw_item.rc());
58 }
59 
60 std::string
62 {
63  std::ostringstream s;
64  s << "gbp-vxlan-create: " << m_hw_item.to_string() << " vni:" << m_vni
65  << " bd/rd:" << m_bd_rd;
66 
67  return (s.str());
68 }
69 
71  : interface::delete_cmd<vapi::Gbp_vxlan_tunnel_del>(item)
72  , m_vni(vni)
73 {
74 }
75 
76 rc_t
78 {
79  msg_t req(con.ctx(), std::ref(*this));
80 
81  auto& payload = req.get_request().get_payload();
82  payload.vni = m_vni;
83 
84  VAPI_CALL(req.execute());
85 
86  wait();
88 
90  return rc_t::OK;
91 }
92 
93 std::string
95 {
96  std::ostringstream s;
97  s << "gbp-vxlan-delete: " << m_hw_item.to_string() << " vni:" << m_vni;
98 
99  return (s.str());
100 }
101 
103 {
104 }
105 
106 bool
107 dump_cmd::operator==(const dump_cmd& other) const
108 {
109  return (true);
110 }
111 
112 rc_t
114 {
115  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
116 
117  VAPI_CALL(m_dump->execute());
118 
119  wait();
120 
121  return rc_t::OK;
122 }
123 
124 std::string
126 {
127  return ("gbp-vxlan-dump");
128 }
129 
130 } // namespace gbp_vxlan_cmds
131 } // namespace VOM
132 
133 /*
134  * fd.io coding-style-patch-verification: ON
135  *
136  * Local Variables:
137  * eval: (c-set-style "mozilla")
138  * End:
139  */
std::string to_string() const
convert to string format for debug purposes
static const rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:104
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
void remove_interface()
remove the deleted interface from the DB
Definition: interface.hpp:412
vl_api_address_t src
Definition: gre.api:51
A cmd class that Dumps all the bridge domains.
Error codes that VPP will return during a HW write.
Definition: types.hpp:89
vapi_enum_ip_neighbor_flags to_api(const neighbour::flags_t &f)
Definition: api_types.cpp:21
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:161
Forward declarations.
Definition: vapi.hpp:44
A command class that creates an Bridge-Domain.
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t rc() const
Get the HW return code.
Definition: hw.hpp:119
A representation of the connection to VPP.
Definition: connection.hpp:33
create_cmd(HW::item< handle_t > &item, const std::string &name, const boost::asio::ip::address_v4 &src, uint32_t vni, bool is_l2, uint32_t bd_rd)
Constructor.
u8 name[64]
Definition: memclnt.api:152
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
A cmd class that Delete an Bridge-Domain.
A representation of an interface in VPP.
Definition: interface.hpp:41
rc_t issue(connection &con)
Issue the command to VPP/HW.
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:109
delete_cmd(HW::item< handle_t > &item, uint32_t vni)
Constructor.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition: connection.cpp:49
void insert_interface()
add the created interface to the DB
Definition: interface.hpp:343
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
Definition: hw.hpp:125
u32 vni
Definition: vxlan_gbp.api:42
std::string to_string() const
convert to string format for debug purposes
HW::item< handle_t > & m_hw_item
A reference to an object&#39;s HW::item that the command will update.
Definition: rpc_cmd.hpp:134
HW::item< handle_t > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:66
vapi::Gbp_vxlan_tunnel_add msg_t
convenient typedef
Definition: rpc_cmd.hpp:46