]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_router.c
zebra: Add `--asic-offload` command
[mirror_frr.git] / zebra / zebra_router.c
CommitLineData
89272910
DS
1/* Zebra Router Code.
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#include "zebra.h"
23
1485bbe7
DS
24#include <pthread.h>
25#include "lib/frratomic.h"
26
89272910
DS
27#include "zebra_router.h"
28#include "zebra_memory.h"
7f0ea8a4 29#include "zebra_pbr.h"
6548050a 30#include "zebra_vxlan.h"
df395600 31#include "zebra_mlag.h"
0eb97b86 32#include "zebra_nhg.h"
526052fb 33#include "debug.h"
89272910 34
c1344b54
DL
35DEFINE_MTYPE_STATIC(ZEBRA, RIB_TABLE_INFO, "RIB table info")
36
b3f2b590
DS
37struct zebra_router zrouter = {
38 .multipath_num = MULTIPATH_NUM,
526052fb 39 .ipv4_multicast_mode = MCAST_NO_CONFIG,
b3f2b590 40};
89272910
DS
41
42static inline int
43zebra_router_table_entry_compare(const struct zebra_router_table *e1,
44 const struct zebra_router_table *e2);
45
46RB_GENERATE(zebra_router_table_head, zebra_router_table,
47 zebra_router_table_entry, zebra_router_table_entry_compare);
48
49
50static inline int
51zebra_router_table_entry_compare(const struct zebra_router_table *e1,
52 const struct zebra_router_table *e2)
53{
54 if (e1->tableid < e2->tableid)
55 return -1;
56 if (e1->tableid > e2->tableid)
57 return 1;
58 if (e1->ns_id < e2->ns_id)
59 return -1;
60 if (e1->ns_id > e2->ns_id)
61 return 1;
62 if (e1->afi < e2->afi)
63 return -1;
64 if (e1->afi > e2->afi)
65 return 1;
66 return (e1->safi - e2->safi);
67}
68
9d86e091
CS
69struct zebra_router_table *zebra_router_find_zrt(struct zebra_vrf *zvrf,
70 uint32_t tableid, afi_t afi,
71 safi_t safi)
72{
73 struct zebra_router_table finder;
74 struct zebra_router_table *zrt;
75
76 memset(&finder, 0, sizeof(finder));
77 finder.afi = afi;
78 finder.safi = safi;
79 finder.tableid = tableid;
80 finder.ns_id = zvrf->zns->ns_id;
81 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
82
83 return zrt;
84}
89272910
DS
85
86struct route_table *zebra_router_find_table(struct zebra_vrf *zvrf,
87 uint32_t tableid, afi_t afi,
88 safi_t safi)
89{
90 struct zebra_router_table finder;
91 struct zebra_router_table *zrt;
92
93 memset(&finder, 0, sizeof(finder));
94 finder.afi = afi;
95 finder.safi = safi;
96 finder.tableid = tableid;
97 finder.ns_id = zvrf->zns->ns_id;
98 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
99
100 if (zrt)
101 return zrt->table;
102 else
103 return NULL;
104}
105
106struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf,
107 uint32_t tableid, afi_t afi,
108 safi_t safi)
109{
110 struct zebra_router_table finder;
111 struct zebra_router_table *zrt;
630d5962 112 struct rib_table_info *info;
89272910
DS
113
114 memset(&finder, 0, sizeof(finder));
115 finder.afi = afi;
116 finder.safi = safi;
117 finder.tableid = tableid;
118 finder.ns_id = zvrf->zns->ns_id;
119 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
120
121 if (zrt)
122 return zrt->table;
123
124 zrt = XCALLOC(MTYPE_ZEBRA_NS, sizeof(*zrt));
125 zrt->tableid = tableid;
126 zrt->afi = afi;
99b2c423 127 zrt->safi = safi;
89272910
DS
128 zrt->ns_id = zvrf->zns->ns_id;
129 zrt->table =
130 (afi == AFI_IP6) ? srcdest_table_init() : route_table_init();
131
132 info = XCALLOC(MTYPE_RIB_TABLE_INFO, sizeof(*info));
133 info->zvrf = zvrf;
134 info->afi = afi;
ea66cec4 135 info->safi = safi;
b62983cf 136 info->table_id = tableid;
89272910
DS
137 route_table_set_info(zrt->table, info);
138 zrt->table->cleanup = zebra_rtable_node_cleanup;
139
140 RB_INSERT(zebra_router_table_head, &zrouter.tables, zrt);
141 return zrt->table;
142}
143
ac5aa23f
DS
144void zebra_router_show_table_summary(struct vty *vty)
145{
146 struct zebra_router_table *zrt;
147
148 vty_out(vty,
149 "VRF NS ID VRF ID AFI SAFI Table Count\n");
150 vty_out(vty,
151 "---------------------------------------------------------------------------\n");
152 RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) {
630d5962 153 struct rib_table_info *info = route_table_get_info(zrt->table);
ac5aa23f
DS
154
155 vty_out(vty, "%-16s%5d %9d %7s %15s %8d %10lu\n", info->zvrf->vrf->name,
156 zrt->ns_id, info->zvrf->vrf->vrf_id,
157 afi2str(zrt->afi), safi2str(zrt->safi),
158 zrt->tableid,
159 zrt->table->count);
160 }
161}
162
89272910
DS
163void zebra_router_sweep_route(void)
164{
165 struct zebra_router_table *zrt;
166
167 RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) {
168 if (zrt->ns_id != NS_DEFAULT)
169 continue;
170 rib_sweep_table(zrt->table);
171 }
172}
173
38e40db1
SW
174void zebra_router_sweep_nhgs(void)
175{
176 zebra_nhg_sweep_table(zrouter.nhgs_id);
177}
178
89272910
DS
179static void zebra_router_free_table(struct zebra_router_table *zrt)
180{
181 void *table_info;
182
89272910
DS
183 table_info = route_table_get_info(zrt->table);
184 route_table_finish(zrt->table);
bd4fb615
DS
185 RB_REMOVE(zebra_router_table_head, &zrouter.tables, zrt);
186
89272910
DS
187 XFREE(MTYPE_RIB_TABLE_INFO, table_info);
188 XFREE(MTYPE_ZEBRA_NS, zrt);
189}
190
bd4fb615
DS
191void zebra_router_release_table(struct zebra_vrf *zvrf, uint32_t tableid,
192 afi_t afi, safi_t safi)
193{
194 struct zebra_router_table finder;
195 struct zebra_router_table *zrt;
196
197 memset(&finder, 0, sizeof(finder));
198 finder.afi = afi;
199 finder.safi = safi;
200 finder.tableid = tableid;
201 finder.ns_id = zvrf->zns->ns_id;
202 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
203
204 if (!zrt)
205 return;
206
207 zebra_router_free_table(zrt);
208}
209
1485bbe7
DS
210uint32_t zebra_router_get_next_sequence(void)
211{
212 return 1
213 + atomic_fetch_add_explicit(&zrouter.sequence_num, 1,
214 memory_order_relaxed);
215}
216
526052fb
DS
217void multicast_mode_ipv4_set(enum multicast_mode mode)
218{
219 if (IS_ZEBRA_DEBUG_RIB)
220 zlog_debug("%s: multicast lookup mode set (%d)", __func__,
221 mode);
222 zrouter.ipv4_multicast_mode = mode;
223}
224
225enum multicast_mode multicast_mode_ipv4_get(void)
226{
227 return zrouter.ipv4_multicast_mode;
228}
229
89272910
DS
230void zebra_router_terminate(void)
231{
232 struct zebra_router_table *zrt, *tmp;
233
8a88f815 234 RB_FOREACH_SAFE (zrt, zebra_router_table_head, &zrouter.tables, tmp)
89272910 235 zebra_router_free_table(zrt);
7f0ea8a4 236
489a9614 237 work_queue_free_and_null(&zrouter.ribq);
ea45a4e7 238 meta_queue_free(zrouter.mq);
489a9614 239
6548050a 240 zebra_vxlan_disable();
df395600
DS
241 zebra_mlag_terminate();
242
c25c3ea5
SW
243 /* Free NHE in ID table only since it has unhashable entries as well */
244 hash_clean(zrouter.nhgs_id, zebra_nhg_hash_free);
d9f5b2f5 245 hash_free(zrouter.nhgs_id);
c25c3ea5
SW
246 hash_clean(zrouter.nhgs, NULL);
247 hash_free(zrouter.nhgs);
d9f5b2f5 248
7f0ea8a4
DS
249 hash_clean(zrouter.rules_hash, zebra_pbr_rules_free);
250 hash_free(zrouter.rules_hash);
62f20a52
DS
251
252 hash_clean(zrouter.ipset_entry_hash, zebra_pbr_ipset_entry_free),
253 hash_clean(zrouter.ipset_hash, zebra_pbr_ipset_free);
254 hash_free(zrouter.ipset_hash);
255 hash_free(zrouter.ipset_entry_hash);
256 hash_clean(zrouter.iptable_hash, zebra_pbr_iptable_free);
257 hash_free(zrouter.iptable_hash);
89272910
DS
258}
259
e4876266
DS
260bool zebra_router_notify_on_ack(void)
261{
262 return !zrouter.asic_offloaded || zrouter.notify_on_ack;
263}
264
265void zebra_router_init(bool asic_offload, bool notify_on_ack)
89272910 266{
1485bbe7
DS
267 zrouter.sequence_num = 0;
268
5ec5a716 269 zrouter.packets_to_process = ZEBRA_ZAPI_PACKETS_TO_PROCESS;
b3d43ff4 270
311c15ee
DS
271 zrouter.rtadv_sock = -1;
272
6548050a 273 zebra_vxlan_init();
df395600
DS
274 zebra_mlag_init();
275
7f0ea8a4
DS
276 zrouter.rules_hash = hash_create_size(8, zebra_pbr_rules_hash_key,
277 zebra_pbr_rules_hash_equal,
278 "Rules Hash");
62f20a52
DS
279
280 zrouter.ipset_hash =
281 hash_create_size(8, zebra_pbr_ipset_hash_key,
282 zebra_pbr_ipset_hash_equal, "IPset Hash");
283
284 zrouter.ipset_entry_hash = hash_create_size(
285 8, zebra_pbr_ipset_entry_hash_key,
286 zebra_pbr_ipset_entry_hash_equal, "IPset Hash Entry");
287
288 zrouter.iptable_hash = hash_create_size(8, zebra_pbr_iptable_hash_key,
289 zebra_pbr_iptable_hash_equal,
290 "IPtable Hash Entry");
69171da2
DS
291
292 zrouter.nhgs =
293 hash_create_size(8, zebra_nhg_hash_key, zebra_nhg_hash_equal,
294 "Zebra Router Nexthop Groups");
a95b8020 295 zrouter.nhgs_id =
d9f5b2f5 296 hash_create_size(8, zebra_nhg_id_key, zebra_nhg_hash_id_equal,
a95b8020 297 "Zebra Router Nexthop Groups ID index");
4c56ce1c 298
e4876266
DS
299 zrouter.asic_offloaded = asic_offload;
300 zrouter.notify_on_ack = notify_on_ack;
89272910 301}