]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt.h
zebra: Use correct parameter order for table lookup up.
[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
7cdb1a84 43/*
97d8d05a 44 * Update or delete a route, LSP, or pseudowire from the kernel,
7cdb1a84
MS
45 * using info from a dataplane context.
46 */
25779064
MS
47extern enum zebra_dplane_result kernel_route_update(
48 struct zebra_dplane_ctx *ctx);
7cdb1a84 49
16c628de
MS
50extern enum zebra_dplane_result kernel_lsp_update(
51 struct zebra_dplane_ctx *ctx);
52
97d8d05a
MS
53enum zebra_dplane_result kernel_pw_update(struct zebra_dplane_ctx *ctx);
54
64168803
MS
55enum zebra_dplane_result kernel_address_update_ctx(
56 struct zebra_dplane_ctx *ctx);
57
996c9314
LB
58extern int kernel_neigh_update(int cmd, int ifindex, uint32_t addr, char *lla,
59 int llalen, ns_id_t ns_id);
e0ae31b8
DS
60extern int kernel_interface_set_master(struct interface *master,
61 struct interface *slave);
4a83e7a0 62
d62a17ae 63extern int mpls_kernel_init(void);
64
dc7b3cae 65extern uint32_t kernel_get_speed(struct interface *ifp);
43b5cc5e 66extern int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *mroute);
d62a17ae 67extern int kernel_add_vtep(vni_t vni, struct interface *ifp,
68 struct in_addr *vtep_ip);
69extern int kernel_del_vtep(vni_t vni, struct interface *ifp,
70 struct in_addr *vtep_ip);
71extern int kernel_add_mac(struct interface *ifp, vlanid_t vid,
72 struct ethaddr *mac, struct in_addr vtep_ip,
a37f4598 73 bool sticky);
d62a17ae 74extern int kernel_del_mac(struct interface *ifp, vlanid_t vid,
d63c1b18 75 struct ethaddr *mac, struct in_addr vtep_ip);
d62a17ae 76
77extern int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
68e33151 78 struct ethaddr *mac, uint8_t flags);
d62a17ae 79extern int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip);
6fe2b0e6
CS
80extern int kernel_upd_neigh(struct interface *ifp, struct ipaddr *ip,
81 struct ethaddr *mac, uint8_t flags, uint16_t state);
2232a77c 82
05f7f5db
DS
83/*
84 * Southbound Initialization routines to get initial starting
85 * state.
86 */
87extern void interface_list(struct zebra_ns *zns);
88extern void kernel_init(struct zebra_ns *zns);
62b8bb7a 89extern void kernel_terminate(struct zebra_ns *zns, bool complete);
05f7f5db
DS
90extern void macfdb_read(struct zebra_ns *zns);
91extern void macfdb_read_for_bridge(struct zebra_ns *zns, struct interface *ifp,
92 struct interface *br_if);
67fb9374
CS
93extern void macfdb_read_specific_mac(struct zebra_ns *zns,
94 struct interface *br_if,
95 struct ethaddr *mac, vlanid_t vid);
05f7f5db
DS
96extern void neigh_read(struct zebra_ns *zns);
97extern void neigh_read_for_vlan(struct zebra_ns *zns, struct interface *ifp);
67fb9374
CS
98extern void neigh_read_specific_ip(struct ipaddr *ip,
99 struct interface *vlan_if);
05f7f5db
DS
100extern void route_read(struct zebra_ns *zns);
101
51e94aa7
EDP
102#ifdef __cplusplus
103}
104#endif
105
718e3744 106#endif /* _ZEBRA_RT_H */