]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_ns.c
Merge branch 'stable/3.0' into tmp-3.0-master-merge
[mirror_frr.git] / zebra / zebra_ns.c
1 /* zebra NS Routines
2 * Copyright (C) 2016 Cumulus Networks, Inc.
3 * Donald Sharp
4 *
5 * This file is part of Quagga.
6 *
7 * Quagga 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 * Quagga 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 along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21 #include "zebra.h"
22
23 #include "lib/ns.h"
24 #include "lib/vrf.h"
25 #include "lib/prefix.h"
26 #include "lib/memory.h"
27
28 #include "rtadv.h"
29 #include "zebra_ns.h"
30 #include "zebra_vrf.h"
31 #include "zebra_memory.h"
32
33 DEFINE_MTYPE(ZEBRA, ZEBRA_NS, "Zebra Name Space")
34
35 struct zebra_ns *dzns;
36
37 struct zebra_ns *zebra_ns_lookup(ns_id_t ns_id)
38 {
39 return dzns;
40 }
41
42 int zebra_ns_enable(ns_id_t ns_id, void **info)
43 {
44 struct zebra_ns *zns = (struct zebra_ns *)(*info);
45
46 #if defined(HAVE_RTADV)
47 rtadv_init(zns);
48 #endif
49
50 zns->if_table = route_table_init();
51 kernel_init(zns);
52 interface_list(zns);
53 route_read(zns);
54
55 return 0;
56 }
57
58 int zebra_ns_disable(ns_id_t ns_id, void **info)
59 {
60 struct zebra_ns *zns = (struct zebra_ns *)(*info);
61
62 route_table_finish(zns->if_table);
63 #if defined(HAVE_RTADV)
64 rtadv_terminate(zns);
65 #endif
66
67 kernel_terminate(zns);
68
69 return 0;
70 }
71
72 int zebra_ns_init(void)
73 {
74 dzns = XCALLOC(MTYPE_ZEBRA_NS, sizeof(struct zebra_ns));
75
76 ns_init();
77
78 zebra_vrf_init();
79
80 zebra_ns_enable(0, (void **)&dzns);
81
82 return 0;
83 }