]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rtread_sysctl.c
isisd: implement 'max-area-addresses-mismatch' notification
[mirror_frr.git] / zebra / rtread_sysctl.c
CommitLineData
718e3744 1/*
2 * Kernel routing table read by sysctl function.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra 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 * GNU Zebra 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
718e3744 20 */
21
22#include <zebra.h>
23
ddfeb486
DL
24#if !defined(GNU_LINUX) && !defined(SUNOS_5)
25
718e3744 26#include "memory.h"
4a1ab8e4 27#include "zebra_memory.h"
718e3744 28#include "log.h"
8f7d9fc0 29#include "vrf.h"
718e3744 30
6621ca86 31#include "zebra/rt.h"
ec1a4283 32#include "zebra/kernel_socket.h"
942bf97b 33#include "zebra/zebra_pbr.h"
364fed6b 34#include "zebra/zebra_errors.h"
6621ca86 35
718e3744 36/* Kernel routing table read up by sysctl function. */
d62a17ae 37void route_read(struct zebra_ns *zns)
718e3744 38{
d62a17ae 39 caddr_t buf, end, ref;
40 size_t bufsiz;
41 struct rt_msghdr *rtm;
42
718e3744 43#define MIBSIZ 6
d62a17ae 44 int mib[MIBSIZ] = {CTL_NET, PF_ROUTE, 0, 0, NET_RT_DUMP, 0};
45
46 if (zns->ns_id != NS_DEFAULT)
47 return;
48
49 /* Get buffer size. */
50 if (sysctl(mib, MIBSIZ, NULL, &bufsiz, NULL, 0) < 0) {
e914ccbe 51 flog_warn(EC_ZEBRA_SYSCTL_FAILED, "sysctl fail: %s",
9df414fe 52 safe_strerror(errno));
d62a17ae 53 return;
54 }
55
56 /* Allocate buffer. */
57 ref = buf = XMALLOC(MTYPE_TMP, bufsiz);
58
59 /* Read routing table information by calling sysctl(). */
60 if (sysctl(mib, MIBSIZ, buf, &bufsiz, NULL, 0) < 0) {
e914ccbe 61 flog_warn(EC_ZEBRA_SYSCTL_FAILED, "sysctl() fail by %s",
9df414fe 62 safe_strerror(errno));
d62a17ae 63 XFREE(MTYPE_TMP, ref);
64 return;
65 }
66
67 for (end = buf + bufsiz; buf < end; buf += rtm->rtm_msglen) {
68 rtm = (struct rt_msghdr *)buf;
69 /* We must set RTF_DONE here, so rtm_read() doesn't ignore the
70 * message. */
71 SET_FLAG(rtm->rtm_flags, RTF_DONE);
72 rtm_read(rtm);
73 }
74
75 /* Free buffer. */
76 XFREE(MTYPE_TMP, ref);
77
78 return;
718e3744 79}
2232a77c 80
81/* Only implemented for the netlink method. */
d62a17ae 82void macfdb_read(struct zebra_ns *zns)
2232a77c 83{
84}
85
d62a17ae 86void macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
87 struct interface *br_if)
2232a77c 88{
89}
90
d62a17ae 91void neigh_read(struct zebra_ns *zns)
2232a77c 92{
93}
94
d62a17ae 95void neigh_read_for_vlan(struct zebra_ns *zns, struct interface *vlan_if)
2232a77c 96{
97}
ddfeb486 98
942bf97b 99void kernel_read_pbr_rules(struct zebra_ns *zns)
100{
101}
102
ddfeb486 103#endif /* !defined(GNU_LINUX) && !defined(SUNOS_5) */