]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_router.c
Merge pull request #3235 from opensourcerouting/buildfoo-20181024
[mirror_frr.git] / zebra / zebra_router.c
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
24 #include "zebra_router.h"
25 #include "zebra_memory.h"
26 #include "zebra_pbr.h"
27
28 struct zebra_router zrouter;
29
30 static inline int
31 zebra_router_table_entry_compare(const struct zebra_router_table *e1,
32 const struct zebra_router_table *e2);
33
34 RB_GENERATE(zebra_router_table_head, zebra_router_table,
35 zebra_router_table_entry, zebra_router_table_entry_compare);
36
37
38 static inline int
39 zebra_router_table_entry_compare(const struct zebra_router_table *e1,
40 const struct zebra_router_table *e2)
41 {
42 if (e1->tableid < e2->tableid)
43 return -1;
44 if (e1->tableid > e2->tableid)
45 return 1;
46 if (e1->ns_id < e2->ns_id)
47 return -1;
48 if (e1->ns_id > e2->ns_id)
49 return 1;
50 if (e1->afi < e2->afi)
51 return -1;
52 if (e1->afi > e2->afi)
53 return 1;
54 return (e1->safi - e2->safi);
55 }
56
57
58 struct route_table *zebra_router_find_table(struct zebra_vrf *zvrf,
59 uint32_t tableid, afi_t afi,
60 safi_t safi)
61 {
62 struct zebra_router_table finder;
63 struct zebra_router_table *zrt;
64
65 memset(&finder, 0, sizeof(finder));
66 finder.afi = afi;
67 finder.safi = safi;
68 finder.tableid = tableid;
69 finder.ns_id = zvrf->zns->ns_id;
70 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
71
72 if (zrt)
73 return zrt->table;
74 else
75 return NULL;
76 }
77
78 struct route_table *zebra_router_get_table(struct zebra_vrf *zvrf,
79 uint32_t tableid, afi_t afi,
80 safi_t safi)
81 {
82 struct zebra_router_table finder;
83 struct zebra_router_table *zrt;
84 rib_table_info_t *info;
85
86 memset(&finder, 0, sizeof(finder));
87 finder.afi = afi;
88 finder.safi = safi;
89 finder.tableid = tableid;
90 finder.ns_id = zvrf->zns->ns_id;
91 zrt = RB_FIND(zebra_router_table_head, &zrouter.tables, &finder);
92
93 if (zrt)
94 return zrt->table;
95
96 zrt = XCALLOC(MTYPE_ZEBRA_NS, sizeof(*zrt));
97 zrt->tableid = tableid;
98 zrt->afi = afi;
99 zrt->ns_id = zvrf->zns->ns_id;
100 zrt->table =
101 (afi == AFI_IP6) ? srcdest_table_init() : route_table_init();
102
103 info = XCALLOC(MTYPE_RIB_TABLE_INFO, sizeof(*info));
104 info->zvrf = zvrf;
105 info->afi = afi;
106 info->safi = SAFI_UNICAST;
107 route_table_set_info(zrt->table, info);
108 zrt->table->cleanup = zebra_rtable_node_cleanup;
109
110 RB_INSERT(zebra_router_table_head, &zrouter.tables, zrt);
111 return zrt->table;
112 }
113
114 unsigned long zebra_router_score_proto(uint8_t proto, unsigned short instance)
115 {
116 struct zebra_router_table *zrt;
117 unsigned long cnt = 0;
118
119 RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) {
120 if (zrt->ns_id != NS_DEFAULT)
121 continue;
122 cnt += rib_score_proto_table(proto, instance, zrt->table);
123 }
124 return cnt;
125 }
126
127 void zebra_router_sweep_route(void)
128 {
129 struct zebra_router_table *zrt;
130
131 RB_FOREACH (zrt, zebra_router_table_head, &zrouter.tables) {
132 if (zrt->ns_id != NS_DEFAULT)
133 continue;
134 rib_sweep_table(zrt->table);
135 }
136 }
137
138 static void zebra_router_free_table(struct zebra_router_table *zrt)
139 {
140 void *table_info;
141
142 rib_close_table(zrt->table);
143
144 table_info = route_table_get_info(zrt->table);
145 route_table_finish(zrt->table);
146 XFREE(MTYPE_RIB_TABLE_INFO, table_info);
147 XFREE(MTYPE_ZEBRA_NS, zrt);
148 }
149
150 void zebra_router_terminate(void)
151 {
152 struct zebra_router_table *zrt, *tmp;
153
154 RB_FOREACH_SAFE (zrt, zebra_router_table_head, &zrouter.tables, tmp) {
155 RB_REMOVE(zebra_router_table_head, &zrouter.tables, zrt);
156 zebra_router_free_table(zrt);
157 }
158
159 hash_clean(zrouter.rules_hash, zebra_pbr_rules_free);
160 hash_free(zrouter.rules_hash);
161
162 hash_clean(zrouter.ipset_entry_hash, zebra_pbr_ipset_entry_free),
163 hash_clean(zrouter.ipset_hash, zebra_pbr_ipset_free);
164 hash_free(zrouter.ipset_hash);
165 hash_free(zrouter.ipset_entry_hash);
166 hash_clean(zrouter.iptable_hash, zebra_pbr_iptable_free);
167 hash_free(zrouter.iptable_hash);
168 }
169
170 void zebra_router_init(void)
171 {
172 zrouter.l3vni_table = NULL;
173
174 zrouter.rules_hash = hash_create_size(8, zebra_pbr_rules_hash_key,
175 zebra_pbr_rules_hash_equal,
176 "Rules Hash");
177
178 zrouter.ipset_hash =
179 hash_create_size(8, zebra_pbr_ipset_hash_key,
180 zebra_pbr_ipset_hash_equal, "IPset Hash");
181
182 zrouter.ipset_entry_hash = hash_create_size(
183 8, zebra_pbr_ipset_entry_hash_key,
184 zebra_pbr_ipset_entry_hash_equal, "IPset Hash Entry");
185
186 zrouter.iptable_hash = hash_create_size(8, zebra_pbr_iptable_hash_key,
187 zebra_pbr_iptable_hash_equal,
188 "IPtable Hash Entry");
189 }