]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_router.h
zebra: header changes for l2 vni bum-mcast-grp handling
[mirror_frr.git] / zebra / zebra_router.h
CommitLineData
89272910
DS
1/* Zebra Router header.
2 * Copyright (C) 2018 Cumulus Networks, Inc.
3 * Donald Sharp
4 *
5 * This file is part of FRR.
6 *
7 * FRR is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * FRR is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with FRR; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22#ifndef __ZEBRA_ROUTER_H__
23#define __ZEBRA_ROUTER_H__
24
e96ba9da
DS
25#include "lib/mlag.h"
26
89272910
DS
27#include "zebra/zebra_ns.h"
28
51e94aa7
EDP
29#ifdef __cplusplus
30extern "C" {
31#endif
32
89272910
DS
33/*
34 * This header file contains the idea of a router and as such
35 * owns data that is associated with a router from zebra's
36 * perspective.
37 */
38
39struct zebra_router_table {
40 RB_ENTRY(zebra_router_table) zebra_router_table_entry;
41
42 uint32_t tableid;
43 afi_t afi;
44 safi_t safi;
45 ns_id_t ns_id;
46
47 struct route_table *table;
48};
49RB_HEAD(zebra_router_table_head, zebra_router_table);
50RB_PROTOTYPE(zebra_router_table_head, zebra_router_table,
51 zebra_router_table_entry, zebra_router_table_entry_compare)
52
e96ba9da
DS
53struct zebra_mlag_info {
54 /* Role this zebra router is playing */
55 enum mlag_role role;
56
57 /* The peerlink being used for mlag */
58 char *peerlink;
59 ifindex_t peerlink_ifindex;
60
61 /* The system mac being used */
62 struct ethaddr mac;
63};
64
89272910 65struct zebra_router {
3801e764
DS
66 /* Thread master */
67 struct thread_master *master;
89272910 68
161e9ab7
DS
69 /* Lists of clients who have connected to us */
70 struct list *client_list;
71
89272910 72 struct zebra_router_table_head tables;
7f0ea8a4 73
89272910
DS
74 /* L3-VNI hash table (for EVPN). Only in default instance */
75 struct hash *l3vni_table;
7f0ea8a4
DS
76
77 struct hash *rules_hash;
62f20a52
DS
78
79 struct hash *ipset_hash;
80
81 struct hash *ipset_entry_hash;
82
83 struct hash *iptable_hash;
a3be9fa1
DS
84
85#if defined(HAVE_RTADV)
86 struct rtadv rtadv;
87#endif /* HAVE_RTADV */
1485bbe7
DS
88
89 /* A sequence number used for tracking routes */
90 _Atomic uint32_t sequence_num;
b3d43ff4
DS
91
92 /* The default table used for this router */
93 uint32_t rtm_table_default;
489a9614
DS
94
95 /* rib work queue */
96#define ZEBRA_RIB_PROCESS_HOLD_TIME 10
97#define ZEBRA_RIB_PROCESS_RETRY_TIME 1
98 struct work_queue *ribq;
ea45a4e7
DS
99
100 /* Meta Queue Information */
101 struct meta_queue *mq;
e2353ec2
DS
102
103 /* LSP work queue */
104 struct work_queue *lsp_process_q;
5ec5a716
DS
105
106#define ZEBRA_ZAPI_PACKETS_TO_PROCESS 1000
107 _Atomic uint32_t packets_to_process;
e96ba9da
DS
108
109 /* Mlag information for the router */
110 struct zebra_mlag_info mlag_info;
0fb2ad05
T
111
112 /*
113 * The EVPN instance, if any
114 */
115 struct zebra_vrf *evpn_vrf;
89272910
DS
116};
117
118extern struct zebra_router zrouter;
119
120extern void zebra_router_init(void);
121extern void zebra_router_terminate(void);
122
123extern struct route_table *zebra_router_find_table(struct zebra_vrf *zvrf,
124 uint32_t tableid, afi_t afi,
125 safi_t safi);
126extern struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf,
127 uint32_t tableid, afi_t afi,
128 safi_t safi);
bd4fb615
DS
129extern void zebra_router_release_table(struct zebra_vrf *zvrf, uint32_t tableid,
130 afi_t afi, safi_t safi);
89272910
DS
131
132extern int zebra_router_config_write(struct vty *vty);
133
134extern unsigned long zebra_router_score_proto(uint8_t proto,
135 unsigned short instance);
136extern void zebra_router_sweep_route(void);
ac5aa23f
DS
137
138extern void zebra_router_show_table_summary(struct vty *vty);
1485bbe7
DS
139
140extern uint32_t zebra_router_get_next_sequence(void);
0fb2ad05
T
141
142static inline vrf_id_t zebra_vrf_get_evpn_id(void)
143{
144 return zrouter.evpn_vrf ? zvrf_id(zrouter.evpn_vrf) : VRF_DEFAULT;
145}
146static inline struct zebra_vrf *zebra_vrf_get_evpn(void)
147{
148 return zrouter.evpn_vrf ? zrouter.evpn_vrf
149 : zebra_vrf_lookup_by_id(VRF_DEFAULT);
150}
d074383c 151
51e94aa7
EDP
152#ifdef __cplusplus
153}
154#endif
155
89272910 156#endif