]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt.h
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / zebra / rt.h
CommitLineData
718e3744 1/*
2 * kernel routing table update prototype.
3 * Copyright (C) 1998 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#ifndef _ZEBRA_RT_H
23#define _ZEBRA_RT_H
24
ec1a4283 25#include "prefix.h"
26#include "if.h"
2232a77c 27#include "vlan.h"
13d60d35 28#include "vxlan.h"
5c78b3d0 29#include "zebra/rib.h"
40c7bdb0 30#include "zebra/zebra_ns.h"
31#include "zebra/zebra_mpls.h"
ea1c14f6 32#include "zebra/zebra_dplane.h"
1e885672 33
51e94aa7
EDP
34#ifdef __cplusplus
35extern "C" {
36#endif
37
66cb1845
SW
38#define RKERNEL_ROUTE(type) ((type) == ZEBRA_ROUTE_KERNEL)
39
40#define RSYSTEM_ROUTE(type) \
41 ((RKERNEL_ROUTE(type)) || (type) == ZEBRA_ROUTE_CONNECT)
3cdba47a 42
f820d025 43
7cdb1a84 44/*
f820d025
SW
45 * Update or delete a route, nexthop, LSP, pseudowire, or vxlan MAC from the
46 * kernel, using info from a dataplane context.
7cdb1a84 47 */
25779064
MS
48extern enum zebra_dplane_result kernel_route_update(
49 struct zebra_dplane_ctx *ctx);
7cdb1a84 50
f820d025
SW
51extern enum zebra_dplane_result
52kernel_nexthop_update(struct zebra_dplane_ctx *ctx);
53
16c628de
MS
54extern enum zebra_dplane_result kernel_lsp_update(
55 struct zebra_dplane_ctx *ctx);
56
97d8d05a
MS
57enum zebra_dplane_result kernel_pw_update(struct zebra_dplane_ctx *ctx);
58
64168803
MS
59enum zebra_dplane_result kernel_address_update_ctx(
60 struct zebra_dplane_ctx *ctx);
61
036d93c0
MS
62enum zebra_dplane_result kernel_mac_update_ctx(struct zebra_dplane_ctx *ctx);
63
931fa60c
MS
64enum zebra_dplane_result kernel_neigh_update_ctx(struct zebra_dplane_ctx *ctx);
65
996c9314
LB
66extern int kernel_neigh_update(int cmd, int ifindex, uint32_t addr, char *lla,
67 int llalen, ns_id_t ns_id);
e0ae31b8
DS
68extern int kernel_interface_set_master(struct interface *master,
69 struct interface *slave);
4a83e7a0 70
d62a17ae 71extern int mpls_kernel_init(void);
72
594c2878 73extern uint32_t kernel_get_speed(struct interface *ifp, int *error);
43b5cc5e 74extern int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *mroute);
2232a77c 75
05f7f5db
DS
76/*
77 * Southbound Initialization routines to get initial starting
78 * state.
79 */
80extern void interface_list(struct zebra_ns *zns);
81extern void kernel_init(struct zebra_ns *zns);
62b8bb7a 82extern void kernel_terminate(struct zebra_ns *zns, bool complete);
05f7f5db
DS
83extern void macfdb_read(struct zebra_ns *zns);
84extern void macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
85 struct interface *br_if);
67fb9374
CS
86extern void macfdb_read_specific_mac(struct zebra_ns *zns,
87 struct interface *br_if,
88 struct ethaddr *mac, vlanid_t vid);
05f7f5db
DS
89extern void neigh_read(struct zebra_ns *zns);
90extern void neigh_read_for_vlan(struct zebra_ns *zns, struct interface *ifp);
67fb9374
CS
91extern void neigh_read_specific_ip(struct ipaddr *ip,
92 struct interface *vlan_if);
05f7f5db
DS
93extern void route_read(struct zebra_ns *zns);
94
51e94aa7
EDP
95#ifdef __cplusplus
96}
97#endif
98
718e3744 99#endif /* _ZEBRA_RT_H */