VOM: vxlan-tunnel mcast interface fix
[vpp.git] / extras / vom / vom / vxlan_tunnel.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/vxlan_tunnel.hpp"
17 #include "vom/api_types.hpp"
18 #include "vom/logger.hpp"
19 #include "vom/singular_db_funcs.hpp"
20 #include "vom/vxlan_gbp_tunnel_cmds.hpp"
21 #include "vom/vxlan_tunnel_cmds.hpp"
22
23 namespace VOM {
24 const std::string VXLAN_TUNNEL_NAME = "vxlan-tunnel-itf";
25
26 vxlan_tunnel::event_handler vxlan_tunnel::m_evh;
27
28 const vxlan_tunnel::mode_t vxlan_tunnel::mode_t::STANDARD(0, "standard");
29 const vxlan_tunnel::mode_t vxlan_tunnel::mode_t::GBP(1, "GBP");
30 const vxlan_tunnel::mode_t vxlan_tunnel::mode_t::GPE(2, "GPE");
31
32 vxlan_tunnel::mode_t::mode_t(int v, const std::string s)
33   : enum_base<vxlan_tunnel::mode_t>(v, s)
34 {
35 }
36
37 vxlan_tunnel::endpoint_t::endpoint_t(const boost::asio::ip::address& src,
38                                      const boost::asio::ip::address& dst,
39                                      uint32_t vni)
40   : src(src)
41   , dst(dst)
42   , vni(vni)
43 {
44 }
45
46 vxlan_tunnel::endpoint_t::endpoint_t()
47   : src()
48   , dst()
49   , vni(0)
50 {
51 }
52
53 bool
54 vxlan_tunnel::endpoint_t::operator==(const endpoint_t& other) const
55 {
56   return ((src == other.src) && (dst == other.dst) && (vni == other.vni));
57 }
58
59 std::string
60 vxlan_tunnel::endpoint_t::to_string() const
61 {
62   std::ostringstream s;
63
64   s << "ep:["
65     << "src:" << src.to_string() << " dst:" << dst.to_string() << " vni:" << vni
66     << "]";
67
68   return (s.str());
69 }
70
71 std::string
72 vxlan_tunnel::mk_name(const boost::asio::ip::address& src,
73                       const boost::asio::ip::address& dst,
74                       const mode_t& mode,
75                       uint32_t vni)
76 {
77   std::ostringstream s;
78
79   s << VXLAN_TUNNEL_NAME << "-" << mode.to_string() << "-" << src << "-" << dst
80     << ":" << vni;
81
82   return (s.str());
83 }
84
85 vxlan_tunnel::vxlan_tunnel(const boost::asio::ip::address& src,
86                            const boost::asio::ip::address& dst,
87                            uint32_t vni,
88                            const mode_t& mode)
89   : interface(mk_name(src, dst, mode, vni),
90               interface::type_t::VXLAN,
91               interface::admin_state_t::UP)
92   , m_tep(src, dst, vni)
93   , m_mode(mode)
94   , m_mcast_itf()
95 {
96 }
97
98 vxlan_tunnel::vxlan_tunnel(const boost::asio::ip::address& src,
99                            const boost::asio::ip::address& dst,
100                            uint32_t vni,
101                            const interface& mcast_itf,
102                            const mode_t& mode)
103   : interface(mk_name(src, dst, mode, vni),
104               interface::type_t::VXLAN,
105               interface::admin_state_t::UP)
106   , m_tep(src, dst, vni)
107   , m_mode(mode)
108   , m_mcast_itf(mcast_itf.singular())
109 {
110 }
111
112 vxlan_tunnel::vxlan_tunnel(const vxlan_tunnel& o)
113   : interface(o)
114   , m_tep(o.m_tep)
115   , m_mode(o.m_mode)
116   , m_mcast_itf(o.m_mcast_itf)
117 {
118 }
119
120 bool
121 vxlan_tunnel::operator==(const vxlan_tunnel& other) const
122 {
123   return ((m_tep == other.m_tep) && (m_mode == other.m_mode) &&
124           (m_mcast_itf == other.m_mcast_itf));
125 }
126
127 const handle_t&
128 vxlan_tunnel::handle() const
129 {
130   return (m_hdl.data());
131 }
132
133 std::shared_ptr<vxlan_tunnel>
134 vxlan_tunnel::find(const interface::key_t& k)
135 {
136   return std::dynamic_pointer_cast<vxlan_tunnel>(m_db.find(k));
137 }
138
139 void
140 vxlan_tunnel::sweep()
141 {
142   if (m_hdl) {
143     if (mode_t::STANDARD == m_mode)
144       HW::enqueue(new vxlan_tunnel_cmds::delete_cmd(m_hdl, m_tep));
145     else if (mode_t::GBP == m_mode)
146       HW::enqueue(new vxlan_gbp_tunnel_cmds::delete_cmd(m_hdl, m_tep));
147   }
148   HW::write();
149 }
150
151 void
152 vxlan_tunnel::replay()
153 {
154   if (m_hdl) {
155     if (mode_t::STANDARD == m_mode)
156       HW::enqueue(new vxlan_tunnel_cmds::create_cmd(
157         m_hdl, name(), m_tep,
158         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
159     else if (mode_t::GBP == m_mode)
160       HW::enqueue(new vxlan_gbp_tunnel_cmds::create_cmd(
161         m_hdl, name(), m_tep,
162         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
163   }
164 }
165
166 vxlan_tunnel::~vxlan_tunnel()
167 {
168   sweep();
169   release();
170 }
171
172 std::string
173 vxlan_tunnel::to_string() const
174 {
175   std::ostringstream s;
176   s << "vxlan-tunnel: " << m_hdl.to_string() << " " << m_mode.to_string() << " "
177     << m_tep.to_string();
178   if (m_mcast_itf)
179     s << " " << m_mcast_itf->to_string();
180
181   return (s.str());
182 }
183
184 void
185 vxlan_tunnel::update(const vxlan_tunnel& desired)
186 {
187   /*
188    * the desired state is always that the interface should be created
189    */
190   if (rc_t::OK != m_hdl.rc()) {
191     if (mode_t::STANDARD == m_mode)
192       HW::enqueue(new vxlan_tunnel_cmds::create_cmd(
193         m_hdl, name(), m_tep,
194         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
195     else if (mode_t::GBP == m_mode)
196       HW::enqueue(new vxlan_gbp_tunnel_cmds::create_cmd(
197         m_hdl, name(), m_tep,
198         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
199   }
200 }
201
202 std::shared_ptr<vxlan_tunnel>
203 vxlan_tunnel::singular() const
204 {
205   return std::dynamic_pointer_cast<vxlan_tunnel>(singular_i());
206 }
207
208 std::shared_ptr<interface>
209 vxlan_tunnel::singular_i() const
210 {
211   return m_db.find_or_add(key(), *this);
212 }
213
214 void
215 vxlan_tunnel::event_handler::handle_populate(const client_db::key_t& key)
216 {
217   /*
218    * dump VPP current states
219    */
220   {
221     std::shared_ptr<vxlan_tunnel_cmds::dump_cmd> cmd =
222       std::make_shared<vxlan_tunnel_cmds::dump_cmd>();
223
224     HW::enqueue(cmd);
225     HW::write();
226
227     for (auto& record : *cmd) {
228       auto& payload = record.get_payload();
229       handle_t hdl(payload.sw_if_index);
230       boost::asio::ip::address src =
231         from_bytes(payload.is_ipv6, payload.src_address);
232       boost::asio::ip::address dst =
233         from_bytes(payload.is_ipv6, payload.dst_address);
234
235       std::shared_ptr<vxlan_tunnel> vt =
236         vxlan_tunnel(src, dst, payload.vni).singular();
237       vt->set(hdl);
238
239       VOM_LOG(log_level_t::DEBUG) << "dump: " << vt->to_string();
240
241       OM::commit(key, *vt);
242     }
243   }
244   {
245     std::shared_ptr<vxlan_gbp_tunnel_cmds::dump_cmd> cmd =
246       std::make_shared<vxlan_gbp_tunnel_cmds::dump_cmd>();
247
248     HW::enqueue(cmd);
249     HW::write();
250
251     for (auto& record : *cmd) {
252       auto& payload = record.get_payload();
253       handle_t hdl(payload.tunnel.sw_if_index);
254       boost::asio::ip::address src = from_api(payload.tunnel.src);
255       boost::asio::ip::address dst = from_api(payload.tunnel.dst);
256
257       std::shared_ptr<vxlan_tunnel> vt =
258         vxlan_tunnel(src, dst, payload.tunnel.vni, mode_t::GBP).singular();
259       vt->set(hdl);
260
261       VOM_LOG(log_level_t::DEBUG) << "dump: " << vt->to_string();
262
263       OM::commit(key, *vt);
264     }
265   }
266 }
267
268 vxlan_tunnel::event_handler::event_handler()
269 {
270   OM::register_listener(this);
271   inspect::register_handler({ "vxlan" }, "VXLAN Tunnels", this);
272 }
273
274 void
275 vxlan_tunnel::event_handler::handle_replay()
276 {
277   // replay is handled from the interface DB
278 }
279
280 dependency_t
281 vxlan_tunnel::event_handler::order() const
282 {
283   return (dependency_t::VIRTUAL_INTERFACE);
284 }
285
286 void
287 vxlan_tunnel::event_handler::show(std::ostream& os)
288 {
289   // dumped by the interface handler
290 }
291
292 }; // namespace VOM
293
294 /*
295  * fd.io coding-style-patch-verification: ON
296  *
297  * Local Variables:
298  * eval: (c-set-style "mozilla")
299  * End:
300  */