blob: 66691f8605939e88168b70c40d42c67cd96fdd19 [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/l3_binding_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070017
18DEFINE_VAPI_MSG_IDS_IP_API_JSON;
19
20namespace VOM {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070021namespace l3_binding_cmds {
22bind_cmd::bind_cmd(HW::item<bool>& item,
23 const handle_t& itf,
24 const route::prefix_t& pfx)
Neale Ranns812ed392017-10-16 04:20:13 -070025 : rpc_cmd(item)
26 , m_itf(itf)
27 , m_pfx(pfx)
28{
29}
30
31bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070032bind_cmd::operator==(const bind_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070033{
34 return ((m_itf == other.m_itf) && (m_pfx == other.m_pfx));
35}
36
37rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070038bind_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070039{
40 msg_t req(con.ctx(), std::ref(*this));
41
42 auto& payload = req.get_request().get_payload();
43 payload.sw_if_index = m_itf.value();
44 payload.is_add = 1;
45 payload.del_all = 0;
46
47 m_pfx.to_vpp(&payload.is_ipv6, payload.address, &payload.address_length);
48
49 VAPI_CALL(req.execute());
50
51 m_hw_item.set(wait());
52
53 return rc_t::OK;
54}
55
56std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070057bind_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -070058{
59 std::ostringstream s;
60 s << "L3-bind: " << m_hw_item.to_string() << " itf:" << m_itf.to_string()
61 << " pfx:" << m_pfx.to_string();
62
63 return (s.str());
64}
65
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070066unbind_cmd::unbind_cmd(HW::item<bool>& item,
67 const handle_t& itf,
68 const route::prefix_t& pfx)
Neale Ranns812ed392017-10-16 04:20:13 -070069 : rpc_cmd(item)
70 , m_itf(itf)
71 , m_pfx(pfx)
72{
73}
74
75bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070076unbind_cmd::operator==(const unbind_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -070077{
78 return ((m_itf == other.m_itf) && (m_pfx == other.m_pfx));
79}
80
81rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070082unbind_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -070083{
84 msg_t req(con.ctx(), std::ref(*this));
85
86 auto& payload = req.get_request().get_payload();
87 payload.sw_if_index = m_itf.value();
88 payload.is_add = 0;
89 payload.del_all = 0;
90
91 m_pfx.to_vpp(&payload.is_ipv6, payload.address, &payload.address_length);
92
93 VAPI_CALL(req.execute());
94
95 wait();
96 m_hw_item.set(rc_t::NOOP);
97
98 return rc_t::OK;
99}
100
101std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700102unbind_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700103{
104 std::ostringstream s;
105 s << "L3-unbind: " << m_hw_item.to_string() << " itf:" << m_itf.to_string()
106 << " pfx:" << m_pfx.to_string();
107
108 return (s.str());
109}
110
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700111dump_v4_cmd::dump_v4_cmd(const handle_t& hdl)
Neale Ranns812ed392017-10-16 04:20:13 -0700112 : m_itf(hdl)
113{
114}
115
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700116dump_v4_cmd::dump_v4_cmd(const dump_v4_cmd& d)
Neale Ranns812ed392017-10-16 04:20:13 -0700117 : m_itf(d.m_itf)
118{
119}
120
121bool
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700122dump_v4_cmd::operator==(const dump_v4_cmd& other) const
Neale Ranns812ed392017-10-16 04:20:13 -0700123{
124 return (true);
125}
126
127rc_t
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700128dump_v4_cmd::issue(connection& con)
Neale Ranns812ed392017-10-16 04:20:13 -0700129{
130 m_dump.reset(new msg_t(con.ctx(), std::ref(*this)));
131
132 auto& payload = m_dump->get_request().get_payload();
133 payload.sw_if_index = m_itf.value();
134 payload.is_ipv6 = 0;
135
136 VAPI_CALL(m_dump->execute());
137
138 wait();
139
140 return rc_t::OK;
141}
142
143std::string
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700144dump_v4_cmd::to_string() const
Neale Ranns812ed392017-10-16 04:20:13 -0700145{
146 return ("L3-binding-dump");
147}
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700148
149}; // namespace l3_binding_cmds
150}; // namespace VOM
Neale Ranns812ed392017-10-16 04:20:13 -0700151
152/*
153 * fd.io coding-style-patch-verification: ON
154 *
155 * Local Variables:
156 * eval: (c-set-style "mozilla")
157 * End:
158 */