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