blob: 750ad1f888161e3f28d2c704b6fce5e80a3c130c [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001/*
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
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070016#include "vom/interface_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017#include "vom/cmd.hpp"
18
19DEFINE_VAPI_MSG_IDS_VPE_API_JSON;
20DEFINE_VAPI_MSG_IDS_INTERFACE_API_JSON;
21DEFINE_VAPI_MSG_IDS_AF_PACKET_API_JSON;
22DEFINE_VAPI_MSG_IDS_TAP_API_JSON;
23DEFINE_VAPI_MSG_IDS_STATS_API_JSON;
24
25namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070026namespace interface_cmds {
27loopback_create_cmd::loopback_create_cmd(HW::item<handle_t>& item,
28 const std::string& name)
Neale Ranns812ed392017-10-16 04:20:13 -070029 : create_cmd(item, name)
30{
31}
32
33rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070034loopback_create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070035{
36 msg_t req(con.ctx(), std::ref(*this));
37
38 VAPI_CALL(req.execute());
39
40 m_hw_item = wait();
41
42 if (m_hw_item.rc() == rc_t::OK) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070043 insert_interface();
Neale Ranns812ed392017-10-16 04:20:13 -070044 }
45
46 return rc_t::OK;
47}
48std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070049loopback_create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070050{
51 std::ostringstream s;
52 s << "loopback-itf-create: " << m_hw_item.to_string() << " name:" << m_name;
53
54 return (s.str());
55}
56
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070057af_packet_create_cmd::af_packet_create_cmd(HW::item<handle_t>& item,
58 const std::string& name)
Neale Ranns812ed392017-10-16 04:20:13 -070059 : create_cmd(item, name)
60{
61}
62
63rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070064af_packet_create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070065{
66 msg_t req(con.ctx(), std::ref(*this));
67
68 auto& payload = req.get_request().get_payload();
69
70 payload.use_random_hw_addr = 1;
71 memset(payload.host_if_name, 0, sizeof(payload.host_if_name));
72 memcpy(payload.host_if_name, m_name.c_str(),
73 std::min(m_name.length(), sizeof(payload.host_if_name)));
74
75 VAPI_CALL(req.execute());
76
77 m_hw_item = wait();
78
79 if (m_hw_item.rc() == rc_t::OK) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070080 insert_interface();
Neale Ranns812ed392017-10-16 04:20:13 -070081 }
82
83 return rc_t::OK;
84}
85std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070086af_packet_create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070087{
88 std::ostringstream s;
89 s << "af-packet-itf-create: " << m_hw_item.to_string() << " name:" << m_name;
90
91 return (s.str());
92}
93
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070094tap_create_cmd::tap_create_cmd(HW::item<handle_t>& item,
95 const std::string& name)
Neale Ranns812ed392017-10-16 04:20:13 -070096 : create_cmd(item, name)
97{
98}
99
100rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700101tap_create_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700102{
103 msg_t req(con.ctx(), std::ref(*this));
104
105 auto& payload = req.get_request().get_payload();
106
107 memset(payload.tap_name, 0, sizeof(payload.tap_name));
108 memcpy(payload.tap_name, m_name.c_str(),
109 std::min(m_name.length(), sizeof(payload.tap_name)));
110 payload.use_random_mac = 1;
111
112 VAPI_CALL(req.execute());
113
114 m_hw_item = wait();
115
116 if (m_hw_item.rc() == rc_t::OK) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700117 insert_interface();
Neale Ranns812ed392017-10-16 04:20:13 -0700118 }
119
120 return rc_t::OK;
121}
122
123std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700124tap_create_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700125{
126 std::ostringstream s;
127 s << "tap-intf-create: " << m_hw_item.to_string() << " name:" << m_name;
128
129 return (s.str());
130}
131
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700132loopback_delete_cmd::loopback_delete_cmd(HW::item<handle_t>& item)
Neale Ranns812ed392017-10-16 04:20:13 -0700133 : delete_cmd(item)
134{
135}
136
137rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700138loopback_delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700139{
140 msg_t req(con.ctx(), std::ref(*this));
141
142 auto& payload = req.get_request().get_payload();
143 payload.sw_if_index = m_hw_item.data().value();
144
145 VAPI_CALL(req.execute());
146
147 wait();
148 m_hw_item.set(rc_t::NOOP);
149
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700150 remove_interface();
Neale Ranns812ed392017-10-16 04:20:13 -0700151 return rc_t::OK;
152}
153
154std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700155loopback_delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700156{
157 std::ostringstream s;
158 s << "loopback-itf-delete: " << m_hw_item.to_string();
159
160 return (s.str());
161}
162
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700163af_packet_delete_cmd::af_packet_delete_cmd(HW::item<handle_t>& item,
164 const std::string& name)
Neale Ranns812ed392017-10-16 04:20:13 -0700165 : delete_cmd(item, name)
166{
167}
168
169rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700170af_packet_delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700171{
172 msg_t req(con.ctx(), std::ref(*this));
173
174 auto& payload = req.get_request().get_payload();
175 memset(payload.host_if_name, 0, sizeof(payload.host_if_name));
176 memcpy(payload.host_if_name, m_name.c_str(),
177 std::min(m_name.length(), sizeof(payload.host_if_name)));
178
179 VAPI_CALL(req.execute());
180
181 wait();
182 m_hw_item.set(rc_t::NOOP);
183
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700184 remove_interface();
Neale Ranns812ed392017-10-16 04:20:13 -0700185 return rc_t::OK;
186}
187std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700188af_packet_delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700189{
190 std::ostringstream s;
191 s << "af_packet-itf-delete: " << m_hw_item.to_string();
192
193 return (s.str());
194}
195
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700196tap_delete_cmd::tap_delete_cmd(HW::item<handle_t>& item)
Neale Ranns812ed392017-10-16 04:20:13 -0700197 : delete_cmd(item)
198{
199}
200
201rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700202tap_delete_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700203{
204 // finally... call VPP
205
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700206 remove_interface();
Neale Ranns812ed392017-10-16 04:20:13 -0700207 return rc_t::OK;
208}
209std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700210tap_delete_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700211{
212 std::ostringstream s;
213 s << "tap-itf-delete: " << m_hw_item.to_string();
214
215 return (s.str());
216}
217
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700218state_change_cmd::state_change_cmd(HW::item<interface::admin_state_t>& state,
219 const HW::item<handle_t>& hdl)
Neale Ranns812ed392017-10-16 04:20:13 -0700220 : rpc_cmd(state)
221 , m_hdl(hdl)
222{
223}
224
225bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700226state_change_cmd::operator==(const state_change_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700227{
228 return ((m_hdl == other.m_hdl) && (m_hw_item == other.m_hw_item));
229}
230
231rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700232state_change_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700233{
234 msg_t req(con.ctx(), std::ref(*this));
235
236 auto& payload = req.get_request().get_payload();
237 payload.sw_if_index = m_hdl.data().value();
238 payload.admin_up_down = m_hw_item.data().value();
239
240 VAPI_CALL(req.execute());
241
242 m_hw_item.set(wait());
243
244 return rc_t::OK;
245}
246
247std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700248state_change_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700249{
250 std::ostringstream s;
251 s << "itf-state-change: " << m_hw_item.to_string()
252 << " hdl:" << m_hdl.to_string();
253 return (s.str());
254}
255
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700256set_table_cmd::set_table_cmd(HW::item<route::table_id_t>& table,
257 const l3_proto_t& proto,
258 const HW::item<handle_t>& hdl)
Neale Ranns812ed392017-10-16 04:20:13 -0700259 : rpc_cmd(table)
260 , m_hdl(hdl)
261 , m_proto(proto)
262{
263}
264
265bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700266set_table_cmd::operator==(const set_table_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700267{
268 return ((m_hdl == other.m_hdl) && (m_proto == other.m_proto) &&
269 (m_hw_item == other.m_hw_item));
270}
271
272rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700273set_table_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700274{
275 msg_t req(con.ctx(), std::ref(*this));
276
277 auto& payload = req.get_request().get_payload();
278 payload.sw_if_index = m_hdl.data().value();
279 payload.is_ipv6 = m_proto.is_ipv6();
280 payload.vrf_id = m_hw_item.data();
281
282 VAPI_CALL(req.execute());
283
284 m_hw_item.set(wait());
285
286 return (rc_t::OK);
287}
288
289std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700290set_table_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700291{
292 std::ostringstream s;
293 s << "itf-set-table: " << m_hw_item.to_string()
294 << " proto:" << m_proto.to_string() << " hdl:" << m_hdl.to_string();
295 return (s.str());
296}
297
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700298set_mac_cmd::set_mac_cmd(HW::item<l2_address_t>& mac,
299 const HW::item<handle_t>& hdl)
Neale Ranns812ed392017-10-16 04:20:13 -0700300 : rpc_cmd(mac)
301 , m_hdl(hdl)
302{
303}
304
305bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700306set_mac_cmd::operator==(const set_mac_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700307{
308 return ((m_hdl == other.m_hdl) && (m_hw_item == other.m_hw_item));
309}
310
311rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700312set_mac_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700313{
314 msg_t req(con.ctx(), std::ref(*this));
315
316 auto& payload = req.get_request().get_payload();
317 payload.sw_if_index = m_hdl.data().value();
318 m_hw_item.data().to_mac().to_bytes(payload.mac_address,
319 sizeof(payload.mac_address));
320
321 VAPI_CALL(req.execute());
322
323 m_hw_item.set(wait());
324
325 return (rc_t::OK);
326}
327
328std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700329set_mac_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700330{
331 std::ostringstream s;
332 s << "itf-set-mac: " << m_hw_item.to_string() << " hdl:" << m_hdl.to_string();
333 return (s.str());
334}
335
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700336events_cmd::events_cmd(interface::event_listener& el)
Neale Ranns812ed392017-10-16 04:20:13 -0700337 : event_cmd(el.status())
338 , m_listener(el)
339{
340}
341
342bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700343events_cmd::operator==(const events_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700344{
345 return (true);
346}
347
348rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700349events_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700350{
351 /*
352 * First set the call back to handle the interface events
353 */
354 m_reg.reset(new reg_t(con.ctx(), std::ref(*(static_cast<event_cmd*>(this)))));
355
356 /*
357 * then send the request to enable them
358 */
359 msg_t req(con.ctx(), std::ref(*(static_cast<rpc_cmd*>(this))));
360
361 auto& payload = req.get_request().get_payload();
362 payload.enable_disable = 1;
363 payload.pid = getpid();
364
365 VAPI_CALL(req.execute());
366
367 wait();
368
369 return (rc_t::INPROGRESS);
370}
371
372void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700373events_cmd::retire(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700374{
375 /*
376 * disable interface events.
377 */
378 msg_t req(con.ctx(), std::ref(*(static_cast<rpc_cmd*>(this))));
379
380 auto& payload = req.get_request().get_payload();
381 payload.enable_disable = 0;
382 payload.pid = getpid();
383
384 VAPI_CALL(req.execute());
385
386 wait();
387}
388
389void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700390events_cmd::notify()
Neale Ranns812ed392017-10-16 04:20:13 -0700391{
392 m_listener.handle_interface_event(this);
393}
394
395std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700396events_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700397{
398 return ("itf-events");
399}
400
401/**
402 * Interface statistics
403 */
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100404stats_cmd::stats_cmd(interface::stat_listener& el, const handle_t& handle)
Neale Ranns812ed392017-10-16 04:20:13 -0700405 : event_cmd(el.status())
406 , m_listener(el)
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100407 , m_swifindex(handle)
Neale Ranns812ed392017-10-16 04:20:13 -0700408{
409}
410
411bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700412stats_cmd::operator==(const stats_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700413{
414 return (true);
415}
416
417rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700418stats_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700419{
420 /*
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100421 * First set the call back to handle the interface stats
422 */
Neale Ranns812ed392017-10-16 04:20:13 -0700423 m_reg.reset(new reg_t(con.ctx(), std::ref(*(static_cast<event_cmd*>(this)))));
Neale Ranns812ed392017-10-16 04:20:13 -0700424
425 /*
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100426 * then send the request to enable them
427 */
428 msg_t req(con.ctx(), 1, std::ref(*(static_cast<rpc_cmd*>(this))));
Neale Ranns812ed392017-10-16 04:20:13 -0700429
430 auto& payload = req.get_request().get_payload();
431 payload.enable_disable = 1;
432 payload.pid = getpid();
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100433 payload.num = 1;
Neale Ranns812ed392017-10-16 04:20:13 -0700434
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100435 payload.sw_ifs[0] = m_swifindex.value();
Neale Ranns812ed392017-10-16 04:20:13 -0700436
437 VAPI_CALL(req.execute());
438
439 wait();
440
441 return (rc_t::INPROGRESS);
442}
443
444void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700445stats_cmd::retire(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700446{
Mohsin Kazmi5a4f96a2017-11-20 10:23:47 +0100447 /*
448 * disable interface stats.
449 */
450 msg_t req(con.ctx(), 1, std::ref(*(static_cast<rpc_cmd*>(this))));
451
452 auto& payload = req.get_request().get_payload();
453 payload.enable_disable = 0;
454 payload.pid = getpid();
455 payload.num = 1;
456 payload.sw_ifs[0] = m_swifindex.value();
457
458 VAPI_CALL(req.execute());
459
460 wait();
Neale Ranns812ed392017-10-16 04:20:13 -0700461}
462
463void
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700464stats_cmd::notify()
Neale Ranns812ed392017-10-16 04:20:13 -0700465{
466 m_listener.handle_interface_stat(this);
467}
468
469std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700470stats_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700471{
472 return ("itf-stats");
473}
474
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700475dump_cmd::dump_cmd()
Neale Ranns812ed392017-10-16 04:20:13 -0700476{
477}
478
479bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700480dump_cmd::operator==(const dump_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700481{
482 return (true);
483}
484
485rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700486dump_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700487{
488 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
489
490 auto& payload = m_dump->get_request().get_payload();
491 payload.name_filter_valid = 0;
492
493 VAPI_CALL(m_dump->execute());
494
495 wait();
496
497 return rc_t::OK;
498}
499
500std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700501dump_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700502{
503 return ("itf-dump");
504}
505
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700506set_tag::set_tag(HW::item<handle_t>& item, const std::string& name)
Neale Ranns812ed392017-10-16 04:20:13 -0700507 : rpc_cmd(item)
508 , m_name(name)
509{
510}
511
512rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700513set_tag::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700514{
515 msg_t req(con.ctx(), std::ref(*this));
516
517 auto& payload = req.get_request().get_payload();
518 payload.is_add = 1;
519 payload.sw_if_index = m_hw_item.data().value();
520 memcpy(payload.tag, m_name.c_str(), m_name.length());
521
522 VAPI_CALL(req.execute());
523
524 wait();
525
526 return rc_t::OK;
527}
528std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700529set_tag::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700530{
531 std::ostringstream s;
532 s << "itf-set-tag: " << m_hw_item.to_string() << " name:" << m_name;
533
534 return (s.str());
535}
536
537bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700538set_tag::operator==(const set_tag& o) const
Neale Ranns812ed392017-10-16 04:20:13 -0700539{
540 return ((m_name == o.m_name) && (m_hw_item.data() == o.m_hw_item.data()));
541}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700542}; // namespace interface_cmds
543}; // namespace VOM
544
Neale Ranns812ed392017-10-16 04:20:13 -0700545/*
546 * fd.io coding-style-patch-verification: ON
547 *
548 * Local Variables:
549 * eval: (c-set-style "mozilla")
550 * End:
551 */