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