]> git.proxmox.com Git - mirror_frr.git/blame - lib/nexthop.h
lib: Fix label-stack comparison for nexthops
[mirror_frr.git] / lib / nexthop.h
CommitLineData
fb018d25
DS
1/*
2 * Nexthop structure definition.
a399694f 3 * Copyright (C) 1997, 98, 99, 2001 Kunihiro Ishiguro
fb018d25
DS
4 * Copyright (C) 2013 Cumulus Networks, Inc.
5 *
a399694f 6 * This file is part of Quagga.
fb018d25 7 *
a399694f 8 * Quagga is free software; you can redistribute it and/or modify it
fb018d25
DS
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 *
a399694f 13 * Quagga is distributed in the hope that it will be useful, but
fb018d25
DS
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 *
896014f4
DL
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
fb018d25
DS
21 */
22
23#ifndef _LIB_NEXTHOP_H
24#define _LIB_NEXTHOP_H
25
26#include "prefix.h"
54d48ea1 27#include "mpls.h"
f2a0ba3a 28#include "vxlan.h"
fb018d25 29
5e244469
RW
30#ifdef __cplusplus
31extern "C" {
32#endif
33
80c2442a 34/* Maximum next hop string length - gateway + ifindex */
35#define NEXTHOP_STRLEN (INET6_ADDRSTRLEN + 30)
36
fb018d25 37union g_addr {
d62a17ae 38 struct in_addr ipv4;
39 struct in6_addr ipv6;
fb018d25
DS
40};
41
d62a17ae 42enum nexthop_types_t {
43 NEXTHOP_TYPE_IFINDEX = 1, /* Directly connected. */
44 NEXTHOP_TYPE_IPV4, /* IPv4 nexthop. */
45 NEXTHOP_TYPE_IPV4_IFINDEX, /* IPv4 nexthop with ifindex. */
46 NEXTHOP_TYPE_IPV6, /* IPv6 nexthop. */
47 NEXTHOP_TYPE_IPV6_IFINDEX, /* IPv6 nexthop with ifindex. */
48 NEXTHOP_TYPE_BLACKHOLE, /* Null0 nexthop. */
fb018d25 49};
09a484dd
DL
50
51enum blackhole_type {
52 BLACKHOLE_UNSPEC = 0,
53 BLACKHOLE_NULL,
54 BLACKHOLE_REJECT,
55 BLACKHOLE_ADMINPROHIB,
56};
fb018d25 57
f2a0ba3a
RZ
58enum nh_encap_type {
59 NET_VXLAN = 100, /* value copied from FPM_NH_ENCAP_VXLAN. */
60};
61
474aebd9
MS
62/* Fixed limit on the number of backup nexthops per primary nexthop */
63#define NEXTHOP_MAX_BACKUPS 8
64
65/* Backup index value is limited */
66#define NEXTHOP_BACKUP_IDX_MAX 255
67
fb018d25 68/* Nexthop structure. */
d62a17ae 69struct nexthop {
70 struct nexthop *next;
71 struct nexthop *prev;
fb018d25 72
4a7371e9
DS
73 /*
74 * What vrf is this nexthop associated with?
75 */
76 vrf_id_t vrf_id;
77
d62a17ae 78 /* Interface index. */
79 ifindex_t ifindex;
fb018d25 80
d62a17ae 81 enum nexthop_types_t type;
fb018d25 82
d7c0a89a 83 uint8_t flags;
fb018d25
DS
84#define NEXTHOP_FLAG_ACTIVE (1 << 0) /* This nexthop is alive. */
85#define NEXTHOP_FLAG_FIB (1 << 1) /* FIB nexthop. */
86#define NEXTHOP_FLAG_RECURSIVE (1 << 2) /* Recursive nexthop. */
0641a955
MS
87#define NEXTHOP_FLAG_ONLINK (1 << 3) /* Nexthop should be installed
88 * onlink.
89 */
90#define NEXTHOP_FLAG_DUPLICATE (1 << 4) /* nexthop duplicates another
91 * active one
92 */
93#define NEXTHOP_FLAG_RNH_FILTERED (1 << 5) /* rmap filtered, used by rnh */
defd2ea4 94#define NEXTHOP_FLAG_HAS_BACKUP (1 << 6) /* Backup nexthop index is set */
31f937fb 95#define NEXTHOP_FLAG_SRTE (1 << 7) /* SR-TE color used for BGP traffic */
defd2ea4 96
996c9314
LB
97#define NEXTHOP_IS_ACTIVE(flags) \
98 (CHECK_FLAG(flags, NEXTHOP_FLAG_ACTIVE) \
99 && !CHECK_FLAG(flags, NEXTHOP_FLAG_DUPLICATE))
fb018d25 100
d62a17ae 101 /* Nexthop address */
a8309422
DL
102 union {
103 union g_addr gate;
104 enum blackhole_type bh_type;
105 };
d62a17ae 106 union g_addr src;
107 union g_addr rmap_src; /* Src is set via routemap */
108
109 /* Nexthops obtained by recursive resolution.
110 *
111 * If the nexthop struct needs to be resolved recursively,
112 * NEXTHOP_FLAG_RECURSIVE will be set in flags and the nexthops
113 * obtained by recursive resolution will be added to `resolved'.
114 */
115 struct nexthop *resolved;
116 /* Recursive parent */
117 struct nexthop *rparent;
118
119 /* Type of label(s), if any */
120 enum lsp_types_t nh_label_type;
121
122 /* Label(s) associated with this nexthop. */
8ecdb26e 123 struct mpls_label_stack *nh_label;
df7fb580
DS
124
125 /* Weight of the nexthop ( for unequal cost ECMP ) */
126 uint8_t weight;
defd2ea4 127
474aebd9 128 /* Count and index of corresponding backup nexthop(s) in a backup list;
defd2ea4
MS
129 * only meaningful if the HAS_BACKUP flag is set.
130 */
474aebd9
MS
131 uint8_t backup_num;
132 uint8_t backup_idx[NEXTHOP_MAX_BACKUPS];
f2a0ba3a
RZ
133
134 /* Encapsulation information. */
135 enum nh_encap_type nh_encap_type;
136 union {
137 vni_t vni;
138 } nh_encap;
31f937fb
SM
139
140 /* SR-TE color used for matching SR-TE policies */
141 uint32_t srte_color;
fb018d25
DS
142};
143
e4a1ec74
MS
144/* Utility to append one nexthop to another. */
145#define NEXTHOP_APPEND(to, new) \
146 do { \
147 (to)->next = (new); \
148 (new)->prev = (to); \
149 (new)->next = NULL; \
150 } while (0)
151
d62a17ae 152struct nexthop *nexthop_new(void);
a399694f 153
d62a17ae 154void nexthop_free(struct nexthop *nexthop);
155void nexthops_free(struct nexthop *nexthop);
a399694f 156
e4a1ec74
MS
157void nexthop_add_labels(struct nexthop *nexthop, enum lsp_types_t ltype,
158 uint8_t num_labels, const mpls_label_t *labels);
d62a17ae 159void nexthop_del_labels(struct nexthop *);
40c7bdb0 160
f3323df2
MS
161/*
162 * Allocate a new nexthop object and initialize it from various args.
163 */
164struct nexthop *nexthop_from_ifindex(ifindex_t ifindex, vrf_id_t vrf_id);
165struct nexthop *nexthop_from_ipv4(const struct in_addr *ipv4,
166 const struct in_addr *src,
167 vrf_id_t vrf_id);
168struct nexthop *nexthop_from_ipv4_ifindex(const struct in_addr *ipv4,
169 const struct in_addr *src,
170 ifindex_t ifindex, vrf_id_t vrf_id);
171struct nexthop *nexthop_from_ipv6(const struct in6_addr *ipv6,
172 vrf_id_t vrf_id);
173struct nexthop *nexthop_from_ipv6_ifindex(const struct in6_addr *ipv6,
174 ifindex_t ifindex, vrf_id_t vrf_id);
175struct nexthop *nexthop_from_blackhole(enum blackhole_type bh_type);
176
d36d0d57
QY
177/*
178 * Hash a nexthop. Suitable for use with hash tables.
179 *
180 * This function uses the following values when computing the hash:
181 * - vrf_id
182 * - ifindex
183 * - type
184 * - gate
185 *
186 * nexthop
187 * The nexthop to hash
188 *
189 * Returns:
190 * 32-bit hash of nexthop
191 */
1b1fe1c4 192uint32_t nexthop_hash(const struct nexthop *nexthop);
73a38187
SW
193/*
194 * Hash a nexthop only on word-sized attributes:
195 * - vrf_id
196 * - ifindex
197 * - type
198 * - (some) flags
199 */
200uint32_t nexthop_hash_quick(const struct nexthop *nexthop);
d36d0d57 201
31919191 202extern bool nexthop_same(const struct nexthop *nh1, const struct nexthop *nh2);
a5a2d802
SW
203extern bool nexthop_same_no_labels(const struct nexthop *nh1,
204 const struct nexthop *nh2);
776c3e90 205extern int nexthop_cmp(const struct nexthop *nh1, const struct nexthop *nh2);
3c6e0bd4
SW
206extern int nexthop_g_addr_cmp(enum nexthop_types_t type,
207 const union g_addr *addr1,
208 const union g_addr *addr2);
31919191 209
d62a17ae 210extern const char *nexthop_type_to_str(enum nexthop_types_t nh_type);
89dc3160
SW
211extern bool nexthop_labels_match(const struct nexthop *nh1,
212 const struct nexthop *nh2);
fb018d25 213
55f93d4b
MS
214extern const char *nexthop2str(const struct nexthop *nexthop,
215 char *str, int size);
17c25e03
SW
216extern struct nexthop *nexthop_next(const struct nexthop *nexthop);
217extern struct nexthop *
218nexthop_next_active_resolved(const struct nexthop *nexthop);
850c85b9 219extern unsigned int nexthop_level(const struct nexthop *nexthop);
504d0a40 220/* Copies to an already allocated nexthop struct */
e7addf02
SW
221extern void nexthop_copy(struct nexthop *copy, const struct nexthop *nexthop,
222 struct nexthop *rparent);
77bf9504
SW
223/* Copies to an already allocated nexthop struct, not including recurse info */
224extern void nexthop_copy_no_recurse(struct nexthop *copy,
225 const struct nexthop *nexthop,
226 struct nexthop *rparent);
504d0a40
SW
227/* Duplicates a nexthop and returns the newly allocated nexthop */
228extern struct nexthop *nexthop_dup(const struct nexthop *nexthop,
229 struct nexthop *rparent);
77bf9504
SW
230/* Duplicates a nexthop and returns the newly allocated nexthop */
231extern struct nexthop *nexthop_dup_no_recurse(const struct nexthop *nexthop,
232 struct nexthop *rparent);
5e244469 233
0cac0cf4
MS
234/*
235 * Parse one or more backup index values, as comma-separated numbers,
236 * into caller's array of uint8_ts. The array must be NEXTHOP_MAX_BACKUPS
237 * in size. Mails back the number of values converted, and returns 0 on
238 * success, <0 if an error in parsing.
239 */
240int nexthop_str2backups(const char *str, int *num_backups,
241 uint8_t *backups);
242
07ef3e34
DL
243#ifdef _FRR_ATTRIBUTE_PRINTFRR
244#pragma FRR printfrr_ext "%pNH" (struct nexthop *)
245#endif
246
5e244469
RW
247#ifdef __cplusplus
248}
249#endif
250
fb018d25 251#endif /*_LIB_NEXTHOP_H */