FD.io VPP  v18.07.1-19-g511ce25
Vector Packet Processing
gbp_endpoint_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 
17 
19 
20 namespace VOM {
21 namespace gbp_endpoint_cmds {
22 
24  const handle_t& itf,
25  const boost::asio::ip::address& ip_addr,
26  const mac_address_t& mac,
27  epg_id_t epg_id)
28  : rpc_cmd(item)
29  , m_itf(itf)
30  , m_ip_addr(ip_addr)
31  , m_mac(mac)
32  , m_epg_id(epg_id)
33 {
34 }
35 
36 bool
38 {
39  return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr) &&
40  (m_mac == other.m_mac) && (m_epg_id == other.m_epg_id));
41 }
42 
43 rc_t
45 {
46  msg_t req(con.ctx(), std::ref(*this));
47 
48  auto& payload = req.get_request().get_payload();
49  payload.is_add = 1;
50  payload.endpoint.sw_if_index = m_itf.value();
51  payload.endpoint.epg_id = m_epg_id;
52  to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
53  m_mac.to_bytes(payload.endpoint.mac, 6);
54 
55  VAPI_CALL(req.execute());
56 
57  return (wait());
58 }
59 
60 std::string
62 {
63  std::ostringstream s;
64  s << "gbp-endpoint-create: " << m_hw_item.to_string() << " itf:" << m_itf
65  << " ip:" << m_ip_addr.to_string() << " epg-id:" << m_epg_id;
66 
67  return (s.str());
68 }
69 
71  const handle_t& itf,
72  const boost::asio::ip::address& ip_addr)
73  : rpc_cmd(item)
74  , m_itf(itf)
75  , m_ip_addr(ip_addr)
76 {
77 }
78 
79 bool
81 {
82  return ((m_itf == other.m_itf) && (m_ip_addr == other.m_ip_addr));
83 }
84 
85 rc_t
87 {
88  msg_t req(con.ctx(), std::ref(*this));
89 
90  auto& payload = req.get_request().get_payload();
91  payload.is_add = 0;
92  payload.endpoint.sw_if_index = m_itf.value();
93  payload.endpoint.epg_id = ~0;
94  to_bytes(m_ip_addr, &payload.endpoint.is_ip6, payload.endpoint.address);
95 
96  VAPI_CALL(req.execute());
97 
98  return (wait());
99 }
100 
101 std::string
103 {
104  std::ostringstream s;
105  s << "gbp-endpoint-delete: " << m_hw_item.to_string() << " itf:" << m_itf
106  << " ip:" << m_ip_addr.to_string();
107 
108  return (s.str());
109 }
110 
112 {
113 }
114 
115 bool
116 dump_cmd::operator==(const dump_cmd& other) const
117 {
118  return (true);
119 }
120 
121 rc_t
123 {
124  m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
125 
126  VAPI_CALL(m_dump->execute());
127 
128  wait();
129 
130  return rc_t::OK;
131 }
132 
133 std::string
135 {
136  return ("gbp-endpoint-dump");
137 }
138 
139 }; // namespace gbp_endpoint_cmds
140 }; // namespace VOM
141 
142 /*
143  * fd.io coding-style-patch-verification: ON
144  *
145  * Local Variables:
146  * eval: (c-set-style "mozilla")
147  * End:
148  */
typedef address
Definition: ip_types.api:35
uint32_t value() const
get the value of the handle
Definition: types.cpp:93
uint32_t epg_id_t
EPG IDs are 32 bit integers.
Error codes that VPP will return during a HW write.
Definition: types.hpp:84
rc_t issue(connection &con)
Issue the command to VPP/HW.
A cmd class that deletes a GBP endpoint.
std::string to_string() const
convert to string format for debug purposes
Definition: hw.hpp:160
void to_bytes(const boost::asio::ip::address_v6 &addr, uint8_t *array)
Definition: prefix.cpp:218
A representation of the connection to VPP.
Definition: connection.hpp:33
A cmd class that Dumps all the GBP endpoints.
create_cmd(HW::item< bool > &item, const handle_t &itf, const boost::asio::ip::address &ip_addr, const mac_address_t &mac, epg_id_t epg_id)
Constructor.
delete_cmd(HW::item< bool > &item, const handle_t &itf, const boost::asio::ip::address &ip_addr)
Constructor.
A command class that creates or updates the GBP endpoint.
A base class for all RPC commands to VPP.
Definition: rpc_cmd.hpp:38
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
Definition: types.hpp:29
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
DEFINE_VAPI_MSG_IDS_GBP_API_JSON
A type declaration of an interface handle in VPP.
Definition: types.hpp:228
static const rc_t OK
The HW write was successfull.
Definition: types.hpp:104
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
rc_t issue(connection &con)
Issue the command to VPP/HW.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
Definition: connection.cpp:49
void to_bytes(uint8_t *array, uint8_t len) const
Convert to byte array.
Definition: types.cpp:140
std::string to_string() const
convert to string format for debug purposes
The VPP Object Model (VOM) library.
Definition: acl_binding.cpp:19
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
Type def of a Ethernet address.
Definition: types.hpp:290
rc_t issue(connection &con)
Issue the command to VPP/HW.
bool operator==(const delete_cmd &i) const
Comparison operator - only used for UT.
HW::item< bool > & m_hw_item
A reference to an object&#39;s HW::item that the command will update.
Definition: rpc_cmd.hpp:132
HW::item< bool > & item()
return the HW item the command updates
Definition: rpc_cmd.hpp:64
vapi::Gbp_endpoint_add_del msg_t
convenient typedef
Definition: rpc_cmd.hpp:44