]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_vxlan.h
zebra, lib: zebra changes for symmetric routing support
[mirror_frr.git] / zebra / zebra_vxlan.h
CommitLineData
13d60d35 1/*
2 * Zebra VxLAN (EVPN) Data structures and definitions
3 * These are public definitions referenced by other files.
4 * Copyright (C) 2016, 2017 Cumulus Networks, Inc.
5 *
6 * This file is part of FRR.
7 *
8 * FRR is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * FRR is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with FRR; see the file COPYING. If not, write to the Free
20 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 * 02111-1307, USA.
22 */
23
24#ifndef _ZEBRA_VXLAN_H
25#define _ZEBRA_VXLAN_H
26
27#include <zebra.h>
28
29#include "linklist.h"
30#include "if.h"
31#include "vlan.h"
32#include "vxlan.h"
33
13d60d35 34#include "zebra/zebra_vrf.h"
35
36/* Is EVPN enabled? */
37#define EVPN_ENABLED(zvrf) (zvrf)->advertise_all_vni
2853fed6 38static inline int
39is_evpn_enabled()
40{
41 struct zebra_vrf *zvrf = NULL;
42 zvrf = zebra_vrf_lookup_by_id(VRF_DEFAULT);
43 return zvrf ? zvrf->advertise_all_vni : 0;
44}
45
13d60d35 46
47/* VxLAN interface change flags of interest. */
48#define ZEBRA_VXLIF_LOCAL_IP_CHANGE 0x1
49#define ZEBRA_VXLIF_MASTER_CHANGE 0x2
50#define ZEBRA_VXLIF_VLAN_CHANGE 0x4
51
cd233079
CS
52#define VNI_STR_LEN 32
53
b7cfce93 54extern int zebra_vxlan_vrf_delete(struct zebra_vrf *);
d62a17ae 55extern void zebra_vxlan_print_macs_vni(struct vty *vty, struct zebra_vrf *zvrf,
cd233079 56 vni_t vni, u_char use_json);
d62a17ae 57extern void zebra_vxlan_print_macs_all_vni(struct vty *vty,
cd233079
CS
58 struct zebra_vrf *zvrf,
59 u_char use_json);
d62a17ae 60extern void zebra_vxlan_print_macs_all_vni_vtep(struct vty *vty,
61 struct zebra_vrf *zvrf,
cd233079
CS
62 struct in_addr vtep_ip,
63 u_char use_json);
d62a17ae 64extern void zebra_vxlan_print_specific_mac_vni(struct vty *vty,
65 struct zebra_vrf *zvrf,
66 vni_t vni, struct ethaddr *mac);
67extern void zebra_vxlan_print_macs_vni_vtep(struct vty *vty,
68 struct zebra_vrf *zvrf, vni_t vni,
cd233079
CS
69 struct in_addr vtep_ip,
70 u_char use_json);
d62a17ae 71extern void zebra_vxlan_print_neigh_vni(struct vty *vty, struct zebra_vrf *zvrf,
cd233079 72 vni_t vni, u_char use_json);
d62a17ae 73extern void zebra_vxlan_print_neigh_all_vni(struct vty *vty,
cd233079
CS
74 struct zebra_vrf *zvrf,
75 u_char use_json);
d62a17ae 76extern void zebra_vxlan_print_specific_neigh_vni(struct vty *vty,
77 struct zebra_vrf *zvrf,
cd233079
CS
78 vni_t vni, struct ipaddr *ip,
79 u_char use_json);
d62a17ae 80extern void zebra_vxlan_print_neigh_vni_vtep(struct vty *vty,
81 struct zebra_vrf *zvrf, vni_t vni,
cd233079
CS
82 struct in_addr vtep_ip,
83 u_char use_json);
d62a17ae 84extern void zebra_vxlan_print_vni(struct vty *vty, struct zebra_vrf *zvrf,
cd233079
CS
85 vni_t vni, u_char use_json);
86extern void zebra_vxlan_print_vnis(struct vty *vty, struct zebra_vrf *zvrf,
87 u_char use_json);
b7cfce93
MK
88extern void zebra_vxlan_print_rmacs_l3vni(struct vty*, vni_t, u_char);
89extern void zebra_vxlan_print_rmacs_all_l3vni(struct vty*, u_char);
90extern void zebra_vxlan_print_nh_l3vni(struct vty*, vni_t, u_char);
91extern void zebra_vxlan_print_nh_all_l3vni(struct vty*, u_char);
92extern void zebra_vxlan_print_l3vni(struct vty *vty, vni_t vni,
93 u_char use_json);
94extern void zebra_vxlan_print_l3vnis(struct vty *vty,
95 u_char use_json);
cec2e17d 96
1a98c087
MK
97extern int zebra_vxlan_add_del_gw_macip(struct interface *ifp, struct prefix *p,
98 int add);
d62a17ae 99extern int zebra_vxlan_svi_up(struct interface *ifp, struct interface *link_if);
100extern int zebra_vxlan_svi_down(struct interface *ifp,
101 struct interface *link_if);
102extern int zebra_vxlan_local_neigh_add_update(
103 struct interface *ifp, struct interface *link_if, struct ipaddr *ip,
104 struct ethaddr *macaddr, u_int16_t state, u_char ext_learned);
105extern int zebra_vxlan_local_neigh_del(struct interface *ifp,
106 struct interface *link_if,
107 struct ipaddr *ip);
e4bd522a 108extern int zebra_vxlan_remote_macip_add(struct zserv *client,
d62a17ae 109 u_short length, struct zebra_vrf *zvrf);
e4bd522a 110extern int zebra_vxlan_remote_macip_del(struct zserv *client,
d62a17ae 111 u_short length, struct zebra_vrf *zvrf);
112extern int zebra_vxlan_local_mac_add_update(struct interface *ifp,
113 struct interface *br_if,
114 struct ethaddr *mac, vlanid_t vid,
115 u_char sticky);
116extern int zebra_vxlan_local_mac_del(struct interface *ifp,
117 struct interface *br_if,
118 struct ethaddr *mac, vlanid_t vid);
119extern int zebra_vxlan_check_readd_remote_mac(struct interface *ifp,
120 struct interface *br_if,
121 struct ethaddr *mac,
122 vlanid_t vid);
123extern int zebra_vxlan_check_del_local_mac(struct interface *ifp,
124 struct interface *br_if,
125 struct ethaddr *mac, vlanid_t vid);
126extern int zebra_vxlan_if_up(struct interface *ifp);
127extern int zebra_vxlan_if_down(struct interface *ifp);
128extern int zebra_vxlan_if_add(struct interface *ifp);
129extern int zebra_vxlan_if_update(struct interface *ifp, u_int16_t chgflags);
130extern int zebra_vxlan_if_del(struct interface *ifp);
e4bd522a 131extern int zebra_vxlan_remote_vtep_add(struct zserv *client,
d62a17ae 132 u_short length, struct zebra_vrf *zvrf);
e4bd522a 133extern int zebra_vxlan_remote_vtep_del(struct zserv *client,
d62a17ae 134 u_short length, struct zebra_vrf *zvrf);
e4bd522a 135extern int zebra_vxlan_advertise_gw_macip(struct zserv *client,
1a98c087
MK
136 u_short length,
137 struct zebra_vrf *zvrf);
e4bd522a 138extern int zebra_vxlan_advertise_all_vni(struct zserv *client,
d62a17ae 139 u_short length,
140 struct zebra_vrf *zvrf);
b7cfce93
MK
141extern int zebra_vxlan_process_vrf_vni_cmd(struct zebra_vrf*, vni_t, char*,
142 int);
d62a17ae 143extern void zebra_vxlan_init_tables(struct zebra_vrf *zvrf);
144extern void zebra_vxlan_close_tables(struct zebra_vrf *);
b7cfce93
MK
145extern void zebra_vxlan_ns_init(struct zebra_ns *zns);
146extern void zebra_vxlan_ns_disable(struct zebra_ns *zns);
13d60d35 147
148#endif /* _ZEBRA_VXLAN_H */