]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_vxlan.h
Merge pull request #1330 from donaldsharp/zclient_shenanigans
[mirror_frr.git] / zebra / zebra_vxlan.h
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
34 #include "zebra/zebra_vrf.h"
35
36 /* Is EVPN enabled? */
37 #define EVPN_ENABLED(zvrf) (zvrf)->advertise_all_vni
38 static inline int
39 is_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
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
52 #define VNI_STR_LEN 32
53
54 extern void zebra_vxlan_print_macs_vni(struct vty *vty, struct zebra_vrf *zvrf,
55 vni_t vni, u_char use_json);
56 extern void zebra_vxlan_print_macs_all_vni(struct vty *vty,
57 struct zebra_vrf *zvrf,
58 u_char use_json);
59 extern void zebra_vxlan_print_macs_all_vni_vtep(struct vty *vty,
60 struct zebra_vrf *zvrf,
61 struct in_addr vtep_ip,
62 u_char use_json);
63 extern void zebra_vxlan_print_specific_mac_vni(struct vty *vty,
64 struct zebra_vrf *zvrf,
65 vni_t vni, struct ethaddr *mac);
66 extern void zebra_vxlan_print_macs_vni_vtep(struct vty *vty,
67 struct zebra_vrf *zvrf, vni_t vni,
68 struct in_addr vtep_ip,
69 u_char use_json);
70 extern void zebra_vxlan_print_neigh_vni(struct vty *vty, struct zebra_vrf *zvrf,
71 vni_t vni, u_char use_json);
72 extern void zebra_vxlan_print_neigh_all_vni(struct vty *vty,
73 struct zebra_vrf *zvrf,
74 u_char use_json);
75 extern void zebra_vxlan_print_specific_neigh_vni(struct vty *vty,
76 struct zebra_vrf *zvrf,
77 vni_t vni, struct ipaddr *ip,
78 u_char use_json);
79 extern void zebra_vxlan_print_neigh_vni_vtep(struct vty *vty,
80 struct zebra_vrf *zvrf, vni_t vni,
81 struct in_addr vtep_ip,
82 u_char use_json);
83 extern void zebra_vxlan_print_vni(struct vty *vty, struct zebra_vrf *zvrf,
84 vni_t vni, u_char use_json);
85 extern void zebra_vxlan_print_vnis(struct vty *vty, struct zebra_vrf *zvrf,
86 u_char use_json);
87
88 extern int zebra_vxlan_add_del_gw_macip(struct interface *ifp, struct prefix *p,
89 int add);
90 extern int zebra_vxlan_svi_up(struct interface *ifp, struct interface *link_if);
91 extern int zebra_vxlan_svi_down(struct interface *ifp,
92 struct interface *link_if);
93 extern int zebra_vxlan_local_neigh_add_update(
94 struct interface *ifp, struct interface *link_if, struct ipaddr *ip,
95 struct ethaddr *macaddr, u_int16_t state, u_char ext_learned);
96 extern int zebra_vxlan_local_neigh_del(struct interface *ifp,
97 struct interface *link_if,
98 struct ipaddr *ip);
99 extern int zebra_vxlan_remote_macip_add(struct zserv *client,
100 u_short length, struct zebra_vrf *zvrf);
101 extern int zebra_vxlan_remote_macip_del(struct zserv *client,
102 u_short length, struct zebra_vrf *zvrf);
103 extern int zebra_vxlan_local_mac_add_update(struct interface *ifp,
104 struct interface *br_if,
105 struct ethaddr *mac, vlanid_t vid,
106 u_char sticky);
107 extern int zebra_vxlan_local_mac_del(struct interface *ifp,
108 struct interface *br_if,
109 struct ethaddr *mac, vlanid_t vid);
110 extern int zebra_vxlan_check_readd_remote_mac(struct interface *ifp,
111 struct interface *br_if,
112 struct ethaddr *mac,
113 vlanid_t vid);
114 extern int zebra_vxlan_check_del_local_mac(struct interface *ifp,
115 struct interface *br_if,
116 struct ethaddr *mac, vlanid_t vid);
117 extern int zebra_vxlan_if_up(struct interface *ifp);
118 extern int zebra_vxlan_if_down(struct interface *ifp);
119 extern int zebra_vxlan_if_add(struct interface *ifp);
120 extern int zebra_vxlan_if_update(struct interface *ifp, u_int16_t chgflags);
121 extern int zebra_vxlan_if_del(struct interface *ifp);
122 extern int zebra_vxlan_remote_vtep_add(struct zserv *client,
123 u_short length, struct zebra_vrf *zvrf);
124 extern int zebra_vxlan_remote_vtep_del(struct zserv *client,
125 u_short length, struct zebra_vrf *zvrf);
126 extern int zebra_vxlan_advertise_gw_macip(struct zserv *client,
127 u_short length,
128 struct zebra_vrf *zvrf);
129 extern int zebra_vxlan_advertise_all_vni(struct zserv *client,
130 u_short length,
131 struct zebra_vrf *zvrf);
132 extern void zebra_vxlan_init_tables(struct zebra_vrf *zvrf);
133 extern void zebra_vxlan_close_tables(struct zebra_vrf *);
134
135 #endif /* _ZEBRA_VXLAN_H */