]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_vrf.h
zebra: delay default vrf name after vrf initialization
[mirror_frr.git] / zebra / zebra_vrf.h
CommitLineData
7c551956
DS
1/*
2 * Zebra Vrf Header
3 * Copyright (C) 2016 Cumulus Networks
7cdb1a84 4 * Donald Sharp
7c551956
DS
5 *
6 * This file is part of Quagga.
7 *
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
11 * later version.
12 *
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.
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
7c551956 21 */
736d41ad
PG
22#if !defined(__ZEBRA_VRF_H__)
23#define __ZEBRA_VRF_H__
7c551956 24
fbac9605
DS
25#include "vxlan.h"
26
7c551956 27#include <zebra/zebra_ns.h>
6833ae01 28#include <zebra/zebra_pw.h>
b7cfce93 29#include <lib/vxlan.h>
7c551956 30
1b6d5c7e 31/* MPLS (Segment Routing) global block */
d62a17ae 32typedef struct mpls_srgb_t_ {
d7c0a89a
QY
33 uint32_t start_label;
34 uint32_t end_label;
1b6d5c7e
VV
35} mpls_srgb_t;
36
ac6eebce 37struct zebra_rmap {
38 char *name;
39 struct route_map *map;
40};
41
7c551956 42/* Routing table instance. */
d62a17ae 43struct zebra_vrf {
44 /* Back pointer */
45 struct vrf *vrf;
7c551956 46
d62a17ae 47 /* Description. */
48 char *desc;
7c551956 49
d62a17ae 50 /* FIB identifier. */
d7c0a89a 51 uint8_t fib_id;
7c551956 52
d62a17ae 53 /* Flags. */
d7c0a89a 54 uint16_t flags;
7c551956 55#define ZEBRA_VRF_RIB_SCHEDULED (1 << 0)
5a8dfcd8 56#define ZEBRA_VRF_RETAIN (2 << 0)
7c551956 57
d7c0a89a 58 uint32_t table_id;
7c551956 59
d62a17ae 60 /* Routing table. */
61 struct route_table *table[AFI_MAX][SAFI_MAX];
7c551956 62
d62a17ae 63 /* Recursive Nexthop table */
64 struct route_table *rnh_table[AFI_MAX];
7c551956 65
d62a17ae 66 /* Import check table (used mostly by BGP */
67 struct route_table *import_check_table[AFI_MAX];
7c551956 68
d62a17ae 69 /* 2nd pointer type used primarily to quell a warning on
70 * ALL_LIST_ELEMENTS_RO
71 */
72 struct list _rid_all_sorted_list;
73 struct list _rid_lo_sorted_list;
74 struct list *rid_all_sorted_list;
75 struct list *rid_lo_sorted_list;
76 struct prefix rid_user_assigned;
7c551956 77
d62a17ae 78 /*
79 * Back pointer to the owning namespace.
80 */
81 struct zebra_ns *zns;
54d48ea1 82
c83c5e44 83 /* MPLS Label to handle L3VPN <-> vrf popping */
7d061b3c 84 mpls_label_t label[AFI_MAX];
c83c5e44 85
d62a17ae 86 /* MPLS static LSP config table */
87 struct hash *slsp_table;
54d48ea1 88
d62a17ae 89 /* MPLS label forwarding table */
90 struct hash *lsp_table;
939fba27 91
d62a17ae 92 /* MPLS FEC binding table */
93 struct route_table *fec_table[AFI_MAX];
f31e084c 94
d62a17ae 95 /* MPLS Segment Routing Global block */
96 mpls_srgb_t mpls_srgb;
1b6d5c7e 97
6833ae01 98 /* Pseudowires. */
99 struct zebra_pw_head pseudowires;
2dd0d726 100 struct zebra_static_pw_head static_pseudowires;
6833ae01 101
ac6eebce 102 struct zebra_rmap proto_rm[AFI_MAX][ZEBRA_ROUTE_MAX + 1];
103 struct zebra_rmap nht_rm[AFI_MAX][ZEBRA_ROUTE_MAX + 1];
104
d62a17ae 105 /* MPLS processing flags */
d7c0a89a 106 uint16_t mpls_flags;
939fba27 107#define MPLS_FLAG_SCHEDULE_LSPS (1 << 0)
57282a31 108
d62a17ae 109 /*
110 * VNI hash table (for EVPN). Only in default instance.
111 */
112 struct hash *vni_table;
2853fed6 113
d62a17ae 114 /*
2853fed6 115 * Whether EVPN is enabled or not. Only in default instance.
d62a17ae 116 */
117 int advertise_all_vni;
118
1a98c087
MK
119 /*
120 * Whether we are advertising g/w macip in EVPN or not.
2853fed6 121 * Only in default instance.
1a98c087
MK
122 */
123 int advertise_gw_macip;
124
b7cfce93
MK
125 /* l3-vni info */
126 vni_t l3vni;
127
fbac9605
DS
128 /*
129 * Flooding mechanism for BUM packets for VxLAN-EVPN.
130 */
131 enum vxlan_flood_control vxlan_flood_ctrl;
132
d62a17ae 133 /* Route Installs */
134 uint64_t installs;
135 uint64_t removals;
97f5b441
MS
136 uint64_t installs_queued;
137 uint64_t removals_queued;
d62a17ae 138 uint64_t neigh_updates;
139 uint64_t lsp_installs;
140 uint64_t lsp_removals;
7c551956 141};
ac6eebce 142#define PROTO_RM_NAME(zvrf, afi, rtype) zvrf->proto_rm[afi][rtype].name
143#define NHT_RM_NAME(zvrf, afi, rtype) zvrf->nht_rm[afi][rtype].name
144#define PROTO_RM_MAP(zvrf, afi, rtype) zvrf->proto_rm[afi][rtype].map
145#define NHT_RM_MAP(zvrf, afi, rtype) zvrf->nht_rm[afi][rtype].map
7c551956 146
214e5c26 147/*
148 * special macro to allow us to get the correct zebra_vrf
149 */
150#define ZEBRA_DECLVAR_CONTEXT(A, B) \
151 struct vrf *A = VTY_GET_CONTEXT(vrf); \
152 struct zebra_vrf *B = (A) ? A->info : vrf_info_lookup(VRF_DEFAULT)
153
d62a17ae 154static inline vrf_id_t zvrf_id(struct zebra_vrf *zvrf)
661512bf 155{
2c7d4021
PG
156 if (!zvrf || !zvrf->vrf)
157 return VRF_UNKNOWN;
d62a17ae 158 return zvrf->vrf->vrf_id;
661512bf
RW
159}
160
81c9005f
PG
161static inline const char *zvrf_ns_name(struct zebra_vrf *zvrf)
162{
163 if (!zvrf->vrf || !zvrf->vrf->ns_ctxt)
164 return NULL;
165 return ns_get_name((struct ns *)zvrf->vrf->ns_ctxt);
166}
167
d62a17ae 168static inline const char *zvrf_name(struct zebra_vrf *zvrf)
661512bf 169{
d62a17ae 170 return zvrf->vrf->name;
661512bf
RW
171}
172
81c9005f
PG
173static inline bool zvrf_is_active(struct zebra_vrf *zvrf)
174{
175 return zvrf->vrf->status & VRF_ACTIVE;
176}
177
d62a17ae 178struct route_table *zebra_vrf_table_with_table_id(afi_t afi, safi_t safi,
179 vrf_id_t vrf_id,
d7c0a89a 180 uint32_t table_id);
d62a17ae 181
d62a17ae 182extern void zebra_vrf_update_all(struct zserv *client);
183extern struct zebra_vrf *zebra_vrf_lookup_by_id(vrf_id_t vrf_id);
184extern struct zebra_vrf *zebra_vrf_lookup_by_name(const char *);
185extern struct zebra_vrf *zebra_vrf_alloc(void);
186extern struct route_table *zebra_vrf_table(afi_t, safi_t, vrf_id_t);
7e24fdf3 187
d62a17ae 188extern struct route_table *
d7c0a89a 189zebra_vrf_other_route_table(afi_t afi, uint32_t table_id, vrf_id_t vrf_id);
22bd3e94 190extern int zebra_vrf_has_config(struct zebra_vrf *zvrf);
d62a17ae 191extern void zebra_vrf_init(void);
5335613b
DS
192
193extern void zebra_rtable_node_cleanup(struct route_table *table,
194 struct route_node *node);
736d41ad 195#endif /* ZEBRA_VRF_H */