blob: 661d99c4791f8a944470759bd7aa94de77a41e12 [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
16#include "vom/route.hpp"
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070017#include "vom/route_cmds.hpp"
Neale Ranns812ed392017-10-16 04:20:13 -070018#include "vom/singular_db.hpp"
19
Neale Ranns812ed392017-10-16 04:20:13 -070020namespace VOM {
21namespace route {
Neale Ranns10e7a9f2017-11-14 08:40:43 -080022ip_route::event_handler ip_route::m_evh;
Neale Ranns812ed392017-10-16 04:20:13 -070023singular_db<ip_route::key_t, ip_route> ip_route::m_db;
24
25const path::special_t path::special_t::STANDARD(0, "standard");
26const path::special_t path::special_t::LOCAL(0, "local");
27const path::special_t path::special_t::DROP(0, "standard");
28const path::special_t path::special_t::UNREACH(0, "unreachable");
29const path::special_t path::special_t::PROHIBIT(0, "prohibit");
30
31path::special_t::special_t(int v, const std::string& s)
32 : enum_base<path::special_t>(v, s)
33{
34}
35
36path::path(special_t special)
37 : m_type(special)
38 , m_nh_proto(nh_proto_t::IPV4)
39 , m_nh()
40 , m_rd(nullptr)
41 , m_interface(nullptr)
42 , m_weight(1)
43 , m_preference(0)
44{
45}
46
47path::path(const boost::asio::ip::address& nh,
48 const interface& interface,
49 uint8_t weight,
50 uint8_t preference)
51 : m_type(special_t::STANDARD)
52 , m_nh_proto(nh_proto_t::from_address(nh))
53 , m_nh(nh)
54 , m_rd(nullptr)
55 , m_interface(interface.singular())
56 , m_weight(weight)
57 , m_preference(preference)
58{
59}
60
61path::path(const route_domain& rd,
62 const boost::asio::ip::address& nh,
63 uint8_t weight,
64 uint8_t preference)
65 : m_type(special_t::STANDARD)
66 , m_nh_proto(nh_proto_t::from_address(nh))
67 , m_nh(nh)
68 , m_rd(rd.singular())
69 , m_interface(nullptr)
70 , m_weight(weight)
71 , m_preference(preference)
72{
73}
74
75path::path(const interface& interface,
76 const nh_proto_t& proto,
77 uint8_t weight,
78 uint8_t preference)
79 : m_type(special_t::STANDARD)
80 , m_nh_proto(proto)
81 , m_nh()
82 , m_rd(nullptr)
83 , m_interface(interface.singular())
84 , m_weight(weight)
85 , m_preference(preference)
86{
87}
88
89path::path(const path& p)
90 : m_type(p.m_type)
91 , m_nh_proto(p.m_nh_proto)
92 , m_nh(p.m_nh)
93 , m_rd(p.m_rd)
94 , m_interface(p.m_interface)
95 , m_weight(p.m_weight)
96 , m_preference(p.m_preference)
97{
98}
99
100bool
101path::operator<(const path& p) const
102{
103 if (m_type < p.m_type)
104 return true;
Neale Rannsfd920602017-11-23 12:15:00 -0800105 if (m_rd && !p.m_rd)
106 return false;
107 if (!m_rd && p.m_rd)
108 return true;
Neale Ranns812ed392017-10-16 04:20:13 -0700109 if (m_rd->table_id() < p.m_rd->table_id())
110 return true;
111 if (m_nh < p.m_nh)
112 return true;
Neale Rannsfd920602017-11-23 12:15:00 -0800113 if (m_interface && !p.m_interface)
114 return false;
115 if (!m_interface && p.m_interface)
116 return true;
Neale Ranns812ed392017-10-16 04:20:13 -0700117 if (m_interface->handle() < p.m_interface->handle())
118 return true;
119
120 return (false);
121}
122
Neale Rannsfd920602017-11-23 12:15:00 -0800123path::~path()
124{
125}
126
127bool
128path::operator==(const path& p) const
129{
130 bool result = true;
131 if (m_rd && !p.m_rd)
132 return false;
133 if (!m_rd && p.m_rd)
134 return false;
135 if (m_rd && p.m_rd)
136 result &= (*m_rd == *p.m_rd);
137 if (m_interface && !p.m_interface)
138 return false;
139 if (!m_interface && p.m_interface)
140 return false;
141 if (m_interface && p.m_interface)
142 result &= (*m_interface == *p.m_interface);
143 return (result && (m_type == p.m_type) && (m_nh == p.m_nh));
144}
145
Neale Ranns812ed392017-10-16 04:20:13 -0700146std::string
147path::to_string() const
148{
149 std::ostringstream s;
150
151 s << "path:["
152 << "type:" << m_type.to_string() << " proto:" << m_nh_proto.to_string()
153 << " neighbour:" << m_nh.to_string();
154 if (m_rd) {
155 s << " " << m_rd->to_string();
156 }
157 if (m_interface) {
158 s << " " << m_interface->to_string();
159 }
160 s << " weight:" << static_cast<int>(m_weight)
161 << " preference:" << static_cast<int>(m_preference) << "]";
162
163 return (s.str());
164}
165
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700166path::special_t
167path::type() const
168{
169 return m_type;
170}
171
172nh_proto_t
173path::nh_proto() const
174{
175 return m_nh_proto;
176}
177
178const boost::asio::ip::address&
179path::nh() const
180{
181 return m_nh;
182}
183
184std::shared_ptr<route_domain>
185path::rd() const
186{
187 return m_rd;
188}
189
190std::shared_ptr<interface>
191path::itf() const
192{
193 return m_interface;
194}
195
196uint8_t
197path::weight() const
198{
199 return m_weight;
200}
201
202uint8_t
203path::preference() const
204{
205 return m_preference;
206}
207
Neale Rannsfd920602017-11-23 12:15:00 -0800208ip_route::ip_route(const prefix_t& prefix, const path& p)
209 : m_hw(false)
210 , m_rd(route_domain::get_default())
211 , m_prefix(prefix)
212 , m_paths({ p })
213{
214}
215
Neale Ranns812ed392017-10-16 04:20:13 -0700216ip_route::ip_route(const prefix_t& prefix)
217 : m_hw(false)
218 , m_rd(route_domain::get_default())
219 , m_prefix(prefix)
220 , m_paths()
221{
222}
223
224ip_route::ip_route(const ip_route& r)
225 : m_hw(r.m_hw)
226 , m_rd(r.m_rd)
227 , m_prefix(r.m_prefix)
228 , m_paths(r.m_paths)
229{
230}
231
232ip_route::ip_route(const route_domain& rd, const prefix_t& prefix)
233 : m_hw(false)
234 , m_rd(rd.singular())
235 , m_prefix(prefix)
236 , m_paths()
237{
238}
239
Neale Rannsfd920602017-11-23 12:15:00 -0800240ip_route::ip_route(const route_domain& rd,
241 const prefix_t& prefix,
242 const path& p)
243 : m_hw(false)
244 , m_rd(rd.singular())
245 , m_prefix(prefix)
246 , m_paths({ p })
247{
248}
249
Neale Ranns812ed392017-10-16 04:20:13 -0700250ip_route::~ip_route()
251{
252 sweep();
253
254 // not in the DB anymore.
Neale Rannsfd920602017-11-23 12:15:00 -0800255 m_db.release(key(), this);
256 m_paths.clear();
257}
258
259const ip_route::key_t
260ip_route::key() const
261{
262 return (std::make_pair(m_rd->table_id(), m_prefix));
263}
264
265bool
266ip_route::operator==(const ip_route& i) const
267{
268 return ((key() == i.key()) && (m_paths == i.m_paths));
Neale Ranns812ed392017-10-16 04:20:13 -0700269}
270
271void
272ip_route::add(const path& path)
273{
274 m_paths.insert(path);
275}
276
277void
278ip_route::remove(const path& path)
279{
280 m_paths.erase(path);
281}
282
283void
284ip_route::sweep()
285{
286 if (m_hw) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700287 HW::enqueue(
288 new ip_route_cmds::delete_cmd(m_hw, m_rd->table_id(), m_prefix));
Neale Ranns812ed392017-10-16 04:20:13 -0700289 }
290 HW::write();
291}
292
293void
294ip_route::replay()
295{
296 if (m_hw) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700297 HW::enqueue(
298 new ip_route_cmds::update_cmd(m_hw, m_rd->table_id(), m_prefix, m_paths));
Neale Ranns812ed392017-10-16 04:20:13 -0700299 }
300}
301std::string
302ip_route::to_string() const
303{
304 std::ostringstream s;
305 s << "route:[" << m_rd->to_string() << ", " << m_prefix.to_string() << " ["
306 << m_paths << "]"
307 << "]";
308
309 return (s.str());
310}
311
312void
313ip_route::update(const ip_route& r)
314{
315 /*
316* create the table if it is not yet created
317*/
318 if (rc_t::OK != m_hw.rc()) {
Neale Ranns9ef1c0a2017-11-03 04:39:05 -0700319 HW::enqueue(
320 new ip_route_cmds::update_cmd(m_hw, m_rd->table_id(), m_prefix, m_paths));
Neale Ranns812ed392017-10-16 04:20:13 -0700321 }
322}
323
324std::shared_ptr<ip_route>
325ip_route::find_or_add(const ip_route& temp)
326{
Neale Rannsfd920602017-11-23 12:15:00 -0800327 return (m_db.find_or_add(temp.key(), temp));
328}
329
330std::shared_ptr<ip_route>
331ip_route::find(const key_t& k)
332{
333 return (m_db.find(k));
Neale Ranns812ed392017-10-16 04:20:13 -0700334}
335
336std::shared_ptr<ip_route>
337ip_route::singular() const
338{
339 return find_or_add(*this);
340}
341
342void
343ip_route::dump(std::ostream& os)
344{
345 m_db.dump(os);
346}
347
348ip_route::event_handler::event_handler()
349{
350 OM::register_listener(this);
351 inspect::register_handler({ "ip-route" }, "ip route configurations", this);
352}
353
354void
355ip_route::event_handler::handle_replay()
356{
357 m_db.replay();
358}
359
360void
361ip_route::event_handler::handle_populate(const client_db::key_t& key)
362{
Neale Ranns1d781552017-11-27 04:52:35 -0800363 std::shared_ptr<ip_route_cmds::dump_v4_cmd> cmd_v4 =
364 std::make_shared<ip_route_cmds::dump_v4_cmd>();
365 std::shared_ptr<ip_route_cmds::dump_v6_cmd> cmd_v6 =
366 std::make_shared<ip_route_cmds::dump_v6_cmd>();
Neale Ranns812ed392017-10-16 04:20:13 -0700367
368 HW::enqueue(cmd_v4);
369 HW::enqueue(cmd_v6);
370 HW::write();
371
372 for (auto& record : *cmd_v4) {
373 auto& payload = record.get_payload();
374
375 prefix_t pfx(0, payload.address, payload.address_length);
376
377 /**
Neale Rannsfd920602017-11-23 12:15:00 -0800378 * populating the route domain here
379 */
Neale Ranns812ed392017-10-16 04:20:13 -0700380 route_domain rd_temp(payload.table_id);
381 std::shared_ptr<route_domain> rd = route_domain::find(rd_temp);
382 if (!rd) {
383 OM::commit(key, rd_temp);
384 }
385 ip_route ip_r(rd_temp, pfx);
386
387 for (unsigned int i = 0; i < payload.count; i++) {
388 vapi_type_fib_path p = payload.path[i];
389 if (p.is_local) {
390 path path_v4(path::special_t::LOCAL);
391 ip_r.add(path_v4);
392 } else if (p.is_drop) {
393 path path_v4(path::special_t::DROP);
394 ip_r.add(path_v4);
395 } else if (p.is_unreach) {
396 path path_v4(path::special_t::UNREACH);
397 ip_r.add(path_v4);
398 } else if (p.is_prohibit) {
399 path path_v4(path::special_t::PROHIBIT);
400 ip_r.add(path_v4);
401 } else {
402 std::shared_ptr<interface> itf = interface::find(p.sw_if_index);
403 boost::asio::ip::address address = from_bytes(0, p.next_hop);
404 path path_v4(address, *itf, p.weight, p.preference);
405 ip_r.add(path_v4);
406 }
407 }
408 VOM_LOG(log_level_t::DEBUG) << "ip-route-dump: " << ip_r.to_string();
409
410 /*
Neale Rannsfd920602017-11-23 12:15:00 -0800411 * Write each of the discovered interfaces into the OM,
412 * but disable the HW Command q whilst we do, so that no
413 * commands are sent to VPP
414 */
Neale Ranns812ed392017-10-16 04:20:13 -0700415 OM::commit(key, ip_r);
416 }
417
418 for (auto& record : *cmd_v6) {
419 auto& payload = record.get_payload();
420
421 prefix_t pfx(1, payload.address, payload.address_length);
422 route_domain rd_temp(payload.table_id);
423 std::shared_ptr<route_domain> rd = route_domain::find(rd_temp);
424 if (!rd) {
425 OM::commit(key, rd_temp);
426 }
427 ip_route ip_r(rd_temp, pfx);
428
429 for (unsigned int i = 0; i < payload.count; i++) {
430 vapi_type_fib_path p = payload.path[i];
431 if (p.is_local) {
432 path path_v6(path::special_t::LOCAL);
433 ip_r.add(path_v6);
434 } else if (p.is_drop) {
435 path path_v6(path::special_t::DROP);
436 ip_r.add(path_v6);
437 } else if (p.is_unreach) {
438 path path_v6(path::special_t::UNREACH);
439 ip_r.add(path_v6);
440 } else if (p.is_prohibit) {
441 path path_v6(path::special_t::PROHIBIT);
442 ip_r.add(path_v6);
443 } else {
444 std::shared_ptr<interface> itf = interface::find(p.sw_if_index);
445 boost::asio::ip::address address = from_bytes(1, p.next_hop);
446 path path_v6(address, *itf, p.weight, p.preference);
447 ip_r.add(path_v6);
448 }
449 }
450 VOM_LOG(log_level_t::DEBUG) << "ip-route-dump: " << ip_r.to_string();
451
452 /*
Neale Rannsfd920602017-11-23 12:15:00 -0800453 * Write each of the discovered interfaces into the OM,
454 * but disable the HW Command q whilst we do, so that no
455 * commands are sent to VPP
456 */
Neale Ranns812ed392017-10-16 04:20:13 -0700457 OM::commit(key, ip_r);
458 }
459}
460
461dependency_t
462ip_route::event_handler::order() const
463{
464 return (dependency_t::BINDING);
465}
466
467void
468ip_route::event_handler::show(std::ostream& os)
469{
470 m_db.dump(os);
471}
472
473std::ostream&
474operator<<(std::ostream& os, const ip_route::key_t& key)
475{
476 os << "[" << key.first << ", " << key.second.to_string() << "]";
477
478 return (os);
479}
480
481std::ostream&
482operator<<(std::ostream& os, const path_list_t& key)
483{
484 os << "[";
485 for (auto k : key) {
486 os << k.to_string() << " ";
487 }
488 os << "]";
489
490 return (os);
491}
492}
493}
494/*
495 * fd.io coding-style-patch-verification: ON
496 *
497 * Local Variables:
498 * eval: (c-set-style "mozilla")
499 * End:
500 */