]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_vxlan.h
Merge pull request #935 from donaldsharp/kernel_metric
[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
39 /* VxLAN interface change flags of interest. */
40 #define ZEBRA_VXLIF_LOCAL_IP_CHANGE 0x1
41 #define ZEBRA_VXLIF_MASTER_CHANGE 0x2
42 #define ZEBRA_VXLIF_VLAN_CHANGE 0x4
43
44 #define VNI_STR_LEN 32
45
46 extern void zebra_vxlan_print_macs_vni(struct vty *vty, struct zebra_vrf *zvrf,
47 vni_t vni, u_char use_json);
48 extern void zebra_vxlan_print_macs_all_vni(struct vty *vty,
49 struct zebra_vrf *zvrf,
50 u_char use_json);
51 extern void zebra_vxlan_print_macs_all_vni_vtep(struct vty *vty,
52 struct zebra_vrf *zvrf,
53 struct in_addr vtep_ip,
54 u_char use_json);
55 extern void zebra_vxlan_print_specific_mac_vni(struct vty *vty,
56 struct zebra_vrf *zvrf,
57 vni_t vni, struct ethaddr *mac);
58 extern void zebra_vxlan_print_macs_vni_vtep(struct vty *vty,
59 struct zebra_vrf *zvrf, vni_t vni,
60 struct in_addr vtep_ip,
61 u_char use_json);
62 extern void zebra_vxlan_print_neigh_vni(struct vty *vty, struct zebra_vrf *zvrf,
63 vni_t vni, u_char use_json);
64 extern void zebra_vxlan_print_neigh_all_vni(struct vty *vty,
65 struct zebra_vrf *zvrf,
66 u_char use_json);
67 extern void zebra_vxlan_print_specific_neigh_vni(struct vty *vty,
68 struct zebra_vrf *zvrf,
69 vni_t vni, struct ipaddr *ip,
70 u_char use_json);
71 extern void zebra_vxlan_print_neigh_vni_vtep(struct vty *vty,
72 struct zebra_vrf *zvrf, vni_t vni,
73 struct in_addr vtep_ip,
74 u_char use_json);
75 extern void zebra_vxlan_print_vni(struct vty *vty, struct zebra_vrf *zvrf,
76 vni_t vni, u_char use_json);
77 extern void zebra_vxlan_print_vnis(struct vty *vty, struct zebra_vrf *zvrf,
78 u_char use_json);
79
80 extern int zebra_vxlan_add_del_gw_macip(struct interface *ifp, struct prefix *p,
81 int add);
82 extern int zebra_vxlan_svi_up(struct interface *ifp, struct interface *link_if);
83 extern int zebra_vxlan_svi_down(struct interface *ifp,
84 struct interface *link_if);
85 extern int zebra_vxlan_local_neigh_add_update(
86 struct interface *ifp, struct interface *link_if, struct ipaddr *ip,
87 struct ethaddr *macaddr, u_int16_t state, u_char ext_learned);
88 extern int zebra_vxlan_local_neigh_del(struct interface *ifp,
89 struct interface *link_if,
90 struct ipaddr *ip);
91 extern int zebra_vxlan_remote_macip_add(struct zserv *client, int sock,
92 u_short length, struct zebra_vrf *zvrf);
93 extern int zebra_vxlan_remote_macip_del(struct zserv *client, int sock,
94 u_short length, struct zebra_vrf *zvrf);
95 extern int zebra_vxlan_local_mac_add_update(struct interface *ifp,
96 struct interface *br_if,
97 struct ethaddr *mac, vlanid_t vid,
98 u_char sticky);
99 extern int zebra_vxlan_local_mac_del(struct interface *ifp,
100 struct interface *br_if,
101 struct ethaddr *mac, vlanid_t vid);
102 extern int zebra_vxlan_check_readd_remote_mac(struct interface *ifp,
103 struct interface *br_if,
104 struct ethaddr *mac,
105 vlanid_t vid);
106 extern int zebra_vxlan_check_del_local_mac(struct interface *ifp,
107 struct interface *br_if,
108 struct ethaddr *mac, vlanid_t vid);
109 extern int zebra_vxlan_if_up(struct interface *ifp);
110 extern int zebra_vxlan_if_down(struct interface *ifp);
111 extern int zebra_vxlan_if_add(struct interface *ifp);
112 extern int zebra_vxlan_if_update(struct interface *ifp, u_int16_t chgflags);
113 extern int zebra_vxlan_if_del(struct interface *ifp);
114 extern int zebra_vxlan_remote_vtep_add(struct zserv *client, int sock,
115 u_short length, struct zebra_vrf *zvrf);
116 extern int zebra_vxlan_remote_vtep_del(struct zserv *client, int sock,
117 u_short length, struct zebra_vrf *zvrf);
118 extern int zebra_vxlan_advertise_gw_macip(struct zserv *client, int sock,
119 u_short length,
120 struct zebra_vrf *zvrf);
121 extern int zebra_vxlan_advertise_all_vni(struct zserv *client, int sock,
122 u_short length,
123 struct zebra_vrf *zvrf);
124 extern void zebra_vxlan_init_tables(struct zebra_vrf *zvrf);
125 extern void zebra_vxlan_close_tables(struct zebra_vrf *);
126
127 #endif /* _ZEBRA_VXLAN_H */