3 * Copyright (C) 2016 Cumulus Networks
6 * This file is part of Quagga.
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
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.
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
22 #if !defined(__ZEBRA_VRF_H__)
23 #define __ZEBRA_VRF_H__
27 #include <zebra/zebra_ns.h>
28 #include <zebra/zebra_pw.h>
29 #include <lib/vxlan.h>
35 /* MPLS (Segment Routing) global block */
43 struct route_map
*map
;
46 PREDECL_RBTREE_UNIQ(otable
);
48 struct other_route_table
{
49 struct otable_item next
;
55 struct route_table
*table
;
58 /* Routing table instance. */
71 #define ZEBRA_VRF_RETAIN (1 << 0)
72 #define ZEBRA_PIM_SEND_VXLAN_SG (1 << 1)
77 struct route_table
*table
[AFI_MAX
][SAFI_MAX
];
79 /* Recursive Nexthop table */
80 struct route_table
*rnh_table
[AFI_MAX
];
81 struct route_table
*rnh_table_multicast
[AFI_MAX
];
83 struct otable_head other_tables
;
85 /* 2nd pointer type used primarily to quell a warning on
86 * ALL_LIST_ELEMENTS_RO
88 struct list _rid_all_sorted_list
;
89 struct list _rid_lo_sorted_list
;
90 struct list
*rid_all_sorted_list
;
91 struct list
*rid_lo_sorted_list
;
92 struct prefix rid_user_assigned
;
93 struct list _rid6_all_sorted_list
;
94 struct list _rid6_lo_sorted_list
;
95 struct list
*rid6_all_sorted_list
;
96 struct list
*rid6_lo_sorted_list
;
97 struct prefix rid6_user_assigned
;
100 * Back pointer to the owning namespace.
102 struct zebra_ns
*zns
;
104 /* MPLS Label to handle L3VPN <-> vrf popping */
105 mpls_label_t label
[AFI_MAX
];
106 uint8_t label_proto
[AFI_MAX
];
108 /* MPLS static LSP config table */
109 struct hash
*slsp_table
;
111 /* MPLS label forwarding table */
112 struct hash
*lsp_table
;
114 /* MPLS FEC binding table */
115 struct route_table
*fec_table
[AFI_MAX
];
117 /* MPLS Segment Routing Global block */
118 struct mpls_srgb mpls_srgb
;
121 struct zebra_pw_head pseudowires
;
122 struct zebra_static_pw_head static_pseudowires
;
124 struct zebra_rmap proto_rm
[AFI_MAX
][ZEBRA_ROUTE_MAX
+ 1];
125 struct zebra_rmap nht_rm
[AFI_MAX
][ZEBRA_ROUTE_MAX
+ 1];
127 /* MPLS processing flags */
129 #define MPLS_FLAG_SCHEDULE_LSPS (1 << 0)
132 * EVPN hash table. Only in the EVPN instance.
134 struct hash
*evpn_table
;
137 * Whether EVPN is enabled or not. Only in the EVPN instance.
139 int advertise_all_vni
;
142 * Whether we are advertising g/w macip in EVPN or not.
143 * Only in the EVPN instance.
145 int advertise_gw_macip
;
147 int advertise_svi_macip
;
152 /* pim mroutes installed for vxlan flooding */
153 struct hash
*vxlan_sg_table
;
155 bool dup_addr_detect
;
158 uint32_t dad_max_moves
;
160 uint32_t dad_freeze_time
;
163 * Flooding mechanism for BUM packets for VxLAN-EVPN.
165 enum vxlan_flood_control vxlan_flood_ctrl
;
170 uint64_t installs_queued
;
171 uint64_t removals_queued
;
172 uint64_t neigh_updates
;
173 uint64_t lsp_installs_queued
;
174 uint64_t lsp_removals_queued
;
175 uint64_t lsp_installs
;
176 uint64_t lsp_removals
;
178 struct table_manager
*tbl_mgr
;
180 #if defined(HAVE_RTADV)
182 #endif /* HAVE_RTADV */
184 bool zebra_rnh_ip_default_route
;
185 bool zebra_rnh_ipv6_default_route
;
187 #define PROTO_RM_NAME(zvrf, afi, rtype) zvrf->proto_rm[afi][rtype].name
188 #define NHT_RM_NAME(zvrf, afi, rtype) zvrf->nht_rm[afi][rtype].name
189 #define PROTO_RM_MAP(zvrf, afi, rtype) zvrf->proto_rm[afi][rtype].map
190 #define NHT_RM_MAP(zvrf, afi, rtype) zvrf->nht_rm[afi][rtype].map
193 * special macro to allow us to get the correct zebra_vrf
195 #define ZEBRA_DECLVAR_CONTEXT(A, B) \
197 if (vty->node == CONFIG_NODE) \
198 A = vrf_lookup_by_id(VRF_DEFAULT); \
200 A = VTY_GET_CONTEXT(vrf); \
201 VTY_CHECK_CONTEXT(A); \
202 struct zebra_vrf *B = A->info
204 static inline vrf_id_t
zvrf_id(struct zebra_vrf
*zvrf
)
206 if (!zvrf
|| !zvrf
->vrf
)
208 return zvrf
->vrf
->vrf_id
;
211 static inline const char *zvrf_ns_name(struct zebra_vrf
*zvrf
)
213 if (!zvrf
->vrf
|| !zvrf
->vrf
->ns_ctxt
)
215 return ns_get_name((struct ns
*)zvrf
->vrf
->ns_ctxt
);
218 static inline const char *zvrf_name(struct zebra_vrf
*zvrf
)
220 if (!zvrf
|| !zvrf
->vrf
)
222 return zvrf
->vrf
->name
;
225 static inline bool zvrf_is_active(struct zebra_vrf
*zvrf
)
227 return zvrf
->vrf
->status
& VRF_ACTIVE
;
231 zvrf_other_table_compare_func(const struct other_route_table
*a
,
232 const struct other_route_table
*b
)
234 if (a
->afi
!= b
->afi
)
235 return a
->afi
- b
->afi
;
237 if (a
->safi
!= b
->safi
)
238 return a
->safi
- b
->safi
;
240 if (a
->table_id
!= b
->table_id
)
241 return a
->table_id
- b
->table_id
;
246 DECLARE_RBTREE_UNIQ(otable
, struct other_route_table
, next
,
247 zvrf_other_table_compare_func
);
249 extern struct route_table
*
250 zebra_vrf_lookup_table_with_table_id(afi_t afi
, safi_t safi
, vrf_id_t vrf_id
,
252 extern struct route_table
*zebra_vrf_get_table_with_table_id(afi_t afi
,
257 extern void zebra_vrf_update_all(struct zserv
*client
);
258 extern struct zebra_vrf
*zebra_vrf_lookup_by_id(vrf_id_t vrf_id
);
259 extern struct zebra_vrf
*zebra_vrf_lookup_by_name(const char *);
260 extern struct zebra_vrf
*zebra_vrf_alloc(struct vrf
*vrf
);
261 extern struct route_table
*zebra_vrf_table(afi_t
, safi_t
, vrf_id_t
);
264 * API to associate a VRF with a NETNS.
265 * Called either from vty or through discovery.
267 extern int zebra_vrf_netns_handler_create(struct vty
*vty
, struct vrf
*vrf
,
268 char *pathname
, ns_id_t ext_ns_id
,
269 ns_id_t ns_id
, ns_id_t rel_def_ns_id
);
271 extern void zebra_vrf_init(void);
273 extern void zebra_rtable_node_cleanup(struct route_table
*table
,
274 struct route_node
*node
);
280 #endif /* ZEBRA_VRF_H */