]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_mpls.h
Merge pull request #805 from Orange-OpenSource/master
[mirror_frr.git] / zebra / zebra_mpls.h
1 /*
2 * Zebra MPLS Data structures and definitions
3 * Copyright (C) 2015 Cumulus Networks, Inc.
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #ifndef _ZEBRA_MPLS_H
23 #define _ZEBRA_MPLS_H
24
25 #include "prefix.h"
26 #include "table.h"
27 #include "queue.h"
28 #include "hash.h"
29 #include "jhash.h"
30 #include "nexthop.h"
31 #include "vty.h"
32 #include "memory.h"
33 #include "mpls.h"
34 #include "zebra/zserv.h"
35 #include "zebra/zebra_vrf.h"
36
37
38 /* Definitions and macros. */
39
40 #define MPLS_MAX_LABELS 2 /* Maximum # labels that can be pushed. */
41
42 #define NHLFE_FAMILY(nhlfe) \
43 (((nhlfe)->nexthop->type == NEXTHOP_TYPE_IPV6 \
44 || (nhlfe)->nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) \
45 ? AF_INET6 \
46 : AF_INET)
47
48 #define MPLS_LABEL_HELPSTR \
49 "Specify label(s) for this route\nOne or more " \
50 "labels in the range (16-1048575) separated by '/'\n"
51
52 /* Typedefs */
53
54 typedef struct zebra_ile_t_ zebra_ile_t;
55 typedef struct zebra_snhlfe_t_ zebra_snhlfe_t;
56 typedef struct zebra_slsp_t_ zebra_slsp_t;
57 typedef struct zebra_nhlfe_t_ zebra_nhlfe_t;
58 typedef struct zebra_lsp_t_ zebra_lsp_t;
59 typedef struct zebra_fec_t_ zebra_fec_t;
60
61 /*
62 * (Outgoing) nexthop label forwarding entry configuration
63 */
64 struct zebra_snhlfe_t_ {
65 /* Nexthop information */
66 enum nexthop_types_t gtype;
67 union g_addr gate;
68 char *ifname;
69 ifindex_t ifindex;
70
71 /* Out label. */
72 mpls_label_t out_label;
73
74 /* Backpointer to base entry. */
75 zebra_slsp_t *slsp;
76
77 /* Pointers to more outgoing information for same in-label */
78 zebra_snhlfe_t *next;
79 zebra_snhlfe_t *prev;
80 };
81
82 /*
83 * (Outgoing) nexthop label forwarding entry
84 */
85 struct zebra_nhlfe_t_ {
86 /* Type of entry - static etc. */
87 enum lsp_types_t type;
88
89 /* Nexthop information (with outgoing label) */
90 struct nexthop *nexthop;
91
92 /* Backpointer to base entry. */
93 zebra_lsp_t *lsp;
94
95 /* Runtime info - flags, pointers etc. */
96 u_int32_t flags;
97 #define NHLFE_FLAG_CHANGED (1 << 0)
98 #define NHLFE_FLAG_SELECTED (1 << 1)
99 #define NHLFE_FLAG_MULTIPATH (1 << 2)
100 #define NHLFE_FLAG_DELETED (1 << 3)
101 #define NHLFE_FLAG_INSTALLED (1 << 4)
102
103 zebra_nhlfe_t *next;
104 zebra_nhlfe_t *prev;
105 u_char distance;
106 };
107
108 /*
109 * Incoming label entry
110 */
111 struct zebra_ile_t_ {
112 mpls_label_t in_label;
113 };
114
115 /*
116 * Label swap entry static configuration.
117 */
118 struct zebra_slsp_t_ {
119 /* Incoming label */
120 zebra_ile_t ile;
121
122 /* List of outgoing nexthop static configuration */
123 zebra_snhlfe_t *snhlfe_list;
124 };
125
126 /*
127 * Label swap entry (ile -> list of nhlfes)
128 */
129 struct zebra_lsp_t_ {
130 /* Incoming label */
131 zebra_ile_t ile;
132
133 /* List of NHLFE, pointer to best and num equal-cost. */
134 zebra_nhlfe_t *nhlfe_list;
135 zebra_nhlfe_t *best_nhlfe;
136 u_int32_t num_ecmp;
137
138 /* Flags */
139 u_int32_t flags;
140 #define LSP_FLAG_SCHEDULED (1 << 0)
141 #define LSP_FLAG_INSTALLED (1 << 1)
142 #define LSP_FLAG_CHANGED (1 << 2)
143
144 /* Address-family of NHLFE - saved here for delete. All NHLFEs */
145 /* have to be of the same AF */
146 u_char addr_family;
147 };
148
149 /*
150 * FEC to label binding.
151 */
152 struct zebra_fec_t_ {
153 /* FEC (prefix) */
154 struct route_node *rn;
155
156 /* In-label - either statically bound or derived from label block. */
157 mpls_label_t label;
158
159 /* Label index (into global label block), if valid */
160 u_int32_t label_index;
161
162 /* Flags. */
163 u_int32_t flags;
164 #define FEC_FLAG_CONFIGURED (1 << 0)
165
166 /* Clients interested in this FEC. */
167 struct list *client_list;
168 };
169
170 /* Function declarations. */
171
172 /*
173 * String to label conversion, labels separated by '/'.
174 */
175 int mpls_str2label(const char *label_str, u_int8_t *num_labels,
176 mpls_label_t *labels);
177
178 /*
179 * Label to string conversion, labels in string separated by '/'.
180 */
181 char *mpls_label2str(u_int8_t num_labels, mpls_label_t *labels, char *buf,
182 int len, int pretty);
183
184 /*
185 * Add/update global label block.
186 */
187 int zebra_mpls_label_block_add(struct zebra_vrf *zvrf, u_int32_t start_label,
188 u_int32_t end_label);
189
190 /*
191 * Delete global label block.
192 */
193 int zebra_mpls_label_block_del(struct zebra_vrf *vrf);
194
195 /*
196 * Display MPLS global label block configuration (VTY command handler).
197 */
198 int zebra_mpls_write_label_block_config(struct vty *vty, struct zebra_vrf *vrf);
199
200 /*
201 * Install dynamic LSP entry.
202 */
203 int zebra_mpls_lsp_install(struct zebra_vrf *zvrf, struct route_node *rn,
204 struct route_entry *re);
205
206 /*
207 * Uninstall dynamic LSP entry, if any.
208 */
209 int zebra_mpls_lsp_uninstall(struct zebra_vrf *zvrf, struct route_node *rn,
210 struct route_entry *re);
211
212 /*
213 * Registration from a client for the label binding for a FEC. If a binding
214 * already exists, it is informed to the client.
215 * NOTE: If there is a manually configured label binding, that is used.
216 * Otherwise, if aa label index is specified, it means we have to allocate the
217 * label from a locally configured label block (SRGB), if one exists and index
218 * is acceptable.
219 */
220 int zebra_mpls_fec_register(struct zebra_vrf *zvrf, struct prefix *p,
221 u_int32_t label_index, struct zserv *client);
222
223 /*
224 * Deregistration from a client for the label binding for a FEC. The FEC
225 * itself is deleted if no other registered clients exist and there is no
226 * label bound to the FEC.
227 */
228 int zebra_mpls_fec_unregister(struct zebra_vrf *zvrf, struct prefix *p,
229 struct zserv *client);
230
231 /*
232 * Cleanup any FECs registered by this client.
233 */
234 int zebra_mpls_cleanup_fecs_for_client(struct zebra_vrf *zvrf,
235 struct zserv *client);
236
237 /*
238 * Return FEC (if any) to which this label is bound.
239 * Note: Only works for per-prefix binding and when the label is not
240 * implicit-null.
241 * TODO: Currently walks entire table, can optimize later with another
242 * hash..
243 */
244 zebra_fec_t *zebra_mpls_fec_for_label(struct zebra_vrf *zvrf,
245 mpls_label_t label);
246
247 /*
248 * Inform if specified label is currently bound to a FEC or not.
249 */
250 int zebra_mpls_label_already_bound(struct zebra_vrf *zvrf, mpls_label_t label);
251
252 /*
253 * Add static FEC to label binding. If there are clients registered for this
254 * FEC, notify them. If there are labeled routes for this FEC, install the
255 * label forwarding entry.
256 */
257 int zebra_mpls_static_fec_add(struct zebra_vrf *zvrf, struct prefix *p,
258 mpls_label_t in_label);
259
260 /*
261 * Remove static FEC to label binding. If there are no clients registered
262 * for this FEC, delete the FEC; else notify clients.
263 * Note: Upon delete of static binding, if label index exists for this FEC,
264 * client may need to be updated with derived label.
265 */
266 int zebra_mpls_static_fec_del(struct zebra_vrf *zvrf, struct prefix *p);
267
268 /*
269 * Display MPLS FEC to label binding configuration (VTY command handler).
270 */
271 int zebra_mpls_write_fec_config(struct vty *vty, struct zebra_vrf *zvrf);
272
273 /*
274 * Display MPLS FEC to label binding (VTY command handler).
275 */
276 void zebra_mpls_print_fec_table(struct vty *vty, struct zebra_vrf *zvrf);
277
278 /*
279 * Display MPLS FEC to label binding for a specific FEC (VTY command handler).
280 */
281 void zebra_mpls_print_fec(struct vty *vty, struct zebra_vrf *zvrf,
282 struct prefix *p);
283
284 /*
285 * Install/uninstall a FEC-To-NHLFE (FTN) binding.
286 */
287 int mpls_ftn_update(int add, struct zebra_vrf *zvrf, enum lsp_types_t type,
288 struct prefix *prefix, enum nexthop_types_t gtype,
289 union g_addr *gate, ifindex_t ifindex, u_int8_t distance,
290 mpls_label_t out_label);
291
292 /*
293 * Install/update a NHLFE for an LSP in the forwarding table. This may be
294 * a new LSP entry or a new NHLFE for an existing in-label or an update of
295 * the out-label for an existing NHLFE (update case).
296 */
297 int mpls_lsp_install(struct zebra_vrf *zvrf, enum lsp_types_t type,
298 mpls_label_t in_label, mpls_label_t out_label,
299 enum nexthop_types_t gtype, union g_addr *gate,
300 ifindex_t ifindex);
301
302 /*
303 * Uninstall a particular NHLFE in the forwarding table. If this is
304 * the only NHLFE, the entire LSP forwarding entry has to be deleted.
305 */
306 int mpls_lsp_uninstall(struct zebra_vrf *zvrf, enum lsp_types_t type,
307 mpls_label_t in_label, enum nexthop_types_t gtype,
308 union g_addr *gate, ifindex_t ifindex);
309
310 /*
311 * Uninstall all LDP NHLFEs for a particular LSP forwarding entry.
312 * If no other NHLFEs exist, the entry would be deleted.
313 */
314 void mpls_ldp_lsp_uninstall_all(struct hash_backet *backet, void *ctxt);
315
316 /*
317 * Uninstall all LDP FEC-To-NHLFE (FTN) bindings of the given address-family.
318 */
319 void mpls_ldp_ftn_uninstall_all(struct zebra_vrf *zvrf, int afi);
320
321 #if defined(HAVE_CUMULUS)
322 /*
323 * Check that the label values used in LSP creation are consistent. The
324 * main criteria is that if there is ECMP, the label operation must still
325 * be consistent - i.e., all paths either do a swap or do PHP. This is due
326 * to current HW restrictions.
327 */
328 int zebra_mpls_lsp_label_consistent(struct zebra_vrf *zvrf,
329 mpls_label_t in_label,
330 mpls_label_t out_label,
331 enum nexthop_types_t gtype,
332 union g_addr *gate, ifindex_t ifindex);
333 #endif /* HAVE_CUMULUS */
334
335 /*
336 * Add static LSP entry. This may be the first entry for this incoming label
337 * or an additional nexthop; an existing entry may also have outgoing label
338 * changed.
339 * Note: The label operation (swap or PHP) is common for the LSP entry (all
340 * NHLFEs).
341 */
342 int zebra_mpls_static_lsp_add(struct zebra_vrf *zvrf, mpls_label_t in_label,
343 mpls_label_t out_label,
344 enum nexthop_types_t gtype, union g_addr *gate,
345 ifindex_t ifindex);
346
347 /*
348 * Delete static LSP entry. This may be the delete of one particular
349 * NHLFE for this incoming label or the delete of the entire entry (i.e.,
350 * all NHLFEs).
351 * NOTE: Delete of the only NHLFE will also end up deleting the entire
352 * LSP configuration.
353 */
354 int zebra_mpls_static_lsp_del(struct zebra_vrf *zvrf, mpls_label_t in_label,
355 enum nexthop_types_t gtype, union g_addr *gate,
356 ifindex_t ifindex);
357
358 /*
359 * Schedule all MPLS label forwarding entries for processing.
360 * Called upon changes that may affect one or more of them such as
361 * interface or nexthop state changes.
362 */
363 void zebra_mpls_lsp_schedule(struct zebra_vrf *zvrf);
364
365 /*
366 * Display MPLS label forwarding table for a specific LSP
367 * (VTY command handler).
368 */
369 void zebra_mpls_print_lsp(struct vty *vty, struct zebra_vrf *zvrf,
370 mpls_label_t label, u_char use_json);
371
372 /*
373 * Display MPLS label forwarding table (VTY command handler).
374 */
375 void zebra_mpls_print_lsp_table(struct vty *vty, struct zebra_vrf *zvrf,
376 u_char use_json);
377
378 /*
379 * Display MPLS LSP configuration of all static LSPs (VTY command handler).
380 */
381 int zebra_mpls_write_lsp_config(struct vty *vty, struct zebra_vrf *zvrf);
382
383 /*
384 * Called upon process exiting, need to delete LSP forwarding
385 * entries from the kernel.
386 * NOTE: Currently supported only for default VRF.
387 */
388 void zebra_mpls_close_tables(struct zebra_vrf *zvrf);
389
390 /*
391 * Allocate MPLS tables for this VRF.
392 * NOTE: Currently supported only for default VRF.
393 */
394 void zebra_mpls_init_tables(struct zebra_vrf *zvrf);
395
396 /*
397 * Global MPLS initialization.
398 */
399 void zebra_mpls_init(void);
400
401 /*
402 * MPLS VTY.
403 */
404 void zebra_mpls_vty_init(void);
405
406 /* Inline functions. */
407
408 /*
409 * Distance (priority) definition for LSP NHLFE.
410 */
411 static inline u_char lsp_distance(enum lsp_types_t type)
412 {
413 if (type == ZEBRA_LSP_STATIC)
414 return (route_distance(ZEBRA_ROUTE_STATIC));
415
416 return 150;
417 }
418
419 /*
420 * Map RIB type to LSP type. Used when labeled-routes from BGP
421 * are converted into LSPs.
422 */
423 static inline enum lsp_types_t lsp_type_from_re_type(int re_type)
424 {
425 switch (re_type) {
426 case ZEBRA_ROUTE_STATIC:
427 return ZEBRA_LSP_STATIC;
428 case ZEBRA_ROUTE_BGP:
429 return ZEBRA_LSP_BGP;
430 default:
431 return ZEBRA_LSP_NONE;
432 }
433 }
434
435 /* NHLFE type as printable string. */
436 static inline const char *nhlfe_type2str(enum lsp_types_t lsp_type)
437 {
438 switch (lsp_type) {
439 case ZEBRA_LSP_STATIC:
440 return "Static";
441 case ZEBRA_LSP_LDP:
442 return "LDP";
443 case ZEBRA_LSP_BGP:
444 return "BGP";
445 default:
446 return "Unknown";
447 }
448 }
449
450 static inline void mpls_mark_lsps_for_processing(struct zebra_vrf *zvrf)
451 {
452 if (!zvrf)
453 return;
454
455 zvrf->mpls_flags |= MPLS_FLAG_SCHEDULE_LSPS;
456 }
457
458 static inline void mpls_unmark_lsps_for_processing(struct zebra_vrf *zvrf)
459 {
460 if (!zvrf)
461 return;
462
463 zvrf->mpls_flags &= ~MPLS_FLAG_SCHEDULE_LSPS;
464 }
465
466 static inline int mpls_should_lsps_be_processed(struct zebra_vrf *zvrf)
467 {
468 if (!zvrf)
469 return 0;
470
471 return ((zvrf->mpls_flags & MPLS_FLAG_SCHEDULE_LSPS) ? 1 : 0);
472 }
473
474 /* Global variables. */
475 extern int mpls_enabled;
476
477 #endif /*_ZEBRA_MPLS_H */