]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_ns.c
*: reindent
[mirror_frr.git] / zebra / zebra_ns.c
CommitLineData
fe18ee2d
DS
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 *
896014f4
DL
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
fe18ee2d
DS
20 */
21#include "zebra.h"
22
13460c44 23#include "lib/ns.h"
fe18ee2d
DS
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"
7c551956 30#include "zebra_vrf.h"
4a1ab8e4
DL
31#include "zebra_memory.h"
32
d62a17ae 33DEFINE_MTYPE(ZEBRA, ZEBRA_NS, "Zebra Name Space")
fe18ee2d
DS
34
35struct zebra_ns *dzns;
36
d62a17ae 37struct zebra_ns *zebra_ns_lookup(ns_id_t ns_id)
fe18ee2d 38{
d62a17ae 39 return dzns;
fe18ee2d
DS
40}
41
d62a17ae 42int zebra_ns_enable(ns_id_t ns_id, void **info)
fe18ee2d 43{
d62a17ae 44 struct zebra_ns *zns = (struct zebra_ns *)(*info);
fe18ee2d 45
d62a17ae 46#if defined(HAVE_RTADV)
47 rtadv_init(zns);
fe18ee2d
DS
48#endif
49
d62a17ae 50 zns->if_table = route_table_init();
51 kernel_init(zns);
52 interface_list(zns);
53 route_read(zns);
fe18ee2d 54
d62a17ae 55 return 0;
fe18ee2d
DS
56}
57
d62a17ae 58int zebra_ns_disable(ns_id_t ns_id, void **info)
fe18ee2d 59{
d62a17ae 60 struct zebra_ns *zns = (struct zebra_ns *)(*info);
fe18ee2d 61
d62a17ae 62 route_table_finish(zns->if_table);
63#if defined(HAVE_RTADV)
64 rtadv_terminate(zns);
fe18ee2d
DS
65#endif
66
d62a17ae 67 kernel_terminate(zns);
fe18ee2d 68
d62a17ae 69 return 0;
fe18ee2d
DS
70}
71
d62a17ae 72int zebra_ns_init(void)
fe18ee2d 73{
d62a17ae 74 dzns = XCALLOC(MTYPE_ZEBRA_NS, sizeof(struct zebra_ns));
fe18ee2d 75
d62a17ae 76 ns_init();
13460c44 77
d62a17ae 78 zebra_vrf_init();
fe18ee2d 79
d62a17ae 80 zebra_ns_enable(0, (void **)&dzns);
fe18ee2d 81
d62a17ae 82 return 0;
fe18ee2d 83}