VOM: mroutes
[vpp.git] / extras / vom / vom / route.hpp
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 #ifndef __VOM_ROUTE_H__
17 #define __VOM_ROUTE_H__
18
19 #include "vom/interface.hpp"
20 #include "vom/prefix.hpp"
21 #include "vom/route_domain.hpp"
22 #include "vom/singular_db.hpp"
23
24 namespace VOM {
25 /**
26  * Types belonging to Routing
27  */
28 namespace route {
29 /**
30  * A path for IP or MPLS routes
31  */
32 class path
33 {
34 public:
35   /**
36    * Special path types
37    */
38   class special_t : public enum_base<special_t>
39   {
40   public:
41     /**
42      * A standard path type. this includes path types
43      * that use the next-hop and interface
44      */
45     const static special_t STANDARD;
46
47     /**
48      * A local/for-us/recieve
49      */
50     const static special_t LOCAL;
51
52     /**
53      * drop path
54      */
55     const static special_t DROP;
56
57     /**
58      * a path will return ICMP unreachables
59      */
60     const static special_t UNREACH;
61
62     /**
63      * a path will return ICMP prohibit
64      */
65     const static special_t PROHIBIT;
66
67   private:
68     /**
69      * Private constructor taking the value and the string name
70      */
71     special_t(int v, const std::string& s);
72   };
73
74   /**
75    * Path flags
76    */
77   class flags_t : public enum_base<flags_t>
78   {
79   public:
80     /**
81      * No flags
82      */
83     const static flags_t NONE;
84
85     /**
86      * A path that resolves via a DVR next-hop
87      */
88     const static flags_t DVR;
89
90   private:
91     /**
92      * Private constructor taking the value and the string name
93      */
94     flags_t(int v, const std::string& s);
95   };
96
97   /**
98    * constructor for special paths
99    */
100   path(special_t special);
101
102   /**
103    * Constructor for standard non-recursive paths
104    */
105   path(const boost::asio::ip::address& nh,
106        const interface& interface,
107        uint8_t weight = 1,
108        uint8_t preference = 0);
109
110   /**
111    * Constructor for standard recursive paths
112    */
113   path(const route_domain& rd,
114        const boost::asio::ip::address& nh,
115        uint8_t weight = 1,
116        uint8_t preference = 0);
117
118   /**
119    * Constructor for DVR paths or attached paths.
120    */
121   path(const interface& interface,
122        const nh_proto_t& proto,
123        const flags_t& flags = flags_t::NONE,
124        uint8_t weight = 1,
125        uint8_t preference = 0);
126
127   /**
128    * Copy Constructor
129    */
130   path(const path& p);
131
132   /**
133    * Destructor
134    */
135   ~path();
136
137   /**
138    * comparison operator
139    */
140   bool operator==(const path& p) const;
141
142   /**
143    * Less than operator for set insertion
144    */
145   bool operator<(const path& p) const;
146
147   /**
148    * convert to string format for debug purposes
149    */
150   std::string to_string() const;
151
152   /**
153    * Getters
154    */
155   special_t type() const;
156   nh_proto_t nh_proto() const;
157   flags_t flags() const;
158   const boost::asio::ip::address& nh() const;
159   std::shared_ptr<route_domain> rd() const;
160   std::shared_ptr<interface> itf() const;
161   uint8_t weight() const;
162   uint8_t preference() const;
163
164 private:
165   /**
166    * The special path tpye
167    */
168   special_t m_type;
169
170   /**
171    * The next-hop protocol
172    */
173   nh_proto_t m_nh_proto;
174
175   /**
176    * Flags for the path
177    */
178   flags_t m_flags;
179
180   /**
181    * The next-hop
182    */
183   boost::asio::ip::address m_nh;
184
185   /**
186    * For recursive routes, this is the table in which the
187    * the next-hop exists.
188    */
189   std::shared_ptr<route_domain> m_rd;
190
191   /**
192    * The next-hop interface [if present].
193    */
194   std::shared_ptr<interface> m_interface;
195
196   /**
197    * UCMP weight
198    */
199   uint8_t m_weight;
200
201   /**
202    * Path preference
203    */
204   uint8_t m_preference;
205 };
206
207 class itf_flags_t : public enum_base<itf_flags_t>
208 {
209 public:
210   const static itf_flags_t NONE;
211   /**
212    * Path is accepting multicast traffic
213    */
214   const static itf_flags_t ACCEPT;
215
216   /**
217    * A local/for-us/recieve
218    */
219   const static itf_flags_t FORWARD;
220
221   static const itf_flags_t& from_vpp(uint32_t val);
222
223 private:
224   /**
225    * Private constructor taking the value and the string name
226    */
227   itf_flags_t(int v, const std::string& s);
228 };
229
230 /**
231  * A path-list is a set of paths
232  */
233 typedef std::set<path> path_list_t;
234
235 /**
236  * A mpath-list is a set of paths and interface flags
237  */
238 typedef std::set<std::pair<path, itf_flags_t>> mpath_list_t;
239
240 /**
241  * ostream output for iterator
242  */
243 std::ostream& operator<<(std::ostream& os, const path_list_t& path_list);
244 std::ostream& operator<<(std::ostream& os, const mpath_list_t& path_list);
245
246 /**
247  * A IP route
248  */
249 class ip_route : public object_base
250 {
251 public:
252   /**
253    * The key for a route
254    */
255   typedef std::pair<route::table_id_t, prefix_t> key_t;
256
257   /**
258    * Construct a route in the default table
259    */
260   ip_route(const prefix_t& prefix);
261
262   /**
263    * Construct a route with a path
264    */
265   ip_route(const prefix_t& prefix, const path& p);
266
267   /**
268    * Copy Construct
269    */
270   ip_route(const ip_route& r);
271
272   /**
273    * Construct a route in the given route domain
274    */
275   ip_route(const route_domain& rd, const prefix_t& prefix);
276
277   /**
278    * Construct a route in the given route domain with a path
279    */
280   ip_route(const route_domain& rd, const prefix_t& prefix, const path& p);
281
282   /**
283    * Destructor
284    */
285   ~ip_route();
286
287   /**
288    * Get the route's key
289    */
290   const key_t key() const;
291
292   /**
293    * Comparison operator
294    */
295   bool operator==(const ip_route& i) const;
296
297   /**
298    * Return the matching 'singular instance'
299    */
300   std::shared_ptr<ip_route> singular() const;
301
302   /**
303    * Add a path.
304    */
305   void add(const path& path);
306
307   /**
308    * remove a path.
309    */
310   void remove(const path& path);
311
312   /**
313    * Find the instnace of the route domain in the OM
314    */
315   static std::shared_ptr<ip_route> find(const ip_route& temp);
316
317   /**
318    * Dump all route-doamin into the stream provided
319    */
320   static void dump(std::ostream& os);
321
322   /**
323    * replay the object to create it in hardware
324    */
325   void replay(void);
326
327   /**
328    * Convert to string for debugging
329    */
330   std::string to_string() const;
331
332   /**
333    * Return the matching 'singular instance'
334    */
335   static std::shared_ptr<ip_route> find(const key_t& k);
336
337 private:
338   /**
339    * Class definition for listeners to OM events
340    */
341   class event_handler : public OM::listener, public inspect::command_handler
342   {
343   public:
344     event_handler();
345     virtual ~event_handler() = default;
346
347     /**
348      * Handle a populate event
349      */
350     void handle_populate(const client_db::key_t& key);
351
352     /**
353      * Handle a replay event
354      */
355     void handle_replay();
356
357     /**
358      * Show the object in the Singular DB
359      */
360     void show(std::ostream& os);
361
362     /**
363      * Get the sortable Id of the listener
364      */
365     dependency_t order() const;
366   };
367
368   /**
369    * event_handler to register with OM
370    */
371   static event_handler m_evh;
372
373   /**
374    * Find or add the instnace of the route domain in the OM
375    */
376   static std::shared_ptr<ip_route> find_or_add(const ip_route& temp);
377
378   /*
379    * It's the OM class that updates the objects in HW
380    */
381   friend class VOM::OM;
382
383   /**
384    * It's the singular_db class that calls replay()
385    */
386   friend class singular_db<key_t, ip_route>;
387
388   /**
389    * Commit the acculmulated changes into VPP. i.e. to a 'HW" write.
390    */
391   void update(const ip_route& obj);
392
393   /**
394    * Sweep/reap the object if still stale
395    */
396   void sweep(void);
397
398   /**
399    * HW configuration for the result of creating the route
400    */
401   HW::item<bool> m_hw;
402
403   /**
404    * The route domain the route is in.
405    */
406   std::shared_ptr<route_domain> m_rd;
407
408   /**
409    * The prefix to match
410    */
411   prefix_t m_prefix;
412
413   /**
414    * The set of paths
415    */
416   path_list_t m_paths;
417
418   /**
419    * A map of all routes
420    */
421   static singular_db<key_t, ip_route> m_db;
422 };
423
424 /**
425  * A IP multicast route
426  */
427 class ip_mroute : public object_base
428 {
429 public:
430   /**
431    * The key for a route
432    */
433   typedef std::pair<route::table_id_t, mprefix_t> key_t;
434
435   /**
436    * Construct a route in the default table
437    */
438   ip_mroute(const mprefix_t& mprefix);
439
440   /**
441    * Copy Construct
442    */
443   ip_mroute(const ip_mroute& r);
444
445   /**
446    * Construct a route in the given route domain
447    */
448   ip_mroute(const route_domain& rd, const mprefix_t& mprefix);
449
450   /**
451    * Destructor
452    */
453   ~ip_mroute();
454
455   /**
456    * Get the route's key
457    */
458   const key_t key() const;
459
460   /**
461    * Comparison operator
462    */
463   bool operator==(const ip_mroute& i) const;
464
465   /**
466    * Return the matching 'singular instance'
467    */
468   std::shared_ptr<ip_mroute> singular() const;
469
470   /**
471    * Find the instnace of the route domain in the OM
472    */
473   static std::shared_ptr<ip_mroute> find(const ip_mroute& temp);
474
475   /**
476    * Dump all route-doamin into the stream provided
477    */
478   static void dump(std::ostream& os);
479
480   /**
481    * replay the object to create it in hardware
482    */
483   void replay(void);
484
485   /**
486    * Convert to string for debugging
487    */
488   std::string to_string() const;
489
490   /**
491    * Return the matching 'singular instance'
492    */
493   static std::shared_ptr<ip_mroute> find(const key_t& k);
494
495   void add(const path& path, const itf_flags_t& flag);
496
497 private:
498   /**
499    * Class definition for listeners to OM events
500    */
501   class event_handler : public OM::listener, public inspect::command_handler
502   {
503   public:
504     event_handler();
505     virtual ~event_handler() = default;
506
507     /**
508      * Handle a populate event
509      */
510     void handle_populate(const client_db::key_t& key);
511
512     /**
513      * Handle a replay event
514      */
515     void handle_replay();
516
517     /**
518      * Show the object in the Singular DB
519      */
520     void show(std::ostream& os);
521
522     /**
523      * Get the sortable Id of the listener
524      */
525     dependency_t order() const;
526   };
527
528   /**
529    * event_handler to register with OM
530    */
531   static event_handler m_evh;
532
533   /**
534    * Find or add the instnace of the route domain in the OM
535    */
536   static std::shared_ptr<ip_mroute> find_or_add(const ip_mroute& temp);
537
538   /*
539    * It's the OM class that updates the objects in HW
540    */
541   friend class VOM::OM;
542
543   /**
544    * It's the singular_db class that calls replay()
545    */
546   friend class singular_db<key_t, ip_mroute>;
547
548   /**
549    * Commit the acculmulated changes into VPP. i.e. to a 'HW" write.
550    */
551   void update(const ip_mroute& obj);
552
553   /**
554    * Sweep/reap the object if still stale
555    */
556   void sweep(void);
557
558   /**
559    * HW configuration for the result of creating the route
560    */
561   HW::item<bool> m_hw;
562
563   /**
564    * The route domain the route is in.
565    */
566   std::shared_ptr<route_domain> m_rd;
567
568   /**
569    * The mprefix to match
570    */
571   mprefix_t m_mprefix;
572
573   /**
574    * The set of paths
575    */
576   mpath_list_t m_paths;
577
578   /**
579    * A map of all routes
580    */
581   static singular_db<key_t, ip_mroute> m_db;
582 };
583
584 std::ostream& operator<<(std::ostream& os, const ip_route::key_t& key);
585 std::ostream& operator<<(std::ostream& os, const ip_mroute::key_t& key);
586 }; // namespace route
587 }; // namesapce VPP
588
589 /*
590  * fd.io coding-style-patch-verification: ON
591  *
592  * Local Variables:
593  * eval: (c-set-style "mozilla")
594  * End:
595  */
596
597 #endif