]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt.h
zebra: Implement call back for route install/delete success/fail
[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"
ec1a4283 32
b33803d7
DS
33/*
34 * Philosophy Note:
35 *
36 * Flags being SET/UNSET do not belong in the South Bound
37 * Interface. This Setting belongs at the calling level
38 * because we can and will have multiple different interfaces
39 * and we will have potentially multiple different
40 * modules/filters to call. As such Setting/Unsetting
41 * success failure should be handled by the caller.
42 */
43
0c555cc6
DS
44
45enum southbound_results {
46 SOUTHBOUND_INSTALL_SUCCESS,
47 SOUTHBOUND_INSTALL_FAILURE,
48 SOUTHBOUND_DELETE_SUCCESS,
49 SOUTHBOUND_DELETE_FAILURE,
50};
51
52/*
53 * Install/delete the specified prefix p from the kernel
54 *
55 * old = NULL, new = pointer - Install new
56 * old = pointer, new = pointer - Route replace Old w/ New
57 * old = pointer, new = NULL, - Route Delete
58 *
59 * Please note not all kernels support route replace
60 * semantics so we will end up with a delete than
61 * a re-add.
62 */
63extern void kernel_route_rib(struct prefix *p, struct prefix *src_p,
64 struct route_entry *old, struct route_entry *new);
65
66/*
67 * So route install/failure may not be immediately known
68 * so let's separate it out and allow the result to
69 * be passed back up.
70 */
71extern void kernel_route_rib_pass_fail(struct prefix *p,
72 struct route_entry *re,
73 enum southbound_results res);
d62a17ae 74
75extern int kernel_address_add_ipv4(struct interface *, struct connected *);
76extern int kernel_address_delete_ipv4(struct interface *, struct connected *);
77extern int kernel_neigh_update(int, int, uint32_t, char *, int);
e0ae31b8
DS
78extern int kernel_interface_set_master(struct interface *master,
79 struct interface *slave);
d62a17ae 80extern int kernel_add_lsp(zebra_lsp_t *);
81extern int kernel_upd_lsp(zebra_lsp_t *);
82extern int kernel_del_lsp(zebra_lsp_t *);
83extern int mpls_kernel_init(void);
84
43b5cc5e 85extern int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *mroute);
d62a17ae 86extern int kernel_add_vtep(vni_t vni, struct interface *ifp,
87 struct in_addr *vtep_ip);
88extern int kernel_del_vtep(vni_t vni, struct interface *ifp,
89 struct in_addr *vtep_ip);
90extern int kernel_add_mac(struct interface *ifp, vlanid_t vid,
91 struct ethaddr *mac, struct in_addr vtep_ip,
92 u_char sticky);
93extern int kernel_del_mac(struct interface *ifp, vlanid_t vid,
94 struct ethaddr *mac, struct in_addr vtep_ip,
95 int local);
96
97extern int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
98 struct ethaddr *mac);
99extern int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip);
2232a77c 100
718e3744 101#endif /* _ZEBRA_RT_H */