GBP V2
[vpp.git] / src / vpp-api / vom / nat_static_cmds.cpp
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/nat_static_cmds.hpp"
17
18 DEFINE_VAPI_MSG_IDS_NAT_API_JSON;
19
20 namespace VOM {
21 namespace nat_static_cmds {
22
23 create_44_cmd::create_44_cmd(HW::item<bool>& item,
24                              route::table_id_t id,
25                              const boost::asio::ip::address_v4& inside,
26                              const boost::asio::ip::address_v4& outside)
27   : rpc_cmd(item)
28   , m_id(id)
29   , m_inside(inside)
30   , m_outside(outside)
31 {
32 }
33
34 bool
35 create_44_cmd::operator==(const create_44_cmd& other) const
36 {
37   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
38           (m_outside == other.m_outside));
39 }
40
41 rc_t
42 create_44_cmd::issue(connection& con)
43 {
44   msg_t req(con.ctx(), std::ref(*this));
45
46   auto& payload = req.get_request().get_payload();
47   payload.is_add = 1;
48   payload.addr_only = 1;
49   payload.local_port = 0;
50   payload.external_port = 0;
51   payload.vrf_id = m_id;
52   payload.external_sw_if_index = ~0;
53   to_bytes(m_inside, payload.local_ip_address);
54   to_bytes(m_outside, payload.external_ip_address);
55
56   VAPI_CALL(req.execute());
57
58   m_hw_item.set(wait());
59
60   return rc_t::OK;
61 }
62
63 std::string
64 create_44_cmd::to_string() const
65 {
66   std::ostringstream s;
67   s << "nat-44-static-create: " << m_hw_item.to_string() << " table:" << m_id
68     << " inside:" << m_inside.to_string()
69     << " outside:" << m_outside.to_string();
70
71   return (s.str());
72 }
73
74 delete_44_cmd::delete_44_cmd(HW::item<bool>& item,
75                              route::table_id_t id,
76                              const boost::asio::ip::address_v4& inside,
77                              const boost::asio::ip::address_v4& outside)
78   : rpc_cmd(item)
79   , m_id(id)
80   , m_inside(inside)
81   , m_outside(outside)
82 {
83 }
84
85 bool
86 delete_44_cmd::operator==(const delete_44_cmd& other) const
87 {
88   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
89           (m_outside == other.m_outside));
90 }
91
92 rc_t
93 delete_44_cmd::issue(connection& con)
94 {
95   msg_t req(con.ctx(), std::ref(*this));
96
97   auto& payload = req.get_request().get_payload();
98   payload.is_add = 0;
99   payload.addr_only = 1;
100   payload.local_port = 0;
101   payload.external_port = 0;
102   payload.vrf_id = m_id;
103   payload.external_sw_if_index = ~0;
104   to_bytes(m_inside, payload.local_ip_address);
105   to_bytes(m_outside, payload.external_ip_address);
106
107   VAPI_CALL(req.execute());
108
109   wait();
110   m_hw_item.set(rc_t::NOOP);
111
112   return rc_t::OK;
113 }
114
115 std::string
116 delete_44_cmd::to_string() const
117 {
118   std::ostringstream s;
119   s << "nat-44-static-delete: " << m_hw_item.to_string() << " table:" << m_id
120     << " inside:" << m_inside.to_string()
121     << " outside:" << m_outside.to_string();
122
123   return (s.str());
124 }
125
126 bool
127 dump_44_cmd::operator==(const dump_44_cmd& other) const
128 {
129   return (true);
130 }
131
132 rc_t
133 dump_44_cmd::issue(connection& con)
134 {
135   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
136
137   VAPI_CALL(m_dump->execute());
138
139   wait();
140
141   return rc_t::OK;
142 }
143
144 std::string
145 dump_44_cmd::to_string() const
146 {
147   return ("nat-44-static-dump");
148 }
149
150 create_66_cmd::create_66_cmd(HW::item<bool>& item,
151                              route::table_id_t id,
152                              const boost::asio::ip::address_v6& inside,
153                              const boost::asio::ip::address_v6& outside)
154   : rpc_cmd(item)
155   , m_id(id)
156   , m_inside(inside)
157   , m_outside(outside)
158 {
159 }
160
161 bool
162 create_66_cmd::operator==(const create_66_cmd& other) const
163 {
164   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
165           (m_outside == other.m_outside));
166 }
167
168 rc_t
169 create_66_cmd::issue(connection& con)
170 {
171   msg_t req(con.ctx(), std::ref(*this));
172
173   auto& payload = req.get_request().get_payload();
174   payload.is_add = 1;
175   payload.vrf_id = m_id;
176   to_bytes(m_inside, payload.local_ip_address);
177   to_bytes(m_outside, payload.external_ip_address);
178
179   VAPI_CALL(req.execute());
180
181   m_hw_item.set(wait());
182
183   return rc_t::OK;
184 }
185
186 std::string
187 create_66_cmd::to_string() const
188 {
189   std::ostringstream s;
190   s << "nat-66-static-create: " << m_hw_item.to_string() << " table:" << m_id
191     << " inside:" << m_inside.to_string()
192     << " outside:" << m_outside.to_string();
193
194   return (s.str());
195 }
196
197 delete_66_cmd::delete_66_cmd(HW::item<bool>& item,
198                              route::table_id_t id,
199                              const boost::asio::ip::address_v6& inside,
200                              const boost::asio::ip::address_v6& outside)
201   : rpc_cmd(item)
202   , m_id(id)
203   , m_inside(inside)
204   , m_outside(outside)
205 {
206 }
207
208 bool
209 delete_66_cmd::operator==(const delete_66_cmd& other) const
210 {
211   return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
212           (m_outside == other.m_outside));
213 }
214
215 rc_t
216 delete_66_cmd::issue(connection& con)
217 {
218   msg_t req(con.ctx(), std::ref(*this));
219
220   auto& payload = req.get_request().get_payload();
221   payload.is_add = 0;
222   payload.vrf_id = m_id;
223   to_bytes(m_inside, payload.local_ip_address);
224   to_bytes(m_outside, payload.external_ip_address);
225
226   VAPI_CALL(req.execute());
227
228   wait();
229   m_hw_item.set(rc_t::NOOP);
230
231   return rc_t::OK;
232 }
233
234 std::string
235 delete_66_cmd::to_string() const
236 {
237   std::ostringstream s;
238   s << "nat-66-static-delete: " << m_hw_item.to_string() << " table:" << m_id
239     << " inside:" << m_inside.to_string()
240     << " outside:" << m_outside.to_string();
241
242   return (s.str());
243 }
244
245 bool
246 dump_66_cmd::operator==(const dump_66_cmd& other) const
247 {
248   return (true);
249 }
250
251 rc_t
252 dump_66_cmd::issue(connection& con)
253 {
254   m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
255
256   VAPI_CALL(m_dump->execute());
257
258   wait();
259
260   return rc_t::OK;
261 }
262
263 std::string
264 dump_66_cmd::to_string() const
265 {
266   return ("nat-static-dump");
267 }
268
269 }; // namespace nat_static_cmds
270 }; // namespace VOM
271
272 /*
273  * fd.io coding-style-patch-verification: ON
274  *
275  * Local Variables:
276  * eval: (c-set-style "mozilla")
277  * End:
278  */