]> git.proxmox.com Git - mirror_frr.git/blame - lib/nexthop.h
Merge pull request #5418 from qlyoung/fix-bgp-prefix-sid-missing-boundscheck
[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"
fb018d25 28
5e244469
RW
29#ifdef __cplusplus
30extern "C" {
31#endif
32
80c2442a 33/* Maximum next hop string length - gateway + ifindex */
34#define NEXTHOP_STRLEN (INET6_ADDRSTRLEN + 30)
35
fb018d25 36union g_addr {
d62a17ae 37 struct in_addr ipv4;
38 struct in6_addr ipv6;
fb018d25
DS
39};
40
d62a17ae 41enum nexthop_types_t {
42 NEXTHOP_TYPE_IFINDEX = 1, /* Directly connected. */
43 NEXTHOP_TYPE_IPV4, /* IPv4 nexthop. */
44 NEXTHOP_TYPE_IPV4_IFINDEX, /* IPv4 nexthop with ifindex. */
45 NEXTHOP_TYPE_IPV6, /* IPv6 nexthop. */
46 NEXTHOP_TYPE_IPV6_IFINDEX, /* IPv6 nexthop with ifindex. */
47 NEXTHOP_TYPE_BLACKHOLE, /* Null0 nexthop. */
fb018d25 48};
09a484dd
DL
49
50enum blackhole_type {
51 BLACKHOLE_UNSPEC = 0,
52 BLACKHOLE_NULL,
53 BLACKHOLE_REJECT,
54 BLACKHOLE_ADMINPROHIB,
55};
fb018d25 56
25b9cb0c 57/* IPV[46] -> IPV[46]_IFINDEX */
996c9314
LB
58#define NEXTHOP_FIRSTHOPTYPE(type) \
59 ((type) == NEXTHOP_TYPE_IFINDEX || (type) == NEXTHOP_TYPE_BLACKHOLE) \
60 ? (type) \
61 : ((type) | 1)
25b9cb0c 62
fb018d25 63/* Nexthop structure. */
d62a17ae 64struct nexthop {
65 struct nexthop *next;
66 struct nexthop *prev;
fb018d25 67
4a7371e9
DS
68 /*
69 * What vrf is this nexthop associated with?
70 */
71 vrf_id_t vrf_id;
72
d62a17ae 73 /* Interface index. */
74 ifindex_t ifindex;
fb018d25 75
d62a17ae 76 enum nexthop_types_t type;
fb018d25 77
d7c0a89a 78 uint8_t flags;
fb018d25
DS
79#define NEXTHOP_FLAG_ACTIVE (1 << 0) /* This nexthop is alive. */
80#define NEXTHOP_FLAG_FIB (1 << 1) /* FIB nexthop. */
81#define NEXTHOP_FLAG_RECURSIVE (1 << 2) /* Recursive nexthop. */
82#define NEXTHOP_FLAG_ONLINK (1 << 3) /* Nexthop should be installed onlink. */
83#define NEXTHOP_FLAG_MATCHED (1 << 4) /* Already matched vs a nexthop */
dd50eeb1 84#define NEXTHOP_FLAG_DUPLICATE (1 << 5) /* nexthop duplicates another active one */
e47c4d3c 85#define NEXTHOP_FLAG_RNH_FILTERED (1 << 6) /* rmap filtered, used by rnh */
996c9314
LB
86#define NEXTHOP_IS_ACTIVE(flags) \
87 (CHECK_FLAG(flags, NEXTHOP_FLAG_ACTIVE) \
88 && !CHECK_FLAG(flags, NEXTHOP_FLAG_DUPLICATE))
fb018d25 89
d62a17ae 90 /* Nexthop address */
a8309422
DL
91 union {
92 union g_addr gate;
93 enum blackhole_type bh_type;
94 };
d62a17ae 95 union g_addr src;
96 union g_addr rmap_src; /* Src is set via routemap */
97
98 /* Nexthops obtained by recursive resolution.
99 *
100 * If the nexthop struct needs to be resolved recursively,
101 * NEXTHOP_FLAG_RECURSIVE will be set in flags and the nexthops
102 * obtained by recursive resolution will be added to `resolved'.
103 */
104 struct nexthop *resolved;
105 /* Recursive parent */
106 struct nexthop *rparent;
107
108 /* Type of label(s), if any */
109 enum lsp_types_t nh_label_type;
110
111 /* Label(s) associated with this nexthop. */
8ecdb26e 112 struct mpls_label_stack *nh_label;
df7fb580
DS
113
114 /* Weight of the nexthop ( for unequal cost ECMP ) */
115 uint8_t weight;
fb018d25
DS
116};
117
d62a17ae 118struct nexthop *nexthop_new(void);
a399694f 119
d62a17ae 120void nexthop_free(struct nexthop *nexthop);
121void nexthops_free(struct nexthop *nexthop);
a399694f 122
d7c0a89a 123void nexthop_add_labels(struct nexthop *, enum lsp_types_t, uint8_t,
d62a17ae 124 mpls_label_t *);
125void nexthop_del_labels(struct nexthop *);
40c7bdb0 126
f3323df2
MS
127/*
128 * Allocate a new nexthop object and initialize it from various args.
129 */
130struct nexthop *nexthop_from_ifindex(ifindex_t ifindex, vrf_id_t vrf_id);
131struct nexthop *nexthop_from_ipv4(const struct in_addr *ipv4,
132 const struct in_addr *src,
133 vrf_id_t vrf_id);
134struct nexthop *nexthop_from_ipv4_ifindex(const struct in_addr *ipv4,
135 const struct in_addr *src,
136 ifindex_t ifindex, vrf_id_t vrf_id);
137struct nexthop *nexthop_from_ipv6(const struct in6_addr *ipv6,
138 vrf_id_t vrf_id);
139struct nexthop *nexthop_from_ipv6_ifindex(const struct in6_addr *ipv6,
140 ifindex_t ifindex, vrf_id_t vrf_id);
141struct nexthop *nexthop_from_blackhole(enum blackhole_type bh_type);
142
d36d0d57
QY
143/*
144 * Hash a nexthop. Suitable for use with hash tables.
145 *
146 * This function uses the following values when computing the hash:
147 * - vrf_id
148 * - ifindex
149 * - type
150 * - gate
151 *
152 * nexthop
153 * The nexthop to hash
154 *
155 * Returns:
156 * 32-bit hash of nexthop
157 */
1b1fe1c4 158uint32_t nexthop_hash(const struct nexthop *nexthop);
73a38187
SW
159/*
160 * Hash a nexthop only on word-sized attributes:
161 * - vrf_id
162 * - ifindex
163 * - type
164 * - (some) flags
165 */
166uint32_t nexthop_hash_quick(const struct nexthop *nexthop);
d36d0d57 167
31919191 168extern bool nexthop_same(const struct nexthop *nh1, const struct nexthop *nh2);
a5a2d802
SW
169extern bool nexthop_same_no_labels(const struct nexthop *nh1,
170 const struct nexthop *nh2);
776c3e90 171extern int nexthop_cmp(const struct nexthop *nh1, const struct nexthop *nh2);
3c6e0bd4
SW
172extern int nexthop_g_addr_cmp(enum nexthop_types_t type,
173 const union g_addr *addr1,
174 const union g_addr *addr2);
31919191 175
d62a17ae 176extern const char *nexthop_type_to_str(enum nexthop_types_t nh_type);
89dc3160
SW
177extern bool nexthop_labels_match(const struct nexthop *nh1,
178 const struct nexthop *nh2);
996c9314 179extern int nexthop_same_firsthop(struct nexthop *next1, struct nexthop *next2);
fb018d25 180
55f93d4b
MS
181extern const char *nexthop2str(const struct nexthop *nexthop,
182 char *str, int size);
17c25e03
SW
183extern struct nexthop *nexthop_next(const struct nexthop *nexthop);
184extern struct nexthop *
185nexthop_next_active_resolved(const struct nexthop *nexthop);
e3054ee9 186extern unsigned int nexthop_level(struct nexthop *nexthop);
504d0a40 187/* Copies to an already allocated nexthop struct */
e7addf02
SW
188extern void nexthop_copy(struct nexthop *copy, const struct nexthop *nexthop,
189 struct nexthop *rparent);
504d0a40
SW
190/* Duplicates a nexthop and returns the newly allocated nexthop */
191extern struct nexthop *nexthop_dup(const struct nexthop *nexthop,
192 struct nexthop *rparent);
5e244469
RW
193
194#ifdef __cplusplus
195}
196#endif
197
fb018d25 198#endif /*_LIB_NEXTHOP_H */