]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_ns.c
zebra: Move rules_hash to zrouter
[mirror_frr.git] / zebra / zebra_ns.c
1 /* zebra NS Routines
2 * Copyright (C) 2016 Cumulus Networks, Inc.
3 * Donald Sharp
4 * Copyright (C) 2017/2018 6WIND
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 *
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
21 */
22 #include "zebra.h"
23
24 #include "lib/ns.h"
25 #include "lib/vrf.h"
26 #include "lib/logicalrouter.h"
27 #include "lib/prefix.h"
28 #include "lib/memory.h"
29
30 #include "rtadv.h"
31 #include "zebra_ns.h"
32 #include "zebra_vrf.h"
33 #include "zebra_memory.h"
34 #include "rt.h"
35 #include "zebra_vxlan.h"
36 #include "debug.h"
37 #include "zebra_netns_notify.h"
38 #include "zebra_netns_id.h"
39 #include "zebra_pbr.h"
40 #include "rib.h"
41 #include "table_manager.h"
42
43 extern struct zebra_privs_t zserv_privs;
44
45 DEFINE_MTYPE(ZEBRA, ZEBRA_NS, "Zebra Name Space")
46
47 static struct zebra_ns *dzns;
48
49 static int logicalrouter_config_write(struct vty *vty);
50
51 struct zebra_ns *zebra_ns_lookup(ns_id_t ns_id)
52 {
53 if (ns_id == NS_DEFAULT)
54 return dzns;
55 struct zebra_ns *info = (struct zebra_ns *)ns_info_lookup(ns_id);
56
57 return (info == NULL) ? dzns : info;
58 }
59
60 static struct zebra_ns *zebra_ns_alloc(void)
61 {
62 return XCALLOC(MTYPE_ZEBRA_NS, sizeof(struct zebra_ns));
63 }
64
65 static int zebra_ns_new(struct ns *ns)
66 {
67 struct zebra_ns *zns;
68
69 if (IS_ZEBRA_DEBUG_EVENT)
70 zlog_info("ZNS %s with id %u (created)", ns->name, ns->ns_id);
71
72 zns = zebra_ns_alloc();
73 ns->info = zns;
74 zns->ns = ns;
75
76 /* Do any needed per-NS data structure allocation. */
77 zns->if_table = route_table_init();
78 zebra_vxlan_ns_init(zns);
79
80 return 0;
81 }
82
83 static int zebra_ns_delete(struct ns *ns)
84 {
85 struct zebra_ns *zns = (struct zebra_ns *)ns->info;
86
87 if (IS_ZEBRA_DEBUG_EVENT)
88 zlog_info("ZNS %s with id %u (deleted)", ns->name, ns->ns_id);
89 if (!zns)
90 return 0;
91 XFREE(MTYPE_ZEBRA_NS, zns);
92 return 0;
93 }
94
95 static int zebra_ns_enabled(struct ns *ns)
96 {
97 struct zebra_ns *zns = ns->info;
98
99 if (IS_ZEBRA_DEBUG_EVENT)
100 zlog_info("ZNS %s with id %u (enabled)", ns->name, ns->ns_id);
101 if (!zns)
102 return 0;
103 return zebra_ns_enable(ns->ns_id, (void **)&zns);
104 }
105
106 int zebra_ns_disabled(struct ns *ns)
107 {
108 struct zebra_ns *zns = ns->info;
109
110 if (IS_ZEBRA_DEBUG_EVENT)
111 zlog_info("ZNS %s with id %u (disabled)", ns->name, ns->ns_id);
112 if (!zns)
113 return 0;
114 return zebra_ns_disable(ns->ns_id, (void **)&zns);
115 }
116
117 /* Do global enable actions - open sockets, read kernel config etc. */
118 int zebra_ns_enable(ns_id_t ns_id, void **info)
119 {
120 struct zebra_ns *zns = (struct zebra_ns *)(*info);
121
122 zns->ns_id = ns_id;
123
124 zns->ipset_hash =
125 hash_create_size(8, zebra_pbr_ipset_hash_key,
126 zebra_pbr_ipset_hash_equal, "IPset Hash");
127
128 zns->ipset_entry_hash =
129 hash_create_size(8, zebra_pbr_ipset_entry_hash_key,
130 zebra_pbr_ipset_entry_hash_equal,
131 "IPset Hash Entry");
132
133 zns->iptable_hash =
134 hash_create_size(8, zebra_pbr_iptable_hash_key,
135 zebra_pbr_iptable_hash_equal,
136 "IPtable Hash Entry");
137
138 #if defined(HAVE_RTADV)
139 rtadv_init(zns);
140 #endif
141
142 kernel_init(zns);
143 interface_list(zns);
144 route_read(zns);
145
146 /* Initiate Table Manager per ZNS */
147 table_manager_enable(ns_id);
148
149 return 0;
150 }
151
152 int zebra_ns_disable(ns_id_t ns_id, void **info)
153 {
154 struct zebra_ns *zns = (struct zebra_ns *)(*info);
155
156 hash_clean(zns->ipset_entry_hash,
157 zebra_pbr_ipset_entry_free),
158 hash_clean(zns->ipset_hash, zebra_pbr_ipset_free);
159 hash_free(zns->ipset_hash);
160 hash_free(zns->ipset_entry_hash);
161 hash_clean(zns->iptable_hash,
162 zebra_pbr_iptable_free);
163 hash_free(zns->iptable_hash);
164
165 route_table_finish(zns->if_table);
166 zebra_vxlan_ns_disable(zns);
167 #if defined(HAVE_RTADV)
168 rtadv_terminate(zns);
169 #endif
170
171 kernel_terminate(zns);
172
173 table_manager_disable(zns->ns_id);
174
175 zns->ns_id = NS_DEFAULT;
176
177 return 0;
178 }
179
180
181 int zebra_ns_init(void)
182 {
183 ns_id_t ns_id;
184 ns_id_t ns_id_external;
185
186 dzns = zebra_ns_alloc();
187
188 frr_elevate_privs(&zserv_privs) {
189 ns_id = zebra_ns_id_get_default();
190 }
191 ns_id_external = ns_map_nsid_with_external(ns_id, true);
192 ns_init_management(ns_id_external, ns_id);
193
194 logicalrouter_init(logicalrouter_config_write);
195
196 /* Do any needed per-NS data structure allocation. */
197 dzns->if_table = route_table_init();
198 zebra_vxlan_ns_init(dzns);
199
200 /* Register zebra VRF callbacks, create and activate default VRF. */
201 zebra_vrf_init();
202
203 /* Default NS is activated */
204 zebra_ns_enable(ns_id_external, (void **)&dzns);
205
206 if (vrf_is_backend_netns()) {
207 ns_add_hook(NS_NEW_HOOK, zebra_ns_new);
208 ns_add_hook(NS_ENABLE_HOOK, zebra_ns_enabled);
209 ns_add_hook(NS_DISABLE_HOOK, zebra_ns_disabled);
210 ns_add_hook(NS_DELETE_HOOK, zebra_ns_delete);
211 zebra_ns_notify_parse();
212 zebra_ns_notify_init();
213 }
214
215 return 0;
216 }
217
218 static int logicalrouter_config_write(struct vty *vty)
219 {
220 struct ns *ns;
221 int write = 0;
222
223 RB_FOREACH (ns, ns_head, &ns_tree) {
224 if (ns->ns_id == NS_DEFAULT || ns->name == NULL)
225 continue;
226 vty_out(vty, "logical-router %u netns %s\n", ns->ns_id,
227 ns->name);
228 write = 1;
229 }
230 return write;
231 }
232
233 int zebra_ns_config_write(struct vty *vty, struct ns *ns)
234 {
235 if (ns && ns->name != NULL)
236 vty_out(vty, " netns %s\n", ns->name);
237 return 0;
238 }