]> git.proxmox.com Git - mirror_frr.git/blame - zebra/if_netlink.c
*: change interface structure, from vrf_id to vrf
[mirror_frr.git] / zebra / if_netlink.c
CommitLineData
718e3744 1/*
2 * Interface looking up by netlink.
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#include <zebra.h>
6675513d 23
ddfeb486
DL
24#ifdef GNU_LINUX
25
6675513d 26/* The following definition is to workaround an issue in the Linux kernel
27 * header files with redefinition of 'struct in6_addr' in both
28 * netinet/in.h and linux/in6.h.
29 * Reference - https://sourceware.org/ml/libc-alpha/2013-01/msg00599.html
30 */
31#define _LINUX_IN6_H
32
ba85366a 33#include <netinet/if_ether.h>
6675513d 34#include <linux/if_bridge.h>
ba777396 35#include <linux/if_link.h>
1fdc9eae 36#include <net/if_arp.h>
535fe877
DS
37#include <linux/sockios.h>
38#include <linux/ethtool.h>
1fdc9eae 39
40#include "linklist.h"
41#include "if.h"
42#include "log.h"
43#include "prefix.h"
44#include "connected.h"
45#include "table.h"
46#include "memory.h"
47#include "zebra_memory.h"
48#include "rib.h"
49#include "thread.h"
50#include "privs.h"
51#include "nexthop.h"
52#include "vrf.h"
7922fc65 53#include "vrf_int.h"
1fdc9eae 54#include "mpls.h"
174482ef 55#include "lib_errors.h"
718e3744 56
5e6a74d8 57#include "vty.h"
7dbeea9d 58#include "zebra/zserv.h"
1fdc9eae 59#include "zebra/zebra_ns.h"
60#include "zebra/zebra_vrf.h"
61#include "zebra/rt.h"
62#include "zebra/redistribute.h"
63#include "zebra/interface.h"
64#include "zebra/debug.h"
65#include "zebra/rtadv.h"
66#include "zebra/zebra_ptm.h"
67#include "zebra/zebra_mpls.h"
68#include "zebra/kernel_netlink.h"
69#include "zebra/if_netlink.h"
9df414fe 70#include "zebra/zebra_errors.h"
97c4e1d0 71#include "zebra/zebra_vxlan.h"
1fdc9eae 72
0268f30e 73extern struct zebra_privs_t zserv_privs;
1fdc9eae 74
75/* Note: on netlink systems, there should be a 1-to-1 mapping between interface
76 names and ifindex values. */
d62a17ae 77static void set_ifindex(struct interface *ifp, ifindex_t ifi_index,
78 struct zebra_ns *zns)
1fdc9eae 79{
d62a17ae 80 struct interface *oifp;
81
82 if (((oifp = if_lookup_by_index_per_ns(zns, ifi_index)) != NULL)
83 && (oifp != ifp)) {
84 if (ifi_index == IFINDEX_INTERNAL)
af4c2728 85 flog_err(
450971aa 86 EC_LIB_INTERFACE,
4d43f68a 87 "Netlink is setting interface %s ifindex to reserved internal value %u",
d62a17ae 88 ifp->name, ifi_index);
89 else {
90 if (IS_ZEBRA_DEBUG_KERNEL)
91 zlog_debug(
92 "interface index %d was renamed from %s to %s",
93 ifi_index, oifp->name, ifp->name);
94 if (if_is_up(oifp))
af4c2728 95 flog_err(
450971aa 96 EC_LIB_INTERFACE,
4d43f68a 97 "interface rename detected on up interface: index %d was renamed from %s to %s, results are uncertain!",
d62a17ae 98 ifi_index, oifp->name, ifp->name);
99 if_delete_update(oifp);
100 }
101 }
ff880b78 102 if_set_index(ifp, ifi_index);
1fdc9eae 103}
104
105/* Utility function to parse hardware link-layer address and update ifp */
d62a17ae 106static void netlink_interface_update_hw_addr(struct rtattr **tb,
107 struct interface *ifp)
1fdc9eae 108{
d62a17ae 109 int i;
110
111 if (tb[IFLA_ADDRESS]) {
112 int hw_addr_len;
113
114 hw_addr_len = RTA_PAYLOAD(tb[IFLA_ADDRESS]);
115
116 if (hw_addr_len > INTERFACE_HWADDR_MAX)
9df414fe
QY
117 zlog_debug("Hardware address is too large: %d",
118 hw_addr_len);
d62a17ae 119 else {
120 ifp->hw_addr_len = hw_addr_len;
121 memcpy(ifp->hw_addr, RTA_DATA(tb[IFLA_ADDRESS]),
122 hw_addr_len);
123
124 for (i = 0; i < hw_addr_len; i++)
125 if (ifp->hw_addr[i] != 0)
126 break;
127
128 if (i == hw_addr_len)
129 ifp->hw_addr_len = 0;
130 else
131 ifp->hw_addr_len = hw_addr_len;
132 }
133 }
1fdc9eae 134}
135
d62a17ae 136static enum zebra_link_type netlink_to_zebra_link_type(unsigned int hwt)
1fdc9eae 137{
d62a17ae 138 switch (hwt) {
139 case ARPHRD_ETHER:
140 return ZEBRA_LLT_ETHER;
141 case ARPHRD_EETHER:
142 return ZEBRA_LLT_EETHER;
143 case ARPHRD_AX25:
144 return ZEBRA_LLT_AX25;
145 case ARPHRD_PRONET:
146 return ZEBRA_LLT_PRONET;
147 case ARPHRD_IEEE802:
148 return ZEBRA_LLT_IEEE802;
149 case ARPHRD_ARCNET:
150 return ZEBRA_LLT_ARCNET;
151 case ARPHRD_APPLETLK:
152 return ZEBRA_LLT_APPLETLK;
153 case ARPHRD_DLCI:
154 return ZEBRA_LLT_DLCI;
155 case ARPHRD_ATM:
156 return ZEBRA_LLT_ATM;
157 case ARPHRD_METRICOM:
158 return ZEBRA_LLT_METRICOM;
159 case ARPHRD_IEEE1394:
160 return ZEBRA_LLT_IEEE1394;
161 case ARPHRD_EUI64:
162 return ZEBRA_LLT_EUI64;
163 case ARPHRD_INFINIBAND:
164 return ZEBRA_LLT_INFINIBAND;
165 case ARPHRD_SLIP:
166 return ZEBRA_LLT_SLIP;
167 case ARPHRD_CSLIP:
168 return ZEBRA_LLT_CSLIP;
169 case ARPHRD_SLIP6:
170 return ZEBRA_LLT_SLIP6;
171 case ARPHRD_CSLIP6:
172 return ZEBRA_LLT_CSLIP6;
173 case ARPHRD_RSRVD:
174 return ZEBRA_LLT_RSRVD;
175 case ARPHRD_ADAPT:
176 return ZEBRA_LLT_ADAPT;
177 case ARPHRD_ROSE:
178 return ZEBRA_LLT_ROSE;
179 case ARPHRD_X25:
180 return ZEBRA_LLT_X25;
181 case ARPHRD_PPP:
182 return ZEBRA_LLT_PPP;
183 case ARPHRD_CISCO:
184 return ZEBRA_LLT_CHDLC;
185 case ARPHRD_LAPB:
186 return ZEBRA_LLT_LAPB;
187 case ARPHRD_RAWHDLC:
188 return ZEBRA_LLT_RAWHDLC;
189 case ARPHRD_TUNNEL:
190 return ZEBRA_LLT_IPIP;
191 case ARPHRD_TUNNEL6:
192 return ZEBRA_LLT_IPIP6;
193 case ARPHRD_FRAD:
194 return ZEBRA_LLT_FRAD;
195 case ARPHRD_SKIP:
196 return ZEBRA_LLT_SKIP;
197 case ARPHRD_LOOPBACK:
198 return ZEBRA_LLT_LOOPBACK;
199 case ARPHRD_LOCALTLK:
200 return ZEBRA_LLT_LOCALTLK;
201 case ARPHRD_FDDI:
202 return ZEBRA_LLT_FDDI;
203 case ARPHRD_SIT:
204 return ZEBRA_LLT_SIT;
205 case ARPHRD_IPDDP:
206 return ZEBRA_LLT_IPDDP;
207 case ARPHRD_IPGRE:
208 return ZEBRA_LLT_IPGRE;
209 case ARPHRD_PIMREG:
210 return ZEBRA_LLT_PIMREG;
211 case ARPHRD_HIPPI:
212 return ZEBRA_LLT_HIPPI;
213 case ARPHRD_ECONET:
214 return ZEBRA_LLT_ECONET;
215 case ARPHRD_IRDA:
216 return ZEBRA_LLT_IRDA;
217 case ARPHRD_FCPP:
218 return ZEBRA_LLT_FCPP;
219 case ARPHRD_FCAL:
220 return ZEBRA_LLT_FCAL;
221 case ARPHRD_FCPL:
222 return ZEBRA_LLT_FCPL;
223 case ARPHRD_FCFABRIC:
224 return ZEBRA_LLT_FCFABRIC;
225 case ARPHRD_IEEE802_TR:
226 return ZEBRA_LLT_IEEE802_TR;
227 case ARPHRD_IEEE80211:
228 return ZEBRA_LLT_IEEE80211;
4268e09e 229#ifdef ARPHRD_IEEE802154
d62a17ae 230 case ARPHRD_IEEE802154:
231 return ZEBRA_LLT_IEEE802154;
4268e09e 232#endif
1fdc9eae 233#ifdef ARPHRD_IP6GRE
d62a17ae 234 case ARPHRD_IP6GRE:
235 return ZEBRA_LLT_IP6GRE;
1fdc9eae 236#endif
237#ifdef ARPHRD_IEEE802154_PHY
d62a17ae 238 case ARPHRD_IEEE802154_PHY:
239 return ZEBRA_LLT_IEEE802154_PHY;
1fdc9eae 240#endif
241
d62a17ae 242 default:
243 return ZEBRA_LLT_UNKNOWN;
244 }
1fdc9eae 245}
246
b9368db9
DD
247static void netlink_determine_zebra_iftype(const char *kind,
248 zebra_iftype_t *zif_type)
6675513d 249{
d62a17ae 250 *zif_type = ZEBRA_IF_OTHER;
251
252 if (!kind)
253 return;
254
255 if (strcmp(kind, "vrf") == 0)
256 *zif_type = ZEBRA_IF_VRF;
257 else if (strcmp(kind, "bridge") == 0)
258 *zif_type = ZEBRA_IF_BRIDGE;
259 else if (strcmp(kind, "vlan") == 0)
260 *zif_type = ZEBRA_IF_VLAN;
261 else if (strcmp(kind, "vxlan") == 0)
262 *zif_type = ZEBRA_IF_VXLAN;
1a98c087
MK
263 else if (strcmp(kind, "macvlan") == 0)
264 *zif_type = ZEBRA_IF_MACVLAN;
0e4864ea
PG
265 else if (strcmp(kind, "veth") == 0)
266 *zif_type = ZEBRA_IF_VETH;
b9368db9
DD
267 else if (strcmp(kind, "bond") == 0)
268 *zif_type = ZEBRA_IF_BOND;
269 else if (strcmp(kind, "bond_slave") == 0)
270 *zif_type = ZEBRA_IF_BOND_SLAVE;
6675513d 271}
52d8f0d8 272
d62a17ae 273#define parse_rtattr_nested(tb, max, rta) \
274 netlink_parse_rtattr((tb), (max), RTA_DATA(rta), RTA_PAYLOAD(rta))
1fdc9eae 275
d62a17ae 276static void netlink_vrf_change(struct nlmsghdr *h, struct rtattr *tb,
277 const char *name)
1fdc9eae 278{
d62a17ae 279 struct ifinfomsg *ifi;
280 struct rtattr *linkinfo[IFLA_INFO_MAX + 1];
281 struct rtattr *attr[IFLA_VRF_MAX + 1];
282 struct vrf *vrf;
283 struct zebra_vrf *zvrf;
d7c0a89a 284 uint32_t nl_table_id;
d62a17ae 285
286 ifi = NLMSG_DATA(h);
287
288 memset(linkinfo, 0, sizeof linkinfo);
289 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb);
290
291 if (!linkinfo[IFLA_INFO_DATA]) {
292 if (IS_ZEBRA_DEBUG_KERNEL)
293 zlog_debug(
294 "%s: IFLA_INFO_DATA missing from VRF message: %s",
295 __func__, name);
296 return;
297 }
298
299 memset(attr, 0, sizeof attr);
300 parse_rtattr_nested(attr, IFLA_VRF_MAX, linkinfo[IFLA_INFO_DATA]);
301 if (!attr[IFLA_VRF_TABLE]) {
302 if (IS_ZEBRA_DEBUG_KERNEL)
303 zlog_debug(
304 "%s: IFLA_VRF_TABLE missing from VRF message: %s",
305 __func__, name);
306 return;
1fdc9eae 307 }
308
d7c0a89a 309 nl_table_id = *(uint32_t *)RTA_DATA(attr[IFLA_VRF_TABLE]);
d62a17ae 310
311 if (h->nlmsg_type == RTM_NEWLINK) {
312 if (IS_ZEBRA_DEBUG_KERNEL)
313 zlog_debug("RTM_NEWLINK for VRF %s(%u) table %u", name,
314 ifi->ifi_index, nl_table_id);
315
316 /*
317 * vrf_get is implied creation if it does not exist
318 */
319 vrf = vrf_get((vrf_id_t)ifi->ifi_index,
320 name); // It would create vrf
321 if (!vrf) {
450971aa 322 flog_err(EC_LIB_INTERFACE, "VRF %s id %u not created",
1c50c1c0 323 name, ifi->ifi_index);
d62a17ae 324 return;
325 }
326
d62a17ae 327 /*
328 * This is the only place that we get the actual kernel table_id
329 * being used. We need it to set the table_id of the routes
330 * we are passing to the kernel.... And to throw some totally
331 * awesome parties. that too.
593406a1
DS
332 *
333 * At this point we *must* have a zvrf because the vrf_create
334 * callback creates one. We *must* set the table id
335 * before the vrf_enable because of( at the very least )
336 * static routes being delayed for installation until
337 * during the vrf_enable callbacks.
d62a17ae 338 */
339 zvrf = (struct zebra_vrf *)vrf->info;
340 zvrf->table_id = nl_table_id;
593406a1
DS
341
342 /* Enable the created VRF. */
343 if (!vrf_enable(vrf)) {
450971aa 344 flog_err(EC_LIB_INTERFACE,
1c50c1c0
QY
345 "Failed to enable VRF %s id %u", name,
346 ifi->ifi_index);
593406a1
DS
347 return;
348 }
349
d62a17ae 350 } else // h->nlmsg_type == RTM_DELLINK
351 {
352 if (IS_ZEBRA_DEBUG_KERNEL)
353 zlog_debug("RTM_DELLINK for VRF %s(%u)", name,
354 ifi->ifi_index);
355
356 vrf = vrf_lookup_by_id((vrf_id_t)ifi->ifi_index);
357
358 if (!vrf) {
e914ccbe 359 flog_warn(EC_ZEBRA_VRF_NOT_FOUND, "%s: vrf not found",
9df414fe 360 __func__);
d62a17ae 361 return;
362 }
363
364 vrf_delete(vrf);
365 }
1fdc9eae 366}
367
0268f30e 368static int get_iflink_speed(struct interface *interface)
535fe877 369{
d62a17ae 370 struct ifreq ifdata;
371 struct ethtool_cmd ecmd;
372 int sd;
373 int rc;
0268f30e 374 const char *ifname = interface->name;
d62a17ae 375
376 /* initialize struct */
377 memset(&ifdata, 0, sizeof(ifdata));
378
379 /* set interface name */
0af35d90 380 strlcpy(ifdata.ifr_name, ifname, sizeof(ifdata.ifr_name));
d62a17ae 381
382 /* initialize ethtool interface */
383 memset(&ecmd, 0, sizeof(ecmd));
384 ecmd.cmd = ETHTOOL_GSET; /* ETHTOOL_GLINK */
ba85366a 385 ifdata.ifr_data = (caddr_t)&ecmd;
d62a17ae 386
387 /* use ioctl to get IP address of an interface */
01b9e3fd
DL
388 frr_elevate_privs(&zserv_privs) {
389 sd = vrf_socket(PF_INET, SOCK_DGRAM, IPPROTO_IP,
a41c4e1b 390 vrf_to_id(interface->vrf),
01b9e3fd
DL
391 NULL);
392 if (sd < 0) {
393 if (IS_ZEBRA_DEBUG_KERNEL)
394 zlog_debug("Failure to read interface %s speed: %d %s",
395 ifname, errno, safe_strerror(errno));
396 return 0;
397 }
d62a17ae 398 /* Get the current link state for the interface */
a41c4e1b 399 rc = vrf_ioctl(vrf_to_id(interface->vrf), sd, SIOCETHTOOL,
633fc9b1 400 (char *)&ifdata);
01b9e3fd 401 }
d62a17ae 402 if (rc < 0) {
f767cee4 403 if (errno != EOPNOTSUPP && IS_ZEBRA_DEBUG_KERNEL)
bd7d0299
DS
404 zlog_debug(
405 "IOCTL failure to read interface %s speed: %d %s",
406 ifname, errno, safe_strerror(errno));
d62a17ae 407 ecmd.speed_hi = 0;
408 ecmd.speed = 0;
409 }
410
411 close(sd);
412
413 return (ecmd.speed_hi << 16) | ecmd.speed;
535fe877
DS
414}
415
dc7b3cae
DS
416uint32_t kernel_get_speed(struct interface *ifp)
417{
0268f30e 418 return get_iflink_speed(ifp);
dc7b3cae
DS
419}
420
d62a17ae 421static int netlink_extract_bridge_info(struct rtattr *link_data,
422 struct zebra_l2info_bridge *bridge_info)
6675513d 423{
d62a17ae 424 struct rtattr *attr[IFLA_BR_MAX + 1];
425
426 memset(bridge_info, 0, sizeof(*bridge_info));
427 memset(attr, 0, sizeof attr);
428 parse_rtattr_nested(attr, IFLA_BR_MAX, link_data);
429 if (attr[IFLA_BR_VLAN_FILTERING])
430 bridge_info->vlan_aware =
d7c0a89a 431 *(uint8_t *)RTA_DATA(attr[IFLA_BR_VLAN_FILTERING]);
d62a17ae 432 return 0;
6675513d 433}
434
d62a17ae 435static int netlink_extract_vlan_info(struct rtattr *link_data,
436 struct zebra_l2info_vlan *vlan_info)
6675513d 437{
d62a17ae 438 struct rtattr *attr[IFLA_VLAN_MAX + 1];
439 vlanid_t vid_in_msg;
440
441 memset(vlan_info, 0, sizeof(*vlan_info));
442 memset(attr, 0, sizeof attr);
443 parse_rtattr_nested(attr, IFLA_VLAN_MAX, link_data);
444 if (!attr[IFLA_VLAN_ID]) {
445 if (IS_ZEBRA_DEBUG_KERNEL)
446 zlog_debug("IFLA_VLAN_ID missing from VLAN IF message");
447 return -1;
448 }
449
450 vid_in_msg = *(vlanid_t *)RTA_DATA(attr[IFLA_VLAN_ID]);
451 vlan_info->vid = vid_in_msg;
452 return 0;
6675513d 453}
454
d62a17ae 455static int netlink_extract_vxlan_info(struct rtattr *link_data,
456 struct zebra_l2info_vxlan *vxl_info)
6675513d 457{
d62a17ae 458 struct rtattr *attr[IFLA_VXLAN_MAX + 1];
459 vni_t vni_in_msg;
460 struct in_addr vtep_ip_in_msg;
461
462 memset(vxl_info, 0, sizeof(*vxl_info));
463 memset(attr, 0, sizeof attr);
464 parse_rtattr_nested(attr, IFLA_VXLAN_MAX, link_data);
465 if (!attr[IFLA_VXLAN_ID]) {
466 if (IS_ZEBRA_DEBUG_KERNEL)
467 zlog_debug(
468 "IFLA_VXLAN_ID missing from VXLAN IF message");
469 return -1;
470 }
471
472 vni_in_msg = *(vni_t *)RTA_DATA(attr[IFLA_VXLAN_ID]);
473 vxl_info->vni = vni_in_msg;
474 if (!attr[IFLA_VXLAN_LOCAL]) {
475 if (IS_ZEBRA_DEBUG_KERNEL)
476 zlog_debug(
477 "IFLA_VXLAN_LOCAL missing from VXLAN IF message");
478 } else {
479 vtep_ip_in_msg =
480 *(struct in_addr *)RTA_DATA(attr[IFLA_VXLAN_LOCAL]);
481 vxl_info->vtep_ip = vtep_ip_in_msg;
482 }
483
d7fe235c
AK
484 if (attr[IFLA_VXLAN_GROUP]) {
485 vxl_info->mcast_grp =
486 *(struct in_addr *)RTA_DATA(attr[IFLA_VXLAN_GROUP]);
487 }
488
d62a17ae 489 return 0;
6675513d 490}
491
492/*
493 * Extract and save L2 params (of interest) for an interface. When a
494 * bridge interface is added or updated, take further actions to map
495 * its members. Likewise, for VxLAN interface.
496 */
d62a17ae 497static void netlink_interface_update_l2info(struct interface *ifp,
498 struct rtattr *link_data, int add)
6675513d 499{
d62a17ae 500 if (!link_data)
501 return;
502
503 if (IS_ZEBRA_IF_BRIDGE(ifp)) {
504 struct zebra_l2info_bridge bridge_info;
505
506 netlink_extract_bridge_info(link_data, &bridge_info);
507 zebra_l2_bridge_add_update(ifp, &bridge_info, add);
508 } else if (IS_ZEBRA_IF_VLAN(ifp)) {
509 struct zebra_l2info_vlan vlan_info;
510
511 netlink_extract_vlan_info(link_data, &vlan_info);
512 zebra_l2_vlanif_update(ifp, &vlan_info);
513 } else if (IS_ZEBRA_IF_VXLAN(ifp)) {
514 struct zebra_l2info_vxlan vxlan_info;
515
516 netlink_extract_vxlan_info(link_data, &vxlan_info);
517 zebra_l2_vxlanif_add_update(ifp, &vxlan_info, add);
518 }
6675513d 519}
520
d62a17ae 521static int netlink_bridge_interface(struct nlmsghdr *h, int len, ns_id_t ns_id,
522 int startup)
6675513d 523{
d62a17ae 524 char *name = NULL;
525 struct ifinfomsg *ifi;
526 struct rtattr *tb[IFLA_MAX + 1];
527 struct interface *ifp;
528 struct rtattr *aftb[IFLA_BRIDGE_MAX + 1];
529 struct {
d7c0a89a
QY
530 uint16_t flags;
531 uint16_t vid;
d62a17ae 532 } * vinfo;
533 vlanid_t access_vlan;
534
535 /* Fetch name and ifindex */
536 ifi = NLMSG_DATA(h);
537 memset(tb, 0, sizeof tb);
538 netlink_parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
539
540 if (tb[IFLA_IFNAME] == NULL)
541 return -1;
542 name = (char *)RTA_DATA(tb[IFLA_IFNAME]);
543
544 /* The interface should already be known, if not discard. */
545 ifp = if_lookup_by_index_per_ns(zebra_ns_lookup(ns_id), ifi->ifi_index);
546 if (!ifp) {
9df414fe
QY
547 zlog_debug("Cannot find bridge IF %s(%u)", name,
548 ifi->ifi_index);
d62a17ae 549 return 0;
550 }
551 if (!IS_ZEBRA_IF_VXLAN(ifp))
552 return 0;
553
554 /* We are only interested in the access VLAN i.e., AF_SPEC */
555 if (!tb[IFLA_AF_SPEC])
556 return 0;
557
558 /* There is a 1-to-1 mapping of VLAN to VxLAN - hence
559 * only 1 access VLAN is accepted.
560 */
561 memset(aftb, 0, sizeof aftb);
562 parse_rtattr_nested(aftb, IFLA_BRIDGE_MAX, tb[IFLA_AF_SPEC]);
563 if (!aftb[IFLA_BRIDGE_VLAN_INFO])
564 return 0;
565
566 vinfo = RTA_DATA(aftb[IFLA_BRIDGE_VLAN_INFO]);
567 if (!(vinfo->flags & BRIDGE_VLAN_INFO_PVID))
568 return 0;
569
570 access_vlan = (vlanid_t)vinfo->vid;
571 if (IS_ZEBRA_DEBUG_KERNEL)
572 zlog_debug("Access VLAN %u for VxLAN IF %s(%u)", access_vlan,
573 name, ifi->ifi_index);
574 zebra_l2_vxlanif_update_access_vlan(ifp, access_vlan);
575 return 0;
6675513d 576}
577
2414abd3
DS
578/*
579 * Called from interface_lookup_netlink(). This function is only used
580 * during bootstrap.
581 */
582static int netlink_interface(struct nlmsghdr *h, ns_id_t ns_id, int startup)
1fdc9eae 583{
d62a17ae 584 int len;
585 struct ifinfomsg *ifi;
586 struct rtattr *tb[IFLA_MAX + 1];
587 struct rtattr *linkinfo[IFLA_MAX + 1];
588 struct interface *ifp;
589 char *name = NULL;
590 char *kind = NULL;
48884c6b 591 char *desc = NULL;
d62a17ae 592 char *slave_kind = NULL;
593 struct zebra_ns *zns;
594 vrf_id_t vrf_id = VRF_DEFAULT;
595 zebra_iftype_t zif_type = ZEBRA_IF_OTHER;
596 zebra_slave_iftype_t zif_slave_type = ZEBRA_IF_SLAVE_NONE;
597 ifindex_t bridge_ifindex = IFINDEX_INTERNAL;
598 ifindex_t link_ifindex = IFINDEX_INTERNAL;
b9368db9 599 ifindex_t bond_ifindex = IFINDEX_INTERNAL;
520ebf72 600 struct zebra_if *zif;
4c634658 601 struct vrf *vrf;
d62a17ae 602
603 zns = zebra_ns_lookup(ns_id);
604 ifi = NLMSG_DATA(h);
605
606 if (h->nlmsg_type != RTM_NEWLINK)
607 return 0;
608
609 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ifinfomsg));
9bdf8618
DS
610 if (len < 0) {
611 zlog_err("%s: Message received from netlink is of a broken size: %d %zu",
612 __PRETTY_FUNCTION__,
613 h->nlmsg_len,
614 (size_t)NLMSG_LENGTH(sizeof(struct ifinfomsg)));
d62a17ae 615 return -1;
9bdf8618 616 }
d62a17ae 617
618 /* We are interested in some AF_BRIDGE notifications. */
619 if (ifi->ifi_family == AF_BRIDGE)
620 return netlink_bridge_interface(h, len, ns_id, startup);
621
622 /* Looking up interface name. */
623 memset(tb, 0, sizeof tb);
624 memset(linkinfo, 0, sizeof linkinfo);
625 netlink_parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
1fdc9eae 626
d62a17ae 627 /* check for wireless messages to ignore */
628 if ((tb[IFLA_WIRELESS] != NULL) && (ifi->ifi_change == 0)) {
629 if (IS_ZEBRA_DEBUG_KERNEL)
630 zlog_debug("%s: ignoring IFLA_WIRELESS message",
631 __func__);
632 return 0;
633 }
1fdc9eae 634
d62a17ae 635 if (tb[IFLA_IFNAME] == NULL)
636 return -1;
637 name = (char *)RTA_DATA(tb[IFLA_IFNAME]);
1fdc9eae 638
48884c6b
DS
639 if (tb[IFLA_IFALIAS])
640 desc = (char *)RTA_DATA(tb[IFLA_IFALIAS]);
641
d62a17ae 642 if (tb[IFLA_LINKINFO]) {
643 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb[IFLA_LINKINFO]);
1fdc9eae 644
d62a17ae 645 if (linkinfo[IFLA_INFO_KIND])
646 kind = RTA_DATA(linkinfo[IFLA_INFO_KIND]);
1fdc9eae 647
d62a17ae 648 if (linkinfo[IFLA_INFO_SLAVE_KIND])
649 slave_kind = RTA_DATA(linkinfo[IFLA_INFO_SLAVE_KIND]);
1fdc9eae 650
b9368db9
DD
651 if ((slave_kind != NULL) && strcmp(slave_kind, "bond") == 0)
652 netlink_determine_zebra_iftype("bond_slave", &zif_type);
653 else
654 netlink_determine_zebra_iftype(kind, &zif_type);
d62a17ae 655 }
656
657 /* If VRF, create the VRF structure itself. */
78dd30b2 658 if (zif_type == ZEBRA_IF_VRF && !vrf_is_backend_netns()) {
d62a17ae 659 netlink_vrf_change(h, tb[IFLA_LINKINFO], name);
660 vrf_id = (vrf_id_t)ifi->ifi_index;
661 }
662
663 if (tb[IFLA_MASTER]) {
78dd30b2
PG
664 if (slave_kind && (strcmp(slave_kind, "vrf") == 0)
665 && !vrf_is_backend_netns()) {
d62a17ae 666 zif_slave_type = ZEBRA_IF_SLAVE_VRF;
d7c0a89a 667 vrf_id = *(uint32_t *)RTA_DATA(tb[IFLA_MASTER]);
921a85ba
PG
668 /* vrf can be needed before vrf netlink discovery */
669 vrf_get(vrf_id, NULL);
d62a17ae 670 } else if (slave_kind && (strcmp(slave_kind, "bridge") == 0)) {
671 zif_slave_type = ZEBRA_IF_SLAVE_BRIDGE;
672 bridge_ifindex =
673 *(ifindex_t *)RTA_DATA(tb[IFLA_MASTER]);
b9368db9
DD
674 } else if (slave_kind && (strcmp(slave_kind, "bond") == 0)) {
675 zif_slave_type = ZEBRA_IF_SLAVE_BOND;
676 bond_ifindex = *(ifindex_t *)RTA_DATA(tb[IFLA_MASTER]);
d62a17ae 677 } else
678 zif_slave_type = ZEBRA_IF_SLAVE_OTHER;
679 }
78dd30b2
PG
680 if (vrf_is_backend_netns())
681 vrf_id = (vrf_id_t)ns_id;
4c634658 682 vrf = vrf_lookup_by_id(vrf_id);
d62a17ae 683 /* If linking to another interface, note it. */
684 if (tb[IFLA_LINK])
685 link_ifindex = *(ifindex_t *)RTA_DATA(tb[IFLA_LINK]);
686
687 /* Add interface. */
4c634658 688 ifp = if_get_by_name(name, vrf);
d62a17ae 689 set_ifindex(ifp, ifi->ifi_index, zns);
690 ifp->flags = ifi->ifi_flags & 0x0000fffff;
d62a17ae 691 ifp->mtu6 = ifp->mtu = *(uint32_t *)RTA_DATA(tb[IFLA_MTU]);
692 ifp->metric = 0;
0268f30e 693 ifp->speed = get_iflink_speed(ifp);
d62a17ae 694 ifp->ptm_status = ZEBRA_PTM_STATUS_UNKNOWN;
695
696 /* Set zebra interface type */
697 zebra_if_set_ziftype(ifp, zif_type, zif_slave_type);
b0fa6f6a
CS
698 if (IS_ZEBRA_IF_VRF(ifp))
699 SET_FLAG(ifp->status, ZEBRA_INTERFACE_VRF_LOOPBACK);
d62a17ae 700
98efddf1
DS
701 /*
702 * Just set the @link/lower-device ifindex. During nldump interfaces are
520ebf72
AK
703 * not ordered in any fashion so we may end up getting upper devices
704 * before lower devices. We will setup the real linkage once the dump
98efddf1
DS
705 * is complete.
706 */
520ebf72
AK
707 zif = (struct zebra_if *)ifp->info;
708 zif->link_ifindex = link_ifindex;
d62a17ae 709
ba5165ec
DS
710 if (desc) {
711 XFREE(MTYPE_TMP, zif->desc);
712 zif->desc = XSTRDUP(MTYPE_TMP, desc);
713 }
714
d62a17ae 715 /* Hardware type and address. */
716 ifp->ll_type = netlink_to_zebra_link_type(ifi->ifi_type);
717 netlink_interface_update_hw_addr(tb, ifp);
718
719 if_add_update(ifp);
720
721 /* Extract and save L2 interface information, take additional actions.
722 */
723 netlink_interface_update_l2info(ifp, linkinfo[IFLA_INFO_DATA], 1);
724 if (IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
725 zebra_l2if_update_bridge_slave(ifp, bridge_ifindex);
b9368db9
DD
726 else if (IS_ZEBRA_IF_BOND_SLAVE(ifp))
727 zebra_l2if_update_bond_slave(ifp, bond_ifindex);
d62a17ae 728
729 return 0;
1fdc9eae 730}
731
289602d7 732/* Request for specific interface or address information from the kernel */
85a75f1e
MS
733static int netlink_request_intf_addr(struct nlsock *netlink_cmd, int family,
734 int type, uint32_t filter_mask)
289602d7 735{
d62a17ae 736 struct {
737 struct nlmsghdr n;
738 struct ifinfomsg ifm;
739 char buf[256];
740 } req;
741
742 /* Form the request, specifying filter (rtattr) if needed. */
743 memset(&req, 0, sizeof(req));
744 req.n.nlmsg_type = type;
718f9b0f 745 req.n.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST;
d62a17ae 746 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
747 req.ifm.ifi_family = family;
748
749 /* Include filter, if specified. */
750 if (filter_mask)
751 addattr32(&req.n, sizeof(req), IFLA_EXT_MASK, filter_mask);
752
85a75f1e 753 return netlink_request(netlink_cmd, &req.n);
289602d7 754}
755
1fdc9eae 756/* Interface lookup by netlink socket. */
d62a17ae 757int interface_lookup_netlink(struct zebra_ns *zns)
1fdc9eae 758{
d62a17ae 759 int ret;
85a75f1e
MS
760 struct zebra_dplane_info dp_info;
761 struct nlsock *netlink_cmd = &zns->netlink_cmd;
762
763 /* Capture key info from ns struct */
764 zebra_dplane_info_from_zns(&dp_info, zns, true /*is_cmd*/);
d62a17ae 765
766 /* Get interface information. */
85a75f1e 767 ret = netlink_request_intf_addr(netlink_cmd, AF_PACKET, RTM_GETLINK, 0);
d62a17ae 768 if (ret < 0)
769 return ret;
85a75f1e 770 ret = netlink_parse_info(netlink_interface, netlink_cmd, &dp_info, 0,
d62a17ae 771 1);
772 if (ret < 0)
773 return ret;
774
775 /* Get interface information - for bridge interfaces. */
85a75f1e 776 ret = netlink_request_intf_addr(netlink_cmd, AF_BRIDGE, RTM_GETLINK,
d62a17ae 777 RTEXT_FILTER_BRVLAN);
778 if (ret < 0)
779 return ret;
85a75f1e 780 ret = netlink_parse_info(netlink_interface, netlink_cmd, &dp_info, 0,
d62a17ae 781 0);
782 if (ret < 0)
783 return ret;
784
785 /* Get interface information - for bridge interfaces. */
85a75f1e 786 ret = netlink_request_intf_addr(netlink_cmd, AF_BRIDGE, RTM_GETLINK,
d62a17ae 787 RTEXT_FILTER_BRVLAN);
788 if (ret < 0)
789 return ret;
85a75f1e 790 ret = netlink_parse_info(netlink_interface, netlink_cmd, &dp_info, 0,
d62a17ae 791 0);
792 if (ret < 0)
793 return ret;
794
520ebf72
AK
795 /* fixup linkages */
796 zebra_if_update_all_links();
797
d62a17ae 798 /* Get IPv4 address of the interfaces. */
85a75f1e 799 ret = netlink_request_intf_addr(netlink_cmd, AF_INET, RTM_GETADDR, 0);
d62a17ae 800 if (ret < 0)
801 return ret;
85a75f1e 802 ret = netlink_parse_info(netlink_interface_addr, netlink_cmd, &dp_info,
d62a17ae 803 0, 1);
804 if (ret < 0)
805 return ret;
806
807 /* Get IPv6 address of the interfaces. */
85a75f1e 808 ret = netlink_request_intf_addr(netlink_cmd, AF_INET6, RTM_GETADDR, 0);
d62a17ae 809 if (ret < 0)
810 return ret;
85a75f1e 811 ret = netlink_parse_info(netlink_interface_addr, netlink_cmd, &dp_info,
d62a17ae 812 0, 1);
813 if (ret < 0)
814 return ret;
815
816 return 0;
1fdc9eae 817}
818
e0ae31b8
DS
819int kernel_interface_set_master(struct interface *master,
820 struct interface *slave)
821{
822 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
823
824 struct {
825 struct nlmsghdr n;
826 struct ifinfomsg ifa;
827 char buf[NL_PKT_BUF_SIZE];
828 } req;
829
830 memset(&req, 0, sizeof req);
831
832 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
833 req.n.nlmsg_flags = NLM_F_REQUEST;
834 req.n.nlmsg_type = RTM_SETLINK;
835 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
836
837 req.ifa.ifi_index = slave->ifindex;
838
839 addattr_l(&req.n, sizeof req, IFLA_MASTER, &master->ifindex, 4);
840 addattr_l(&req.n, sizeof req, IFLA_LINK, &slave->ifindex, 4);
841
842 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
843 0);
844}
845
1fdc9eae 846/* Interface address modification. */
64168803 847static int netlink_address_ctx(const struct zebra_dplane_ctx *ctx)
1fdc9eae 848{
d62a17ae 849 int bytelen;
64168803
MS
850 const struct prefix *p;
851 int cmd;
852 const char *label;
1fdc9eae 853
d62a17ae 854 struct {
855 struct nlmsghdr n;
856 struct ifaddrmsg ifa;
857 char buf[NL_PKT_BUF_SIZE];
858 } req;
1fdc9eae 859
64168803
MS
860 p = dplane_ctx_get_intf_addr(ctx);
861 memset(&req, 0, sizeof(req) - NL_PKT_BUF_SIZE);
1fdc9eae 862
64168803 863 bytelen = (p->family == AF_INET ? 4 : 16);
1fdc9eae 864
d62a17ae 865 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifaddrmsg));
866 req.n.nlmsg_flags = NLM_F_REQUEST;
a55ba23f 867
64168803
MS
868 if (dplane_ctx_get_op(ctx) == DPLANE_OP_ADDR_INSTALL)
869 cmd = RTM_NEWADDR;
870 else
871 cmd = RTM_DELADDR;
872
873 req.n.nlmsg_type = cmd;
874 req.ifa.ifa_family = p->family;
1fdc9eae 875
64168803 876 req.ifa.ifa_index = dplane_ctx_get_ifindex(ctx);
1fdc9eae 877
64168803 878 addattr_l(&req.n, sizeof(req), IFA_LOCAL, &p->u.prefix, bytelen);
1fdc9eae 879
64168803
MS
880 if (p->family == AF_INET) {
881 if (dplane_ctx_intf_is_connected(ctx)) {
882 p = dplane_ctx_get_intf_dest(ctx);
883 addattr_l(&req.n, sizeof(req), IFA_ADDRESS,
884 &p->u.prefix, bytelen);
885 } else if (cmd == RTM_NEWADDR &&
886 dplane_ctx_intf_has_dest(ctx)) {
887 p = dplane_ctx_get_intf_dest(ctx);
888 addattr_l(&req.n, sizeof(req), IFA_BROADCAST,
d62a17ae 889 &p->u.prefix, bytelen);
890 }
891 }
1fdc9eae 892
64168803 893 /* p is now either address or destination/bcast addr */
e8d19a05
DL
894 req.ifa.ifa_prefixlen = p->prefixlen;
895
64168803 896 if (dplane_ctx_intf_is_secondary(ctx))
d62a17ae 897 SET_FLAG(req.ifa.ifa_flags, IFA_F_SECONDARY);
1fdc9eae 898
64168803
MS
899 if (dplane_ctx_intf_has_label(ctx)) {
900 label = dplane_ctx_get_intf_label(ctx);
901 addattr_l(&req.n, sizeof(req), IFA_LABEL, label,
902 strlen(label) + 1);
903 }
1fdc9eae 904
64168803
MS
905 return netlink_talk_info(netlink_talk_filter, &req.n,
906 dplane_ctx_get_ns(ctx), 0);
e86b71f1
PG
907}
908
64168803 909enum zebra_dplane_result kernel_address_update_ctx(struct zebra_dplane_ctx *ctx)
e86b71f1 910{
64168803
MS
911 return (netlink_address_ctx(ctx) == 0 ?
912 ZEBRA_DPLANE_REQUEST_SUCCESS : ZEBRA_DPLANE_REQUEST_FAILURE);
e86b71f1
PG
913}
914
2414abd3 915int netlink_interface_addr(struct nlmsghdr *h, ns_id_t ns_id, int startup)
1fdc9eae 916{
d62a17ae 917 int len;
918 struct ifaddrmsg *ifa;
919 struct rtattr *tb[IFA_MAX + 1];
920 struct interface *ifp;
921 void *addr;
922 void *broad;
d7c0a89a 923 uint8_t flags = 0;
d62a17ae 924 char *label = NULL;
925 struct zebra_ns *zns;
cde1af84 926 uint32_t metric = METRIC_MAX;
9254efed 927 uint32_t kernel_flags = 0;
d62a17ae 928
929 zns = zebra_ns_lookup(ns_id);
930 ifa = NLMSG_DATA(h);
931
8a1b681c 932 if (ifa->ifa_family != AF_INET && ifa->ifa_family != AF_INET6) {
9df414fe 933 flog_warn(
e914ccbe 934 EC_ZEBRA_UNKNOWN_FAMILY,
87b5d1b0
DS
935 "Invalid address family: %u received from kernel interface addr change: %s",
936 ifa->ifa_family, nl_msg_type_to_str(h->nlmsg_type));
d62a17ae 937 return 0;
8a1b681c 938 }
d62a17ae 939
940 if (h->nlmsg_type != RTM_NEWADDR && h->nlmsg_type != RTM_DELADDR)
941 return 0;
942
943 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ifaddrmsg));
9bdf8618
DS
944 if (len < 0) {
945 zlog_err("%s: Message received from netlink is of a broken size: %d %zu",
946 __PRETTY_FUNCTION__,
947 h->nlmsg_len,
948 (size_t)NLMSG_LENGTH(sizeof(struct ifaddrmsg)));
d62a17ae 949 return -1;
9bdf8618 950 }
d62a17ae 951
952 memset(tb, 0, sizeof tb);
953 netlink_parse_rtattr(tb, IFA_MAX, IFA_RTA(ifa), len);
954
955 ifp = if_lookup_by_index_per_ns(zns, ifa->ifa_index);
956 if (ifp == NULL) {
af4c2728 957 flog_err(
450971aa 958 EC_LIB_INTERFACE,
d62a17ae 959 "netlink_interface_addr can't find interface by index %d",
960 ifa->ifa_index);
961 return -1;
962 }
963
9254efed
DS
964 /* Flags passed through */
965 if (tb[IFA_FLAGS])
966 kernel_flags = *(int *)RTA_DATA(tb[IFA_FLAGS]);
967 else
968 kernel_flags = ifa->ifa_flags;
969
d62a17ae 970 if (IS_ZEBRA_DEBUG_KERNEL) /* remove this line to see initial ifcfg */
971 {
972 char buf[BUFSIZ];
973 zlog_debug("netlink_interface_addr %s %s flags 0x%x:",
974 nl_msg_type_to_str(h->nlmsg_type), ifp->name,
9254efed 975 kernel_flags);
d62a17ae 976 if (tb[IFA_LOCAL])
977 zlog_debug(" IFA_LOCAL %s/%d",
978 inet_ntop(ifa->ifa_family,
979 RTA_DATA(tb[IFA_LOCAL]), buf,
980 BUFSIZ),
981 ifa->ifa_prefixlen);
982 if (tb[IFA_ADDRESS])
983 zlog_debug(" IFA_ADDRESS %s/%d",
984 inet_ntop(ifa->ifa_family,
985 RTA_DATA(tb[IFA_ADDRESS]), buf,
986 BUFSIZ),
987 ifa->ifa_prefixlen);
988 if (tb[IFA_BROADCAST])
989 zlog_debug(" IFA_BROADCAST %s/%d",
990 inet_ntop(ifa->ifa_family,
991 RTA_DATA(tb[IFA_BROADCAST]), buf,
992 BUFSIZ),
993 ifa->ifa_prefixlen);
994 if (tb[IFA_LABEL] && strcmp(ifp->name, RTA_DATA(tb[IFA_LABEL])))
995 zlog_debug(" IFA_LABEL %s",
996 (char *)RTA_DATA(tb[IFA_LABEL]));
997
998 if (tb[IFA_CACHEINFO]) {
999 struct ifa_cacheinfo *ci = RTA_DATA(tb[IFA_CACHEINFO]);
1000 zlog_debug(" IFA_CACHEINFO pref %d, valid %d",
1001 ci->ifa_prefered, ci->ifa_valid);
1002 }
1003 }
1004
1005 /* logic copied from iproute2/ip/ipaddress.c:print_addrinfo() */
1006 if (tb[IFA_LOCAL] == NULL)
1007 tb[IFA_LOCAL] = tb[IFA_ADDRESS];
1008 if (tb[IFA_ADDRESS] == NULL)
1009 tb[IFA_ADDRESS] = tb[IFA_LOCAL];
1010
1011 /* local interface address */
1012 addr = (tb[IFA_LOCAL] ? RTA_DATA(tb[IFA_LOCAL]) : NULL);
1013
1014 /* is there a peer address? */
1015 if (tb[IFA_ADDRESS]
1016 && memcmp(RTA_DATA(tb[IFA_ADDRESS]), RTA_DATA(tb[IFA_LOCAL]),
1017 RTA_PAYLOAD(tb[IFA_ADDRESS]))) {
1018 broad = RTA_DATA(tb[IFA_ADDRESS]);
1019 SET_FLAG(flags, ZEBRA_IFA_PEER);
1020 } else
1021 /* seeking a broadcast address */
1022 broad = (tb[IFA_BROADCAST] ? RTA_DATA(tb[IFA_BROADCAST])
1023 : NULL);
1024
1025 /* addr is primary key, SOL if we don't have one */
1026 if (addr == NULL) {
1027 zlog_debug("%s: NULL address", __func__);
1028 return -1;
1029 }
1030
1031 /* Flags. */
9254efed 1032 if (kernel_flags & IFA_F_SECONDARY)
d62a17ae 1033 SET_FLAG(flags, ZEBRA_IFA_SECONDARY);
1034
1035 /* Label */
1036 if (tb[IFA_LABEL])
1037 label = (char *)RTA_DATA(tb[IFA_LABEL]);
1038
2e1cc436 1039 if (label && strcmp(ifp->name, label) == 0)
d62a17ae 1040 label = NULL;
1041
cde1af84
AK
1042 if (tb[IFA_RT_PRIORITY])
1043 metric = *(uint32_t *)RTA_DATA(tb[IFA_RT_PRIORITY]);
1044
d62a17ae 1045 /* Register interface address to the interface. */
1046 if (ifa->ifa_family == AF_INET) {
930571d2 1047 if (ifa->ifa_prefixlen > IPV4_MAX_BITLEN) {
e17d9b2d 1048 zlog_err(
87b5d1b0
DS
1049 "Invalid prefix length: %u received from kernel interface addr change: %s",
1050 ifa->ifa_prefixlen,
1051 nl_msg_type_to_str(h->nlmsg_type));
e17d9b2d 1052 return -1;
930571d2 1053 }
d62a17ae 1054 if (h->nlmsg_type == RTM_NEWADDR)
1055 connected_add_ipv4(ifp, flags, (struct in_addr *)addr,
1056 ifa->ifa_prefixlen,
cde1af84
AK
1057 (struct in_addr *)broad, label,
1058 metric);
d62a17ae 1059 else
1060 connected_delete_ipv4(
1061 ifp, flags, (struct in_addr *)addr,
1062 ifa->ifa_prefixlen, (struct in_addr *)broad);
1063 }
1064 if (ifa->ifa_family == AF_INET6) {
930571d2 1065 if (ifa->ifa_prefixlen > IPV6_MAX_BITLEN) {
e17d9b2d 1066 zlog_err(
87b5d1b0
DS
1067 "Invalid prefix length: %u received from kernel interface addr change: %s",
1068 ifa->ifa_prefixlen,
1069 nl_msg_type_to_str(h->nlmsg_type));
e17d9b2d 1070 return -1;
930571d2 1071 }
d62a17ae 1072 if (h->nlmsg_type == RTM_NEWADDR) {
1073 /* Only consider valid addresses; we'll not get a
1074 * notification from
1075 * the kernel till IPv6 DAD has completed, but at init
1076 * time, Quagga
1077 * does query for and will receive all addresses.
1078 */
9254efed 1079 if (!(kernel_flags
d62a17ae 1080 & (IFA_F_DADFAILED | IFA_F_TENTATIVE)))
60466a63
QY
1081 connected_add_ipv6(ifp, flags,
1082 (struct in6_addr *)addr,
60c0687a 1083 (struct in6_addr *)broad,
cde1af84
AK
1084 ifa->ifa_prefixlen, label,
1085 metric);
d62a17ae 1086 } else
1087 connected_delete_ipv6(ifp, (struct in6_addr *)addr,
60c0687a 1088 (struct in6_addr *)broad,
608105a7 1089 ifa->ifa_prefixlen);
d62a17ae 1090 }
1091
1092 return 0;
1fdc9eae 1093}
1094
2414abd3 1095int netlink_link_change(struct nlmsghdr *h, ns_id_t ns_id, int startup)
1fdc9eae 1096{
d62a17ae 1097 int len;
1098 struct ifinfomsg *ifi;
1099 struct rtattr *tb[IFLA_MAX + 1];
1100 struct rtattr *linkinfo[IFLA_MAX + 1];
1101 struct interface *ifp;
1102 char *name = NULL;
1103 char *kind = NULL;
48884c6b 1104 char *desc = NULL;
d62a17ae 1105 char *slave_kind = NULL;
1106 struct zebra_ns *zns;
1107 vrf_id_t vrf_id = VRF_DEFAULT;
1108 zebra_iftype_t zif_type = ZEBRA_IF_OTHER;
1109 zebra_slave_iftype_t zif_slave_type = ZEBRA_IF_SLAVE_NONE;
1110 ifindex_t bridge_ifindex = IFINDEX_INTERNAL;
b9368db9 1111 ifindex_t bond_ifindex = IFINDEX_INTERNAL;
d62a17ae 1112 ifindex_t link_ifindex = IFINDEX_INTERNAL;
97c4e1d0 1113 uint8_t old_hw_addr[INTERFACE_HWADDR_MAX];
ba5165ec 1114 struct zebra_if *zif;
4c634658 1115 struct vrf *vrf;
d62a17ae 1116
1117 zns = zebra_ns_lookup(ns_id);
1118 ifi = NLMSG_DATA(h);
1119
fe533c56 1120 /* assume if not default zns, then new VRF */
d62a17ae 1121 if (!(h->nlmsg_type == RTM_NEWLINK || h->nlmsg_type == RTM_DELLINK)) {
1122 /* If this is not link add/delete message so print warning. */
87b5d1b0
DS
1123 zlog_debug("netlink_link_change: wrong kernel message %s",
1124 nl_msg_type_to_str(h->nlmsg_type));
d62a17ae 1125 return 0;
1126 }
1127
8a1b681c
SW
1128 if (!(ifi->ifi_family == AF_UNSPEC || ifi->ifi_family == AF_BRIDGE
1129 || ifi->ifi_family == AF_INET6)) {
9df414fe 1130 flog_warn(
e914ccbe 1131 EC_ZEBRA_UNKNOWN_FAMILY,
87b5d1b0
DS
1132 "Invalid address family: %u received from kernel link change: %s",
1133 ifi->ifi_family, nl_msg_type_to_str(h->nlmsg_type));
8a1b681c
SW
1134 return 0;
1135 }
1136
d62a17ae 1137 len = h->nlmsg_len - NLMSG_LENGTH(sizeof(struct ifinfomsg));
9bdf8618
DS
1138 if (len < 0) {
1139 zlog_err("%s: Message received from netlink is of a broken size %d %zu",
1140 __PRETTY_FUNCTION__, h->nlmsg_len,
1141 (size_t)NLMSG_LENGTH(sizeof(struct ifinfomsg)));
d62a17ae 1142 return -1;
9bdf8618 1143 }
d62a17ae 1144
1145 /* We are interested in some AF_BRIDGE notifications. */
1146 if (ifi->ifi_family == AF_BRIDGE)
1147 return netlink_bridge_interface(h, len, ns_id, startup);
1148
1149 /* Looking up interface name. */
1150 memset(tb, 0, sizeof tb);
1151 memset(linkinfo, 0, sizeof linkinfo);
1152 netlink_parse_rtattr(tb, IFLA_MAX, IFLA_RTA(ifi), len);
1fdc9eae 1153
d62a17ae 1154 /* check for wireless messages to ignore */
1155 if ((tb[IFLA_WIRELESS] != NULL) && (ifi->ifi_change == 0)) {
1156 if (IS_ZEBRA_DEBUG_KERNEL)
1157 zlog_debug("%s: ignoring IFLA_WIRELESS message",
1158 __func__);
1159 return 0;
1160 }
1fdc9eae 1161
d62a17ae 1162 if (tb[IFLA_IFNAME] == NULL)
1163 return -1;
1164 name = (char *)RTA_DATA(tb[IFLA_IFNAME]);
1fdc9eae 1165
d62a17ae 1166 if (tb[IFLA_LINKINFO]) {
1167 parse_rtattr_nested(linkinfo, IFLA_INFO_MAX, tb[IFLA_LINKINFO]);
1fdc9eae 1168
d62a17ae 1169 if (linkinfo[IFLA_INFO_KIND])
1170 kind = RTA_DATA(linkinfo[IFLA_INFO_KIND]);
1fdc9eae 1171
d62a17ae 1172 if (linkinfo[IFLA_INFO_SLAVE_KIND])
1173 slave_kind = RTA_DATA(linkinfo[IFLA_INFO_SLAVE_KIND]);
1fdc9eae 1174
d62a17ae 1175 netlink_determine_zebra_iftype(kind, &zif_type);
1176 }
6675513d 1177
d62a17ae 1178 /* If linking to another interface, note it. */
1179 if (tb[IFLA_LINK])
1180 link_ifindex = *(ifindex_t *)RTA_DATA(tb[IFLA_LINK]);
1fdc9eae 1181
48884c6b
DS
1182 if (tb[IFLA_IFALIAS]) {
1183 desc = (char *)RTA_DATA(tb[IFLA_IFALIAS]);
1184 }
1185
d62a17ae 1186 /* If VRF, create or update the VRF structure itself. */
78dd30b2 1187 if (zif_type == ZEBRA_IF_VRF && !vrf_is_backend_netns()) {
d62a17ae 1188 netlink_vrf_change(h, tb[IFLA_LINKINFO], name);
1189 vrf_id = (vrf_id_t)ifi->ifi_index;
1190 }
1fdc9eae 1191
d62a17ae 1192 /* See if interface is present. */
1193 ifp = if_lookup_by_name_per_ns(zns, name);
1194
1195 if (h->nlmsg_type == RTM_NEWLINK) {
1196 if (tb[IFLA_MASTER]) {
78dd30b2
PG
1197 if (slave_kind && (strcmp(slave_kind, "vrf") == 0)
1198 && !vrf_is_backend_netns()) {
d62a17ae 1199 zif_slave_type = ZEBRA_IF_SLAVE_VRF;
d7c0a89a 1200 vrf_id = *(uint32_t *)RTA_DATA(tb[IFLA_MASTER]);
d62a17ae 1201 } else if (slave_kind
1202 && (strcmp(slave_kind, "bridge") == 0)) {
1203 zif_slave_type = ZEBRA_IF_SLAVE_BRIDGE;
1204 bridge_ifindex =
1205 *(ifindex_t *)RTA_DATA(tb[IFLA_MASTER]);
b9368db9
DD
1206 } else if (slave_kind
1207 && (strcmp(slave_kind, "bond") == 0)) {
1208 zif_slave_type = ZEBRA_IF_SLAVE_BOND;
1209 bond_ifindex =
1210 *(ifindex_t *)RTA_DATA(tb[IFLA_MASTER]);
d62a17ae 1211 } else
1212 zif_slave_type = ZEBRA_IF_SLAVE_OTHER;
1213 }
fe533c56
PG
1214 if (vrf_is_backend_netns())
1215 vrf_id = (vrf_id_t)ns_id;
4c634658
PG
1216
1217 vrf = vrf_lookup_by_id(vrf_id);
1218
d62a17ae 1219 if (ifp == NULL
1220 || !CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_ACTIVE)) {
1221 /* Add interface notification from kernel */
1222 if (IS_ZEBRA_DEBUG_KERNEL)
1223 zlog_debug(
1224 "RTM_NEWLINK ADD for %s(%u) vrf_id %u type %d "
1225 "sl_type %d master %u flags 0x%x",
1226 name, ifi->ifi_index, vrf_id, zif_type,
1227 zif_slave_type, bridge_ifindex,
1228 ifi->ifi_flags);
1229
1230 if (ifp == NULL) {
1231 /* unknown interface */
4c634658 1232 ifp = if_get_by_name(name, vrf);
d62a17ae 1233 } else {
1234 /* pre-configured interface, learnt now */
a41c4e1b 1235 if (ifp->vrf != vrf)
da85f5e0 1236 if_update_to_new_vrf(ifp, vrf);
d62a17ae 1237 }
1238
1239 /* Update interface information. */
1240 set_ifindex(ifp, ifi->ifi_index, zns);
1241 ifp->flags = ifi->ifi_flags & 0x0000fffff;
d23b983b 1242 if (!tb[IFLA_MTU]) {
9df414fe 1243 zlog_debug(
d23b983b
SW
1244 "RTM_NEWLINK for interface %s(%u) without MTU set",
1245 name, ifi->ifi_index);
1246 return 0;
1247 }
d62a17ae 1248 ifp->mtu6 = ifp->mtu = *(int *)RTA_DATA(tb[IFLA_MTU]);
1249 ifp->metric = 0;
1250 ifp->ptm_status = ZEBRA_PTM_STATUS_UNKNOWN;
1251
1252 /* Set interface type */
1253 zebra_if_set_ziftype(ifp, zif_type, zif_slave_type);
b0fa6f6a
CS
1254 if (IS_ZEBRA_IF_VRF(ifp))
1255 SET_FLAG(ifp->status,
1256 ZEBRA_INTERFACE_VRF_LOOPBACK);
d62a17ae 1257
1258 /* Update link. */
680c278f 1259 zebra_if_update_link(ifp, link_ifindex, ns_id);
d62a17ae 1260
1261 netlink_interface_update_hw_addr(tb, ifp);
1262
1263 /* Inform clients, install any configured addresses. */
1264 if_add_update(ifp);
1265
1266 /* Extract and save L2 interface information, take
1267 * additional actions. */
1268 netlink_interface_update_l2info(
1269 ifp, linkinfo[IFLA_INFO_DATA], 1);
1270 if (IS_ZEBRA_IF_BRIDGE_SLAVE(ifp))
1271 zebra_l2if_update_bridge_slave(ifp,
1272 bridge_ifindex);
b9368db9
DD
1273 else if (IS_ZEBRA_IF_BOND_SLAVE(ifp))
1274 zebra_l2if_update_bond_slave(ifp, bond_ifindex);
a41c4e1b 1275 } else if (ifp->vrf != vrf) {
d62a17ae 1276 /* VRF change for an interface. */
1277 if (IS_ZEBRA_DEBUG_KERNEL)
1278 zlog_debug(
1279 "RTM_NEWLINK vrf-change for %s(%u) "
1280 "vrf_id %u -> %u flags 0x%x",
a41c4e1b
PG
1281 name, ifp->ifindex, vrf_to_id(ifp->vrf),
1282 vrf_id, ifi->ifi_flags);
d62a17ae 1283
a41c4e1b 1284 if_handle_vrf_change(ifp, vrf->vrf_id);
d62a17ae 1285 } else {
b9368db9 1286 bool was_bridge_slave, was_bond_slave;
d62a17ae 1287
1288 /* Interface update. */
1289 if (IS_ZEBRA_DEBUG_KERNEL)
1290 zlog_debug(
1291 "RTM_NEWLINK update for %s(%u) "
1292 "sl_type %d master %u flags 0x%x",
1293 name, ifp->ifindex, zif_slave_type,
1294 bridge_ifindex, ifi->ifi_flags);
1295
1296 set_ifindex(ifp, ifi->ifi_index, zns);
d23b983b 1297 if (!tb[IFLA_MTU]) {
9df414fe 1298 zlog_debug(
d23b983b
SW
1299 "RTM_NEWLINK for interface %s(%u) without MTU set",
1300 name, ifi->ifi_index);
1301 return 0;
1302 }
d62a17ae 1303 ifp->mtu6 = ifp->mtu = *(int *)RTA_DATA(tb[IFLA_MTU]);
1304 ifp->metric = 0;
1305
1306 /* Update interface type - NOTE: Only slave_type can
1307 * change. */
1308 was_bridge_slave = IS_ZEBRA_IF_BRIDGE_SLAVE(ifp);
b9368db9 1309 was_bond_slave = IS_ZEBRA_IF_BOND_SLAVE(ifp);
d62a17ae 1310 zebra_if_set_ziftype(ifp, zif_type, zif_slave_type);
1311
97c4e1d0
CS
1312 memcpy(old_hw_addr, ifp->hw_addr, INTERFACE_HWADDR_MAX);
1313
d62a17ae 1314 netlink_interface_update_hw_addr(tb, ifp);
1315
1316 if (if_is_no_ptm_operative(ifp)) {
1317 ifp->flags = ifi->ifi_flags & 0x0000fffff;
1318 if (!if_is_no_ptm_operative(ifp)) {
1319 if (IS_ZEBRA_DEBUG_KERNEL)
1320 zlog_debug(
1321 "Intf %s(%u) has gone DOWN",
1322 name, ifp->ifindex);
1323 if_down(ifp);
1324 } else if (if_is_operative(ifp)) {
1325 /* Must notify client daemons of new
1326 * interface status. */
1327 if (IS_ZEBRA_DEBUG_KERNEL)
1328 zlog_debug(
1329 "Intf %s(%u) PTM up, notifying clients",
1330 name, ifp->ifindex);
1331 zebra_interface_up_update(ifp);
97c4e1d0
CS
1332
1333 /* Update EVPN VNI when SVI MAC change
1334 */
1335 if (IS_ZEBRA_IF_VLAN(ifp) &&
1336 memcmp(old_hw_addr, ifp->hw_addr,
1337 INTERFACE_HWADDR_MAX)) {
1338 struct interface *link_if;
1339
1340 link_if =
1341 if_lookup_by_index_per_ns(
1342 zebra_ns_lookup(NS_DEFAULT),
1343 link_ifindex);
1344 if (link_if)
1345 zebra_vxlan_svi_up(ifp,
1346 link_if);
1347 }
d62a17ae 1348 }
1349 } else {
1350 ifp->flags = ifi->ifi_flags & 0x0000fffff;
1351 if (if_is_operative(ifp)) {
1352 if (IS_ZEBRA_DEBUG_KERNEL)
1353 zlog_debug(
1354 "Intf %s(%u) has come UP",
1355 name, ifp->ifindex);
1356 if_up(ifp);
1357 }
1358 }
1359
1360 /* Extract and save L2 interface information, take
1361 * additional actions. */
1362 netlink_interface_update_l2info(
1363 ifp, linkinfo[IFLA_INFO_DATA], 0);
1364 if (IS_ZEBRA_IF_BRIDGE_SLAVE(ifp) || was_bridge_slave)
1365 zebra_l2if_update_bridge_slave(ifp,
1366 bridge_ifindex);
b9368db9
DD
1367 else if (IS_ZEBRA_IF_BOND_SLAVE(ifp) || was_bond_slave)
1368 zebra_l2if_update_bond_slave(ifp, bond_ifindex);
d62a17ae 1369 }
1370 } else {
1371 /* Delete interface notification from kernel */
1372 if (ifp == NULL) {
9df414fe
QY
1373 if (IS_ZEBRA_DEBUG_KERNEL)
1374 zlog_debug(
1375 "RTM_DELLINK for unknown interface %s(%u)",
1376 name, ifi->ifi_index);
d62a17ae 1377 return 0;
1378 }
1379
1380 if (IS_ZEBRA_DEBUG_KERNEL)
1381 zlog_debug("RTM_DELLINK for %s(%u)", name,
1382 ifp->ifindex);
1383
1384 UNSET_FLAG(ifp->status, ZEBRA_INTERFACE_VRF_LOOPBACK);
1385
1386 /* Special handling for bridge or VxLAN interfaces. */
1387 if (IS_ZEBRA_IF_BRIDGE(ifp))
1388 zebra_l2_bridge_del(ifp);
1389 else if (IS_ZEBRA_IF_VXLAN(ifp))
1390 zebra_l2_vxlanif_del(ifp);
1391
1392 if (!IS_ZEBRA_IF_VRF(ifp))
1393 if_delete_update(ifp);
1fdc9eae 1394 }
1395
ba5165ec
DS
1396 zif = ifp->info;
1397 if (zif) {
1398 XFREE(MTYPE_TMP, zif->desc);
1399 if (desc)
1400 zif->desc = XSTRDUP(MTYPE_TMP, desc);
1401 }
1402
d62a17ae 1403 return 0;
1fdc9eae 1404}
718e3744 1405
c3bd894e
QY
1406int netlink_protodown(struct interface *ifp, bool down)
1407{
1408 struct zebra_ns *zns = zebra_ns_lookup(NS_DEFAULT);
1409
1410 struct {
1411 struct nlmsghdr n;
1412 struct ifinfomsg ifa;
1413 char buf[NL_PKT_BUF_SIZE];
1414 } req;
1415
2fff50ec 1416 memset(&req, 0, sizeof(req));
c3bd894e
QY
1417
1418 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
1419 req.n.nlmsg_flags = NLM_F_REQUEST;
1420 req.n.nlmsg_type = RTM_SETLINK;
1421 req.n.nlmsg_pid = zns->netlink_cmd.snl.nl_pid;
1422
1423 req.ifa.ifi_index = ifp->ifindex;
1424
2fff50ec
QY
1425 addattr_l(&req.n, sizeof(req), IFLA_PROTO_DOWN, &down, 4);
1426 addattr_l(&req.n, sizeof(req), IFLA_LINK, &ifp->ifindex, 4);
c3bd894e
QY
1427
1428 return netlink_talk(netlink_talk_filter, &req.n, &zns->netlink_cmd, zns,
1429 0);
1430}
1431
718e3744 1432/* Interface information read by netlink. */
d62a17ae 1433void interface_list(struct zebra_ns *zns)
718e3744 1434{
d62a17ae 1435 interface_lookup_netlink(zns);
718e3744 1436}
ddfeb486
DL
1437
1438#endif /* GNU_LINUX */