]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zebra_l2.c
zebra: Handle MACIP requests when in transient conditions
[mirror_frr.git] / zebra / zebra_l2.c
CommitLineData
6675513d 1/*
2 * Zebra Layer-2 interface handling code
3 * Copyright (C) 2016, 2017 Cumulus Networks, Inc.
4 *
5 * This file is part of FRR.
6 *
7 * FRR 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 * FRR 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 *
17 * You should have received a copy of the GNU General Public License
18 * along with FRR; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "if.h"
26#include "prefix.h"
27#include "table.h"
28#include "memory.h"
29#include "log.h"
30#include "linklist.h"
31#include "stream.h"
32#include "hash.h"
33#include "jhash.h"
34
35#include "zebra/rib.h"
36#include "zebra/rt.h"
37#include "zebra/zebra_ns.h"
38#include "zebra/zserv.h"
39#include "zebra/debug.h"
40#include "zebra/interface.h"
41#include "zebra/zebra_memory.h"
42#include "zebra/zebra_vrf.h"
43#include "zebra/rt_netlink.h"
44#include "zebra/zebra_l2.h"
13d60d35 45#include "zebra/zebra_vxlan.h"
6675513d 46
47/* definitions */
48
49/* static function declarations */
50
51/* Private functions */
d62a17ae 52static void map_slaves_to_bridge(struct interface *br_if, int link)
6675513d 53{
d62a17ae 54 struct vrf *vrf;
55 struct listnode *node;
56 struct interface *ifp;
57
58 RB_FOREACH(vrf, vrf_name_head, &vrfs_by_name)
59 {
60 for (ALL_LIST_ELEMENTS_RO(vrf->iflist, node, ifp)) {
61 struct zebra_if *zif;
62 struct zebra_l2info_brslave *br_slave;
63
64 if (ifp->ifindex == IFINDEX_INTERNAL || !ifp->info)
65 continue;
66 if (!IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
67 continue;
68
69 /* NOTE: This assumes 'zebra_l2info_brslave' is the
70 * first field
71 * for any L2 interface.
72 */
73 zif = (struct zebra_if *)ifp->info;
74 br_slave = &zif->brslave_info;
75
76 if (link) {
77 if (br_slave->bridge_ifindex == br_if->ifindex)
78 br_slave->br_if = br_if;
79 } else {
80 if (br_slave->br_if == br_if)
81 br_slave->br_if = NULL;
82 }
83 }
84 }
6675513d 85}
86
87/* Public functions */
d62a17ae 88void zebra_l2_map_slave_to_bridge(struct zebra_l2info_brslave *br_slave)
6675513d 89{
d62a17ae 90 struct interface *br_if;
6675513d 91
d62a17ae 92 /* TODO: Handle change of master */
93 br_if = if_lookup_by_index_per_ns(zebra_ns_lookup(NS_DEFAULT),
94 br_slave->bridge_ifindex);
95 if (br_if)
96 br_slave->br_if = br_if;
6675513d 97}
98
d62a17ae 99void zebra_l2_unmap_slave_from_bridge(struct zebra_l2info_brslave *br_slave)
6675513d 100{
d62a17ae 101 br_slave->br_if = NULL;
6675513d 102}
103
104/*
105 * Handle Bridge interface add or update. Update relevant info,
106 * map slaves (if any) to the bridge.
107 */
d62a17ae 108void zebra_l2_bridge_add_update(struct interface *ifp,
109 struct zebra_l2info_bridge *bridge_info,
110 int add)
6675513d 111{
d62a17ae 112 struct zebra_if *zif;
6675513d 113
d62a17ae 114 zif = ifp->info;
115 assert(zif);
6675513d 116
d62a17ae 117 /* Copy over the L2 information. */
118 memcpy(&zif->l2info.br, bridge_info, sizeof(*bridge_info));
6675513d 119
d62a17ae 120 /* Link all slaves to this bridge */
121 map_slaves_to_bridge(ifp, 1);
6675513d 122}
123
124/*
125 * Handle Bridge interface delete.
126 */
d62a17ae 127void zebra_l2_bridge_del(struct interface *ifp)
6675513d 128{
d62a17ae 129 /* Unlink all slaves to this bridge */
130 map_slaves_to_bridge(ifp, 0);
6675513d 131}
132
133/*
134 * Update L2 info for a VLAN interface. Only relevant parameter is the
135 * VLAN Id and this cannot change.
136 */
d62a17ae 137void zebra_l2_vlanif_update(struct interface *ifp,
138 struct zebra_l2info_vlan *vlan_info)
6675513d 139{
d62a17ae 140 struct zebra_if *zif;
6675513d 141
d62a17ae 142 zif = ifp->info;
143 assert(zif);
6675513d 144
d62a17ae 145 /* Copy over the L2 information. */
146 memcpy(&zif->l2info.vl, vlan_info, sizeof(*vlan_info));
6675513d 147}
148
149/*
150 * Update L2 info for a VxLAN interface. This is called upon interface
151 * addition as well as update. Upon add, need to invoke the VNI create
152 * function. Upon update, the params of interest are the local tunnel
153 * IP and VLAN mapping, but the latter is handled separately.
154 */
d62a17ae 155void zebra_l2_vxlanif_add_update(struct interface *ifp,
156 struct zebra_l2info_vxlan *vxlan_info, int add)
6675513d 157{
d62a17ae 158 struct zebra_if *zif;
159 struct in_addr old_vtep_ip;
6675513d 160
d62a17ae 161 zif = ifp->info;
162 assert(zif);
6675513d 163
d62a17ae 164 if (add) {
165 memcpy(&zif->l2info.vxl, vxlan_info, sizeof(*vxlan_info));
166 zebra_vxlan_if_add(ifp);
167 return;
168 }
6675513d 169
d62a17ae 170 old_vtep_ip = zif->l2info.vxl.vtep_ip;
171 if (IPV4_ADDR_SAME(&old_vtep_ip, &vxlan_info->vtep_ip))
172 return;
6675513d 173
d62a17ae 174 zif->l2info.vxl.vtep_ip = vxlan_info->vtep_ip;
175 zebra_vxlan_if_update(ifp, ZEBRA_VXLIF_LOCAL_IP_CHANGE);
6675513d 176}
177
178/*
179 * Handle change to VLAN to VNI mapping.
180 */
d62a17ae 181void zebra_l2_vxlanif_update_access_vlan(struct interface *ifp,
182 vlanid_t access_vlan)
6675513d 183{
d62a17ae 184 struct zebra_if *zif;
185 vlanid_t old_access_vlan;
6675513d 186
d62a17ae 187 zif = ifp->info;
188 assert(zif);
6675513d 189
d62a17ae 190 old_access_vlan = zif->l2info.vxl.access_vlan;
191 if (old_access_vlan == access_vlan)
192 return;
13d60d35 193
d62a17ae 194 zif->l2info.vxl.access_vlan = access_vlan;
195 zebra_vxlan_if_update(ifp, ZEBRA_VXLIF_VLAN_CHANGE);
6675513d 196}
197
198/*
199 * Handle VxLAN interface delete.
200 */
d62a17ae 201void zebra_l2_vxlanif_del(struct interface *ifp)
6675513d 202{
d62a17ae 203 zebra_vxlan_if_del(ifp);
6675513d 204}
205
206/*
207 * Map or unmap interface from bridge.
208 * NOTE: It is currently assumped that an interface has to be unmapped
209 * from a bridge before it can be mapped to another bridge.
210 */
d62a17ae 211void zebra_l2if_update_bridge_slave(struct interface *ifp,
212 ifindex_t bridge_ifindex)
6675513d 213{
d62a17ae 214 struct zebra_if *zif;
215 ifindex_t old_bridge_ifindex;
6675513d 216
d62a17ae 217 zif = ifp->info;
218 assert(zif);
6675513d 219
d62a17ae 220 old_bridge_ifindex = zif->brslave_info.bridge_ifindex;
221 if (old_bridge_ifindex == bridge_ifindex)
222 return;
6675513d 223
d62a17ae 224 zif->brslave_info.bridge_ifindex = bridge_ifindex;
6675513d 225
d62a17ae 226 /* Set up or remove link with master */
227 if (bridge_ifindex != IFINDEX_INTERNAL)
228 zebra_l2_map_slave_to_bridge(&zif->brslave_info);
229 else if (old_bridge_ifindex != IFINDEX_INTERNAL)
230 zebra_l2_unmap_slave_from_bridge(&zif->brslave_info);
13d60d35 231
d62a17ae 232 /* In the case of VxLAN, invoke the handler for EVPN. */
233 if (zif->zif_type == ZEBRA_IF_VXLAN)
234 zebra_vxlan_if_update(ifp, ZEBRA_VXLIF_MASTER_CHANGE);
6675513d 235}