]> git.proxmox.com Git - mirror_frr.git/blob - lib/nexthop.h
lib: add new nexthop's attributes seg6 (step3)
[mirror_frr.git] / lib / nexthop.h
1 /*
2 * Nexthop structure definition.
3 * Copyright (C) 1997, 98, 99, 2001 Kunihiro Ishiguro
4 * Copyright (C) 2013 Cumulus Networks, Inc.
5 *
6 * This file is part of Quagga.
7 *
8 * Quagga is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * Quagga is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #ifndef _LIB_NEXTHOP_H
24 #define _LIB_NEXTHOP_H
25
26 #include "prefix.h"
27 #include "mpls.h"
28 #include "vxlan.h"
29 #include "srv6.h"
30
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34
35 /* Maximum next hop string length - gateway + ifindex */
36 #define NEXTHOP_STRLEN (INET6_ADDRSTRLEN + 30)
37
38 union g_addr {
39 struct in_addr ipv4;
40 struct in6_addr ipv6;
41 };
42
43 enum nexthop_types_t {
44 NEXTHOP_TYPE_IFINDEX = 1, /* Directly connected. */
45 NEXTHOP_TYPE_IPV4, /* IPv4 nexthop. */
46 NEXTHOP_TYPE_IPV4_IFINDEX, /* IPv4 nexthop with ifindex. */
47 NEXTHOP_TYPE_IPV6, /* IPv6 nexthop. */
48 NEXTHOP_TYPE_IPV6_IFINDEX, /* IPv6 nexthop with ifindex. */
49 NEXTHOP_TYPE_BLACKHOLE, /* Null0 nexthop. */
50 };
51
52 enum blackhole_type {
53 BLACKHOLE_UNSPEC = 0,
54 BLACKHOLE_NULL,
55 BLACKHOLE_REJECT,
56 BLACKHOLE_ADMINPROHIB,
57 };
58
59 enum nh_encap_type {
60 NET_VXLAN = 100, /* value copied from FPM_NH_ENCAP_VXLAN. */
61 };
62
63 /* Fixed limit on the number of backup nexthops per primary nexthop */
64 #define NEXTHOP_MAX_BACKUPS 8
65
66 /* Backup index value is limited */
67 #define NEXTHOP_BACKUP_IDX_MAX 255
68
69 /* Nexthop structure. */
70 struct nexthop {
71 struct nexthop *next;
72 struct nexthop *prev;
73
74 /*
75 * What vrf is this nexthop associated with?
76 */
77 vrf_id_t vrf_id;
78
79 /* Interface index. */
80 ifindex_t ifindex;
81
82 enum nexthop_types_t type;
83
84 uint8_t flags;
85 #define NEXTHOP_FLAG_ACTIVE (1 << 0) /* This nexthop is alive. */
86 #define NEXTHOP_FLAG_FIB (1 << 1) /* FIB nexthop. */
87 #define NEXTHOP_FLAG_RECURSIVE (1 << 2) /* Recursive nexthop. */
88 #define NEXTHOP_FLAG_ONLINK (1 << 3) /* Nexthop should be installed
89 * onlink.
90 */
91 #define NEXTHOP_FLAG_DUPLICATE (1 << 4) /* nexthop duplicates another
92 * active one
93 */
94 #define NEXTHOP_FLAG_RNH_FILTERED (1 << 5) /* rmap filtered, used by rnh */
95 #define NEXTHOP_FLAG_HAS_BACKUP (1 << 6) /* Backup nexthop index is set */
96 #define NEXTHOP_FLAG_SRTE (1 << 7) /* SR-TE color used for BGP traffic */
97
98 #define NEXTHOP_IS_ACTIVE(flags) \
99 (CHECK_FLAG(flags, NEXTHOP_FLAG_ACTIVE) \
100 && !CHECK_FLAG(flags, NEXTHOP_FLAG_DUPLICATE))
101
102 /* Nexthop address */
103 union {
104 union g_addr gate;
105 enum blackhole_type bh_type;
106 };
107 union g_addr src;
108 union g_addr rmap_src; /* Src is set via routemap */
109
110 /* Nexthops obtained by recursive resolution.
111 *
112 * If the nexthop struct needs to be resolved recursively,
113 * NEXTHOP_FLAG_RECURSIVE will be set in flags and the nexthops
114 * obtained by recursive resolution will be added to `resolved'.
115 */
116 struct nexthop *resolved;
117 /* Recursive parent */
118 struct nexthop *rparent;
119
120 /* Type of label(s), if any */
121 enum lsp_types_t nh_label_type;
122
123 /* Label(s) associated with this nexthop. */
124 struct mpls_label_stack *nh_label;
125
126 /* Weight of the nexthop ( for unequal cost ECMP ) */
127 uint8_t weight;
128
129 /* Count and index of corresponding backup nexthop(s) in a backup list;
130 * only meaningful if the HAS_BACKUP flag is set.
131 */
132 uint8_t backup_num;
133 uint8_t backup_idx[NEXTHOP_MAX_BACKUPS];
134
135 /* Encapsulation information. */
136 enum nh_encap_type nh_encap_type;
137 union {
138 vni_t vni;
139 } nh_encap;
140
141 /* SR-TE color used for matching SR-TE policies */
142 uint32_t srte_color;
143
144 /* SRv6 localsid info for Endpoint-behaviour */
145 enum seg6local_action_t nh_seg6local_action;
146 struct seg6local_context *nh_seg6local_ctx;
147
148 /* SRv6 Headend-behaviour */
149 struct in6_addr *nh_seg6_segs;
150 };
151
152 /* Utility to append one nexthop to another. */
153 #define NEXTHOP_APPEND(to, new) \
154 do { \
155 (to)->next = (new); \
156 (new)->prev = (to); \
157 (new)->next = NULL; \
158 } while (0)
159
160 struct nexthop *nexthop_new(void);
161
162 void nexthop_free(struct nexthop *nexthop);
163 void nexthops_free(struct nexthop *nexthop);
164
165 void nexthop_add_labels(struct nexthop *nexthop, enum lsp_types_t ltype,
166 uint8_t num_labels, const mpls_label_t *labels);
167 void nexthop_del_labels(struct nexthop *);
168 void nexthop_add_seg6local(struct nexthop *nexthop, uint32_t action,
169 const struct seg6local_context *ctx);
170 void nexthop_del_seg6local(struct nexthop *nexthop);
171 void nexthop_add_seg6(struct nexthop *nexthop, const struct in6_addr* segs);
172 void nexthop_del_seg6(struct nexthop *nexthop);
173
174 /*
175 * Allocate a new nexthop object and initialize it from various args.
176 */
177 struct nexthop *nexthop_from_ifindex(ifindex_t ifindex, vrf_id_t vrf_id);
178 struct nexthop *nexthop_from_ipv4(const struct in_addr *ipv4,
179 const struct in_addr *src,
180 vrf_id_t vrf_id);
181 struct nexthop *nexthop_from_ipv4_ifindex(const struct in_addr *ipv4,
182 const struct in_addr *src,
183 ifindex_t ifindex, vrf_id_t vrf_id);
184 struct nexthop *nexthop_from_ipv6(const struct in6_addr *ipv6,
185 vrf_id_t vrf_id);
186 struct nexthop *nexthop_from_ipv6_ifindex(const struct in6_addr *ipv6,
187 ifindex_t ifindex, vrf_id_t vrf_id);
188 struct nexthop *nexthop_from_blackhole(enum blackhole_type bh_type);
189
190 /*
191 * Hash a nexthop. Suitable for use with hash tables.
192 *
193 * This function uses the following values when computing the hash:
194 * - vrf_id
195 * - ifindex
196 * - type
197 * - gate
198 *
199 * nexthop
200 * The nexthop to hash
201 *
202 * Returns:
203 * 32-bit hash of nexthop
204 */
205 uint32_t nexthop_hash(const struct nexthop *nexthop);
206 /*
207 * Hash a nexthop only on word-sized attributes:
208 * - vrf_id
209 * - ifindex
210 * - type
211 * - (some) flags
212 */
213 uint32_t nexthop_hash_quick(const struct nexthop *nexthop);
214
215 extern bool nexthop_same(const struct nexthop *nh1, const struct nexthop *nh2);
216 extern bool nexthop_same_no_labels(const struct nexthop *nh1,
217 const struct nexthop *nh2);
218 extern int nexthop_cmp(const struct nexthop *nh1, const struct nexthop *nh2);
219 extern int nexthop_g_addr_cmp(enum nexthop_types_t type,
220 const union g_addr *addr1,
221 const union g_addr *addr2);
222
223 /* More-limited comparison function used to detect duplicate nexthops.
224 * Returns -1, 0, 1
225 */
226 int nexthop_cmp_basic(const struct nexthop *nh1, const struct nexthop *nh2);
227
228 extern const char *nexthop_type_to_str(enum nexthop_types_t nh_type);
229 extern bool nexthop_labels_match(const struct nexthop *nh1,
230 const struct nexthop *nh2);
231
232 extern const char *nexthop2str(const struct nexthop *nexthop,
233 char *str, int size);
234 extern struct nexthop *nexthop_next(const struct nexthop *nexthop);
235 extern struct nexthop *
236 nexthop_next_active_resolved(const struct nexthop *nexthop);
237 extern unsigned int nexthop_level(const struct nexthop *nexthop);
238 /* Copies to an already allocated nexthop struct */
239 extern void nexthop_copy(struct nexthop *copy, const struct nexthop *nexthop,
240 struct nexthop *rparent);
241 /* Copies to an already allocated nexthop struct, not including recurse info */
242 extern void nexthop_copy_no_recurse(struct nexthop *copy,
243 const struct nexthop *nexthop,
244 struct nexthop *rparent);
245 /* Duplicates a nexthop and returns the newly allocated nexthop */
246 extern struct nexthop *nexthop_dup(const struct nexthop *nexthop,
247 struct nexthop *rparent);
248 /* Duplicates a nexthop and returns the newly allocated nexthop */
249 extern struct nexthop *nexthop_dup_no_recurse(const struct nexthop *nexthop,
250 struct nexthop *rparent);
251
252 /*
253 * Parse one or more backup index values, as comma-separated numbers,
254 * into caller's array of uint8_ts. The array must be NEXTHOP_MAX_BACKUPS
255 * in size. Mails back the number of values converted, and returns 0 on
256 * success, <0 if an error in parsing.
257 */
258 int nexthop_str2backups(const char *str, int *num_backups,
259 uint8_t *backups);
260
261 #ifdef _FRR_ATTRIBUTE_PRINTFRR
262 #pragma FRR printfrr_ext "%pNH" (struct nexthop *)
263 #endif
264
265 #ifdef __cplusplus
266 }
267 #endif
268
269 #endif /*_LIB_NEXTHOP_H */