VOM: vxlan_tunnel equals operator
[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 {
117 }
118
119 bool
120 vxlan_tunnel::operator==(const vxlan_tunnel& other) const
121 {
122   return ((m_tep == other.m_tep) && (m_mode == other.m_mode));
123 }
124
125 const handle_t&
126 vxlan_tunnel::handle() const
127 {
128   return (m_hdl.data());
129 }
130
131 std::shared_ptr<vxlan_tunnel>
132 vxlan_tunnel::find(const interface::key_t& k)
133 {
134   return std::dynamic_pointer_cast<vxlan_tunnel>(m_db.find(k));
135 }
136
137 void
138 vxlan_tunnel::sweep()
139 {
140   if (m_hdl) {
141     if (mode_t::STANDARD == m_mode)
142       HW::enqueue(new vxlan_tunnel_cmds::delete_cmd(m_hdl, m_tep));
143     else if (mode_t::GBP == m_mode)
144       HW::enqueue(new vxlan_gbp_tunnel_cmds::delete_cmd(m_hdl, m_tep));
145   }
146   HW::write();
147 }
148
149 void
150 vxlan_tunnel::replay()
151 {
152   if (m_hdl) {
153     if (mode_t::STANDARD == m_mode)
154       HW::enqueue(new vxlan_tunnel_cmds::create_cmd(
155         m_hdl, name(), m_tep,
156         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
157     else if (mode_t::GBP == m_mode)
158       HW::enqueue(new vxlan_gbp_tunnel_cmds::create_cmd(
159         m_hdl, name(), m_tep,
160         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
161   }
162 }
163
164 vxlan_tunnel::~vxlan_tunnel()
165 {
166   sweep();
167   release();
168 }
169
170 std::string
171 vxlan_tunnel::to_string() const
172 {
173   std::ostringstream s;
174   s << "vxlan-tunnel: " << m_hdl.to_string() << " " << m_mode.to_string() << " "
175     << m_tep.to_string();
176
177   return (s.str());
178 }
179
180 void
181 vxlan_tunnel::update(const vxlan_tunnel& desired)
182 {
183   /*
184    * the desired state is always that the interface should be created
185    */
186   if (rc_t::OK != m_hdl.rc()) {
187     if (mode_t::STANDARD == m_mode)
188       HW::enqueue(new vxlan_tunnel_cmds::create_cmd(
189         m_hdl, name(), m_tep,
190         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
191     else if (mode_t::GBP == m_mode)
192       HW::enqueue(new vxlan_gbp_tunnel_cmds::create_cmd(
193         m_hdl, name(), m_tep,
194         (m_mcast_itf ? m_mcast_itf->handle() : handle_t::INVALID)));
195   }
196 }
197
198 std::shared_ptr<vxlan_tunnel>
199 vxlan_tunnel::singular() const
200 {
201   return std::dynamic_pointer_cast<vxlan_tunnel>(singular_i());
202 }
203
204 std::shared_ptr<interface>
205 vxlan_tunnel::singular_i() const
206 {
207   return m_db.find_or_add(key(), *this);
208 }
209
210 void
211 vxlan_tunnel::event_handler::handle_populate(const client_db::key_t& key)
212 {
213   /*
214    * dump VPP current states
215    */
216   {
217     std::shared_ptr<vxlan_tunnel_cmds::dump_cmd> cmd =
218       std::make_shared<vxlan_tunnel_cmds::dump_cmd>();
219
220     HW::enqueue(cmd);
221     HW::write();
222
223     for (auto& record : *cmd) {
224       auto& payload = record.get_payload();
225       handle_t hdl(payload.sw_if_index);
226       boost::asio::ip::address src =
227         from_bytes(payload.is_ipv6, payload.src_address);
228       boost::asio::ip::address dst =
229         from_bytes(payload.is_ipv6, payload.dst_address);
230
231       std::shared_ptr<vxlan_tunnel> vt =
232         vxlan_tunnel(src, dst, payload.vni).singular();
233       vt->set(hdl);
234
235       VOM_LOG(log_level_t::DEBUG) << "dump: " << vt->to_string();
236
237       OM::commit(key, *vt);
238     }
239   }
240   {
241     std::shared_ptr<vxlan_gbp_tunnel_cmds::dump_cmd> cmd =
242       std::make_shared<vxlan_gbp_tunnel_cmds::dump_cmd>();
243
244     HW::enqueue(cmd);
245     HW::write();
246
247     for (auto& record : *cmd) {
248       auto& payload = record.get_payload();
249       handle_t hdl(payload.tunnel.sw_if_index);
250       boost::asio::ip::address src = from_api(payload.tunnel.src);
251       boost::asio::ip::address dst = from_api(payload.tunnel.dst);
252
253       std::shared_ptr<vxlan_tunnel> vt =
254         vxlan_tunnel(src, dst, payload.tunnel.vni, mode_t::GBP).singular();
255       vt->set(hdl);
256
257       VOM_LOG(log_level_t::DEBUG) << "dump: " << vt->to_string();
258
259       OM::commit(key, *vt);
260     }
261   }
262 }
263
264 vxlan_tunnel::event_handler::event_handler()
265 {
266   OM::register_listener(this);
267   inspect::register_handler({ "vxlan" }, "VXLAN Tunnels", this);
268 }
269
270 void
271 vxlan_tunnel::event_handler::handle_replay()
272 {
273   // replay is handled from the interface DB
274 }
275
276 dependency_t
277 vxlan_tunnel::event_handler::order() const
278 {
279   return (dependency_t::VIRTUAL_INTERFACE);
280 }
281
282 void
283 vxlan_tunnel::event_handler::show(std::ostream& os)
284 {
285   // dumped by the interface handler
286 }
287
288 }; // namespace VOM
289
290 /*
291  * fd.io coding-style-patch-verification: ON
292  *
293  * Local Variables:
294  * eval: (c-set-style "mozilla")
295  * End:
296  */