]> git.proxmox.com Git - mirror_frr.git/blob - lib/nexthop_group.h
d96d0ab9f5d2f55c6008a2413f84f94c81cf9731
[mirror_frr.git] / lib / nexthop_group.h
1 /*
2 * Nexthop Group structure definition.
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
21 #ifndef __NEXTHOP_GROUP__
22 #define __NEXTHOP_GROUP__
23
24 #include <vty.h>
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 /*
31 * What is a nexthop group?
32 *
33 * A nexthop group is a collection of nexthops that make up
34 * the ECMP path for the route.
35 *
36 * This module provides a proper abstraction to this idea.
37 */
38 struct nexthop_group {
39 struct nexthop *nexthop;
40 };
41
42 struct nexthop_group *nexthop_group_new(void);
43 void nexthop_group_delete(struct nexthop_group **nhg);
44
45 void nexthop_add(struct nexthop **target, struct nexthop *nexthop);
46 void nexthop_del(struct nexthop_group *nhg, struct nexthop *nexthop);
47 void copy_nexthops(struct nexthop **tnh, const struct nexthop *nh,
48 struct nexthop *rparent);
49
50 /* The following for loop allows to iterate over the nexthop
51 * structure of routes.
52 *
53 * head: The pointer to the first nexthop in the chain.
54 *
55 * nexthop: The pointer to the current nexthop, either in the
56 * top-level chain or in a resolved chain.
57 */
58 #define ALL_NEXTHOPS(head, nhop) \
59 (nhop) = (head.nexthop); \
60 (nhop); \
61 (nhop) = nexthop_next(nhop)
62
63 #define ALL_NEXTHOPS_PTR(head, nhop) \
64 (nhop) = ((head)->nexthop); \
65 (nhop); \
66 (nhop) = nexthop_next(nhop)
67
68
69 struct nexthop_hold {
70 char *nhvrf_name;
71 union sockunion *addr;
72 char *intf;
73 };
74
75 struct nexthop_group_cmd {
76
77 RB_ENTRY(nexthop_group_cmd) nhgc_entry;
78
79 char name[80];
80
81 struct nexthop_group nhg;
82
83 struct list *nhg_list;
84
85 QOBJ_FIELDS
86 };
87 RB_HEAD(nhgc_entry_head, nexthp_group_cmd);
88 RB_PROTOTYPE(nhgc_entry_head, nexthop_group_cmd, nhgc_entry,
89 nexthop_group_cmd_compare)
90 DECLARE_QOBJ_TYPE(nexthop_group_cmd)
91
92 /*
93 * Initialize nexthop_groups. If you are interested in when
94 * a nexthop_group is added/deleted/modified, then set the
95 * appropriate callback functions to handle it in your
96 * code
97 */
98 void nexthop_group_init(
99 void (*create)(const char *name),
100 void (*add_nexthop)(const struct nexthop_group_cmd *nhgc,
101 const struct nexthop *nhop),
102 void (*del_nexthop)(const struct nexthop_group_cmd *nhgc,
103 const struct nexthop *nhop),
104 void (*destroy)(const char *name));
105
106 void nexthop_group_enable_vrf(struct vrf *vrf);
107 void nexthop_group_disable_vrf(struct vrf *vrf);
108 void nexthop_group_interface_state_change(struct interface *ifp,
109 ifindex_t oldifindex);
110
111 extern struct nexthop *nexthop_exists(struct nexthop_group *nhg,
112 struct nexthop *nh);
113
114 extern struct nexthop_group_cmd *nhgc_find(const char *name);
115
116 extern void nexthop_group_write_nexthop(struct vty *vty, struct nexthop *nh);
117
118 #ifdef __cplusplus
119 }
120 #endif
121
122 #endif