]> git.proxmox.com Git - mirror_frr.git/blob - staticd/static_routes.h
Merge pull request #10376 from patrasar/master_pimv6_vtysh
[mirror_frr.git] / staticd / static_routes.h
1 /*
2 * STATICd - static routes header
3 * Copyright (C) 2018 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20 #ifndef __STATIC_ROUTES_H__
21 #define __STATIC_ROUTES_H__
22
23 #include "lib/mpls.h"
24 #include "table.h"
25 #include "memory.h"
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 DECLARE_MGROUP(STATIC);
32
33 /* Static route label information */
34 struct static_nh_label {
35 uint8_t num_labels;
36 uint8_t reserved[3];
37 mpls_label_t label[MPLS_MAX_LABELS];
38 };
39
40 enum static_blackhole_type {
41 STATIC_BLACKHOLE_DROP = 0,
42 STATIC_BLACKHOLE_NULL,
43 STATIC_BLACKHOLE_REJECT
44 };
45
46 /*
47 * The order for below macros should be in sync with
48 * yang model typedef nexthop-type
49 */
50 enum static_nh_type {
51 STATIC_IFNAME = 1,
52 STATIC_IPV4_GATEWAY,
53 STATIC_IPV4_GATEWAY_IFNAME,
54 STATIC_IPV6_GATEWAY,
55 STATIC_IPV6_GATEWAY_IFNAME,
56 STATIC_BLACKHOLE,
57 };
58
59 /*
60 * Route Creation gives us:
61 * START -> Initial State, only exit is when we send the route to
62 * zebra for installation
63 * When we send the route to Zebra move to SENT_TO_ZEBRA
64 * SENT_TO_ZEBRA -> A way to notice that we've sent the route to zebra
65 * But have not received a response on it's status yet
66 * After The response from zebra we move to INSTALLED or FAILED
67 * INSTALLED -> Route was accepted
68 * FAILED -> Route was rejected
69 * When we receive notification about a nexthop that a route uses
70 * We move the route back to START and initiate the process again.
71 */
72 enum static_install_states {
73 STATIC_START,
74 STATIC_SENT_TO_ZEBRA,
75 STATIC_INSTALLED,
76 STATIC_NOT_INSTALLED,
77 };
78
79 PREDECL_DLIST(static_path_list);
80 PREDECL_DLIST(static_nexthop_list);
81
82 /* Static route information */
83 struct static_route_info {
84 struct static_vrf *svrf;
85 safi_t safi;
86 /* path list */
87 struct static_path_list_head path_list;
88 };
89
90 /* Static path information */
91 struct static_path {
92 /* Route node back pointer. */
93 struct route_node *rn;
94 /* Linkage for static path lists */
95 struct static_path_list_item list;
96 /* Administrative distance. */
97 uint8_t distance;
98 /* Tag */
99 route_tag_t tag;
100 /* Table-id */
101 uint32_t table_id;
102 /* Nexthop list */
103 struct static_nexthop_list_head nexthop_list;
104 };
105
106 DECLARE_DLIST(static_path_list, struct static_path, list);
107
108 /* Static route information. */
109 struct static_nexthop {
110 /* Path back pointer. */
111 struct static_path *pn;
112 /* For linked list. */
113 struct static_nexthop_list_item list;
114
115 /* VRF identifier. */
116 vrf_id_t nh_vrf_id;
117 char nh_vrfname[VRF_NAMSIZ + 1];
118
119 /*
120 * States that we walk the route through
121 * To know where we are.
122 */
123 enum static_install_states state;
124
125 /* Flag for this static route's type. */
126 enum static_nh_type type;
127
128 /*
129 * Nexthop value.
130 */
131 enum static_blackhole_type bh_type;
132 union g_addr addr;
133 ifindex_t ifindex;
134 bool nh_registered;
135 bool nh_valid;
136
137 char ifname[INTERFACE_NAMSIZ + 1];
138
139 /* Label information */
140 struct static_nh_label snh_label;
141
142 /*
143 * Whether to pretend the nexthop is directly attached to the specified
144 * link. Only meaningful when both a gateway address and interface name
145 * are specified.
146 */
147 bool onlink;
148
149 /* SR-TE color */
150 uint32_t color;
151 };
152
153 DECLARE_DLIST(static_nexthop_list, struct static_nexthop, list);
154
155
156 /*
157 * rib_dest_from_rnode
158 */
159 static inline struct static_route_info *
160 static_route_info_from_rnode(struct route_node *rn)
161 {
162 return (struct static_route_info *)(rn->info);
163 }
164
165 extern bool mpls_enabled;
166 extern uint32_t zebra_ecmp_count;
167
168 extern struct zebra_privs_t static_privs;
169
170 void static_fixup_vrf_ids(struct static_vrf *svrf);
171
172 extern struct static_nexthop *
173 static_add_nexthop(struct static_path *pn, enum static_nh_type type,
174 struct ipaddr *ipaddr, const char *ifname,
175 const char *nh_vrf, uint32_t color);
176 extern void static_install_nexthop(struct static_nexthop *nh);
177
178 extern void static_delete_nexthop(struct static_nexthop *nh);
179
180 extern void static_cleanup_vrf_ids(struct static_vrf *disable_svrf);
181
182 extern void static_install_intf_nh(struct interface *ifp);
183
184 extern void static_ifindex_update(struct interface *ifp, bool up);
185
186 extern void static_install_path(struct static_path *pn);
187
188 extern struct route_node *static_add_route(afi_t afi, safi_t safi,
189 struct prefix *p,
190 struct prefix_ipv6 *src_p,
191 struct static_vrf *svrf);
192 extern void static_del_route(struct route_node *rn);
193
194 extern struct static_path *static_add_path(struct route_node *rn,
195 uint32_t table_id, uint8_t distance);
196 extern void static_del_path(struct static_path *pn);
197
198 extern void static_get_nh_type(enum static_nh_type stype, char *type,
199 size_t size);
200 extern bool static_add_nexthop_validate(const char *nh_vrf_name,
201 enum static_nh_type type,
202 struct ipaddr *ipaddr);
203 extern struct stable_info *static_get_stable_info(struct route_node *rn);
204
205 extern void zebra_stable_node_cleanup(struct route_table *table,
206 struct route_node *node);
207
208 /*
209 * Max string return via API static_get_nh_str in size_t
210 */
211
212 #define NEXTHOP_STR (INET6_ADDRSTRLEN + INTERFACE_NAMSIZ + 25)
213 /*
214 * For the given nexthop, returns the string
215 * nexthop : returns the formatted string in nexthop
216 * size : max size of formatted string
217 */
218 extern void static_get_nh_str(struct static_nexthop *nh, char *nexthop,
219 size_t size);
220
221 #ifdef __cplusplus
222 }
223 #endif
224
225 #endif