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