FD.io VPP  v19.04.2-12-g66b1689
Vector Packet Processing
bond_interface_cmds.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
17 
19 
20 namespace VOM {
21 namespace bond_interface_cmds {
23  const std::string& name,
25  const bond_interface::lb_t& lb,
26  const l2_address_t& l2_address)
27  : interface::create_cmd<vapi::Bond_create>(item, name)
28  , m_mode(mode)
29  , m_lb(lb)
30  , m_l2_address(l2_address)
31 {
32 }
33 
34 rc_t
36 {
37  msg_t req(con.ctx(), std::ref(*this));
38 
39  auto& payload = req.get_request().get_payload();
40 
41  if (m_l2_address != l2_address_t::ZERO) {
42  m_l2_address.to_bytes(payload.mac_address, 6);
43  payload.use_custom_mac = 1;
44  }
45 
46  payload.mode = m_mode.value();
47  if ((m_mode == bond_interface::mode_t::XOR ||
48  m_mode == bond_interface::mode_t::LACP) &&
50  payload.lb = m_lb.value();
51 
52  VAPI_CALL(req.execute());
53 
54  wait();
55 
56  if (m_hw_item.rc() == rc_t::OK) {
58  }
59 
60  return rc_t::OK;
61 }
62 
63 std::string
65 {
66  std::ostringstream s;
67  s << "bond-intf-create: " << m_hw_item.to_string();
68 
69  return (s.str());
70 }
71 
73  : interface::delete_cmd<vapi::Bond_delete>(item)
74 {
75 }
76 
77 rc_t
79 {
80  msg_t req(con.ctx(), std::ref(*this));
81 
82  auto& payload = req.get_request().get_payload();
83  payload.sw_if_index = m_hw_item.data().value();
84 
85  VAPI_CALL(req.execute());
86 
87  wait();
90 
91  return rc_t::OK;
92 }
93 
94 std::string
96 {
97  std::ostringstream s;
98  s << "bond-itf-delete: " << m_hw_item.to_string();
99 
100  return (s.str());
101 }
102 
104 {
105 }
106 
107 bool
108 dump_cmd::operator==(const dump_cmd& other) const
109 {
110  return (true);
111 }
112 
113 rc_t
115 {
116  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
117 
118  VAPI_CALL(m_dump->execute());
119 
120  wait();
121 
122  return rc_t::OK;
123 }
124 
125 std::string
127 {
128  return ("bond-itf-dump");
129 }
130 } // namespace bond_interface_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  */
static const rc_t NOOP
The HW write/update action was/has not been attempted.
Definition: types.hpp:104
int value() const
Return the value of the enum - same as integer conversion.
Definition: enum_base.hpp:88
void remove_interface()
remove the deleted interface from the DB
Definition: interface.hpp:407
uint32_t value() const
get the value of the handle
Definition: types.cpp:93
A functor class that deletes a Tap interface.
void to_bytes(uint8_t *array, uint8_t len) const
Convert to byte array.
Definition: types.cpp:208
std::string to_string() const
convert to string format for debug purposes
static const mode_t XOR
XOR bond interface mode.
Error codes that VPP will return during a HW write.
Definition: types.hpp:89
std::string to_string() const
convert to string format for debug purposes
static const l2_address_t ZERO
An all 0&#39;s L2 address.
Definition: types.hpp:358
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:161
A bond interface load balance.
Type def of a L2 address as read from VPP.
Definition: types.hpp:339
rc_t wait()
Wait on the commands promise.
Definition: rpc_cmd.hpp:82
T & data()
Return the data read/written.
Definition: hw.hpp:109
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
static const mode_t LACP
LACP bond interface mode.
Forward declarations.
Definition: vapi.hpp:44
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
A cmd class that Dumps all the Vpp Interfaces.
u8 name[64]
Definition: memclnt.api:152
A functor class that creates an interface.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
A representation of an interface in VPP.
Definition: interface.hpp:41
std::string to_string() const
convert to string format for debug purposes
create_cmd(HW::item< handle_t > &item, const std::string &name, const bond_interface::mode_t &mode, const bond_interface::lb_t &lb, const l2_address_t &l2_address)
vl_api_vxlan_gbp_api_tunnel_mode_t mode
Definition: vxlan_gbp.api:44
A bond interface mode.
delete_cmd(HW::item< handle_t > &item)
static const lb_t UNSPECIFIED
Unspecified bond interface lb.
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:109
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:338
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
rc_t issue(connection &con)
Issue the command to VPP/HW.
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
DEFINE_VAPI_MSG_IDS_BOND_API_JSON
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::Bond_create msg_t
convenient typedef
Definition: rpc_cmd.hpp:46