]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_router.h
add cplusplus guards to all zebra headers
[mirror_frr.git] / zebra / zebra_router.h
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
25 #include "lib/mlag.h"
26
27 #include "zebra/zebra_ns.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
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
39 struct 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 };
49 RB_HEAD(zebra_router_table_head, zebra_router_table);
50 RB_PROTOTYPE(zebra_router_table_head, zebra_router_table,
51 zebra_router_table_entry, zebra_router_table_entry_compare)
52
53 struct 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
65 struct zebra_router {
66 /* Thread master */
67 struct thread_master *master;
68
69 /* Lists of clients who have connected to us */
70 struct list *client_list;
71
72 struct zebra_router_table_head tables;
73
74 /* L3-VNI hash table (for EVPN). Only in default instance */
75 struct hash *l3vni_table;
76
77 struct hash *rules_hash;
78
79 struct hash *ipset_hash;
80
81 struct hash *ipset_entry_hash;
82
83 struct hash *iptable_hash;
84
85 #if defined(HAVE_RTADV)
86 struct rtadv rtadv;
87 #endif /* HAVE_RTADV */
88
89 /* A sequence number used for tracking routes */
90 _Atomic uint32_t sequence_num;
91
92 /* The default table used for this router */
93 uint32_t rtm_table_default;
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;
99
100 /* Meta Queue Information */
101 struct meta_queue *mq;
102
103 /* LSP work queue */
104 struct work_queue *lsp_process_q;
105
106 #define ZEBRA_ZAPI_PACKETS_TO_PROCESS 1000
107 _Atomic uint32_t packets_to_process;
108
109 /* Mlag information for the router */
110 struct zebra_mlag_info mlag_info;
111 };
112
113 extern struct zebra_router zrouter;
114
115 extern void zebra_router_init(void);
116 extern void zebra_router_terminate(void);
117
118 extern struct route_table *zebra_router_find_table(struct zebra_vrf *zvrf,
119 uint32_t tableid, afi_t afi,
120 safi_t safi);
121 extern struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf,
122 uint32_t tableid, afi_t afi,
123 safi_t safi);
124 extern void zebra_router_release_table(struct zebra_vrf *zvrf, uint32_t tableid,
125 afi_t afi, safi_t safi);
126
127 extern int zebra_router_config_write(struct vty *vty);
128
129 extern unsigned long zebra_router_score_proto(uint8_t proto,
130 unsigned short instance);
131 extern void zebra_router_sweep_route(void);
132
133 extern void zebra_router_show_table_summary(struct vty *vty);
134
135 extern uint32_t zebra_router_get_next_sequence(void);
136
137 #ifdef __cplusplus
138 }
139 #endif
140
141 #endif