3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
5 * This file is part of GNU Zebra.
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
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.
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
26 #include "lib_errors.h"
31 #include "sockunion.h"
37 #include "northbound_cli.h"
38 #include "lib/if_clippy.c"
40 DEFINE_MTYPE_STATIC(LIB
, IF
, "Interface");
41 DEFINE_MTYPE_STATIC(LIB
, IFDESC
, "Intf Desc");
42 DEFINE_MTYPE_STATIC(LIB
, CONNECTED
, "Connected");
43 DEFINE_MTYPE_STATIC(LIB
, NBR_CONNECTED
, "Neighbor Connected");
44 DEFINE_MTYPE(LIB
, CONNECTED_LABEL
, "Connected interface label");
45 DEFINE_MTYPE_STATIC(LIB
, IF_LINK_PARAMS
, "Informational Link Parameters");
47 static void if_set_name(struct interface
*ifp
, const char *name
);
48 static struct interface
*if_lookup_by_ifindex(ifindex_t ifindex
,
50 static struct interface
*if_lookup_by_index_all_vrf(ifindex_t ifindex
);
51 static int if_cmp_func(const struct interface
*, const struct interface
*);
52 static int if_cmp_index_func(const struct interface
*ifp1
,
53 const struct interface
*ifp2
);
54 RB_GENERATE(if_name_head
, interface
, name_entry
, if_cmp_func
);
55 RB_GENERATE(if_index_head
, interface
, index_entry
, if_cmp_index_func
);
57 DEFINE_QOBJ_TYPE(interface
);
59 DEFINE_HOOK(if_add
, (struct interface
* ifp
), (ifp
));
60 DEFINE_KOOH(if_del
, (struct interface
* ifp
), (ifp
));
62 static struct interface_master
{
63 int (*create_hook
)(struct interface
*ifp
);
64 int (*up_hook
)(struct interface
*ifp
);
65 int (*down_hook
)(struct interface
*ifp
);
66 int (*destroy_hook
)(struct interface
*ifp
);
67 } ifp_master
= { 0, };
69 /* Compare interface names, returning an integer greater than, equal to, or
70 * less than 0, (following the strcmp convention), according to the
71 * relationship between ifp1 and ifp2. Interface names consist of an
72 * alphabetic prefix and a numeric suffix. The primary sort key is
73 * lexicographic by name, and then numeric by number. No number sorts
74 * before all numbers. Examples: de0 < de1, de100 < fxp0 < xl0, devpty <
77 int if_cmp_name_func(const char *p1
, const char *p2
)
86 /* look up to any number */
87 l1
= strcspn(p1
, "0123456789");
88 l2
= strcspn(p2
, "0123456789");
90 /* name lengths are different -> compare names */
92 return (strcmp(p1
, p2
));
94 /* Note that this relies on all numbers being less than all
98 res
= strncmp(p1
, p2
, l1
);
100 /* names are different -> compare them */
104 /* with identical name part, go to numeric part */
115 x1
= strtol(p1
, (char **)&tmp1
, 10);
116 x2
= strtol(p2
, (char **)&tmp2
, 10);
118 /* let's compare numbers now */
124 /* Compare string if numbers are equal (distinguish foo-1 from foo-001) */
125 l1
= strspn(p1
, "0123456789");
126 l2
= strspn(p2
, "0123456789");
128 return (strcmp(p1
, p2
));
130 /* Continue to parse the rest of the string */
131 p1
= (const char *)tmp1
;
132 p2
= (const char *)tmp2
;
134 /* numbers were equal, lets do it again..
135 (it happens with name like "eth123.456:789") */
144 static int if_cmp_func(const struct interface
*ifp1
,
145 const struct interface
*ifp2
)
147 return if_cmp_name_func(ifp1
->name
, ifp2
->name
);
150 static int if_cmp_index_func(const struct interface
*ifp1
,
151 const struct interface
*ifp2
)
153 if (ifp1
->ifindex
== ifp2
->ifindex
)
155 else if (ifp1
->ifindex
> ifp2
->ifindex
)
161 static void ifp_connected_free(void *arg
)
163 struct connected
*c
= arg
;
168 /* Create new interface structure. */
169 static struct interface
*if_new(struct vrf
*vrf
)
171 struct interface
*ifp
;
175 ifp
= XCALLOC(MTYPE_IF
, sizeof(struct interface
));
177 ifp
->ifindex
= IFINDEX_INTERNAL
;
182 ifp
->connected
= list_new();
183 ifp
->connected
->del
= ifp_connected_free
;
185 ifp
->nbr_connected
= list_new();
186 ifp
->nbr_connected
->del
= (void (*)(void *))nbr_connected_free
;
188 /* Enable Link-detection by default */
189 SET_FLAG(ifp
->status
, ZEBRA_INTERFACE_LINKDETECTION
);
191 QOBJ_REG(ifp
, interface
);
195 void if_new_via_zapi(struct interface
*ifp
)
197 if (ifp_master
.create_hook
)
198 (*ifp_master
.create_hook
)(ifp
);
201 void if_destroy_via_zapi(struct interface
*ifp
)
203 if (ifp_master
.destroy_hook
)
204 (*ifp_master
.destroy_hook
)(ifp
);
206 ifp
->oldifindex
= ifp
->ifindex
;
207 if_set_index(ifp
, IFINDEX_INTERNAL
);
209 if (!ifp
->configured
)
213 void if_up_via_zapi(struct interface
*ifp
)
215 if (ifp_master
.up_hook
)
216 (*ifp_master
.up_hook
)(ifp
);
219 void if_down_via_zapi(struct interface
*ifp
)
221 if (ifp_master
.down_hook
)
222 (*ifp_master
.down_hook
)(ifp
);
225 static struct interface
*if_create_name(const char *name
, struct vrf
*vrf
)
227 struct interface
*ifp
;
231 if_set_name(ifp
, name
);
233 hook_call(if_add
, ifp
);
237 /* Create new interface structure. */
238 void if_update_to_new_vrf(struct interface
*ifp
, vrf_id_t vrf_id
)
240 struct vrf
*old_vrf
, *vrf
;
242 /* remove interface from old master vrf list */
245 if (ifp
->name
[0] != '\0')
246 IFNAME_RB_REMOVE(old_vrf
, ifp
);
248 if (ifp
->ifindex
!= IFINDEX_INTERNAL
)
249 IFINDEX_RB_REMOVE(old_vrf
, ifp
);
251 vrf
= vrf_get(vrf_id
, NULL
);
254 if (ifp
->name
[0] != '\0')
255 IFNAME_RB_INSERT(vrf
, ifp
);
257 if (ifp
->ifindex
!= IFINDEX_INTERNAL
)
258 IFINDEX_RB_INSERT(vrf
, ifp
);
262 /* Delete interface structure. */
263 void if_delete_retain(struct interface
*ifp
)
265 hook_call(if_del
, ifp
);
268 /* Free connected address list */
269 list_delete_all_node(ifp
->connected
);
271 /* Free connected nbr address list */
272 list_delete_all_node(ifp
->nbr_connected
);
275 /* Delete and free interface structure. */
276 void if_delete(struct interface
**ifp
)
278 struct interface
*ptr
= *ifp
;
279 struct vrf
*vrf
= ptr
->vrf
;
281 IFNAME_RB_REMOVE(vrf
, ptr
);
282 if (ptr
->ifindex
!= IFINDEX_INTERNAL
)
283 IFINDEX_RB_REMOVE(vrf
, ptr
);
285 if_delete_retain(ptr
);
287 list_delete(&ptr
->connected
);
288 list_delete(&ptr
->nbr_connected
);
290 if_link_params_free(ptr
);
292 XFREE(MTYPE_IFDESC
, ptr
->desc
);
294 XFREE(MTYPE_IF
, ptr
);
298 /* Used only internally to check within VRF only */
299 static struct interface
*if_lookup_by_ifindex(ifindex_t ifindex
,
303 struct interface if_tmp
;
305 vrf
= vrf_lookup_by_id(vrf_id
);
309 if_tmp
.ifindex
= ifindex
;
310 return RB_FIND(if_index_head
, &vrf
->ifaces_by_index
, &if_tmp
);
313 /* Interface existence check by index. */
314 struct interface
*if_lookup_by_index(ifindex_t ifindex
, vrf_id_t vrf_id
)
316 switch (vrf_get_backend()) {
317 case VRF_BACKEND_UNKNOWN
:
318 case VRF_BACKEND_NETNS
:
319 return(if_lookup_by_ifindex(ifindex
, vrf_id
));
320 case VRF_BACKEND_VRF_LITE
:
321 return(if_lookup_by_index_all_vrf(ifindex
));
326 /* Interface existence check by index. */
327 struct interface
*if_vrf_lookup_by_index_next(ifindex_t ifindex
,
330 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
331 struct interface
*tmp_ifp
;
338 tmp_ifp
= RB_MIN(if_index_head
, &vrf
->ifaces_by_index
);
339 /* skip the vrf interface */
340 if (tmp_ifp
&& if_is_vrf(tmp_ifp
))
341 ifindex
= tmp_ifp
->ifindex
;
346 RB_FOREACH (tmp_ifp
, if_index_head
, &vrf
->ifaces_by_index
) {
348 /* skip the vrf interface */
349 if (tmp_ifp
&& if_is_vrf(tmp_ifp
))
354 if (tmp_ifp
->ifindex
== ifindex
)
360 const char *ifindex2ifname(ifindex_t ifindex
, vrf_id_t vrf_id
)
362 struct interface
*ifp
;
364 return ((ifp
= if_lookup_by_index(ifindex
, vrf_id
)) != NULL
)
369 ifindex_t
ifname2ifindex(const char *name
, vrf_id_t vrf_id
)
371 struct interface
*ifp
;
373 return ((ifp
= if_lookup_by_name(name
, vrf_id
)) != NULL
)
378 /* Interface existence check by interface name. */
379 struct interface
*if_lookup_by_name(const char *name
, vrf_id_t vrf_id
)
381 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
382 struct interface if_tmp
;
385 || strnlen(name
, INTERFACE_NAMSIZ
) == INTERFACE_NAMSIZ
)
388 strlcpy(if_tmp
.name
, name
, sizeof(if_tmp
.name
));
389 return RB_FIND(if_name_head
, &vrf
->ifaces_by_name
, &if_tmp
);
392 struct interface
*if_lookup_by_name_vrf(const char *name
, struct vrf
*vrf
)
394 struct interface if_tmp
;
396 if (!name
|| strnlen(name
, INTERFACE_NAMSIZ
) == INTERFACE_NAMSIZ
)
399 strlcpy(if_tmp
.name
, name
, sizeof(if_tmp
.name
));
400 return RB_FIND(if_name_head
, &vrf
->ifaces_by_name
, &if_tmp
);
403 static struct interface
*if_lookup_by_name_all_vrf(const char *name
)
406 struct interface
*ifp
;
408 if (!name
|| strnlen(name
, INTERFACE_NAMSIZ
) == INTERFACE_NAMSIZ
)
411 RB_FOREACH (vrf
, vrf_name_head
, &vrfs_by_name
) {
412 ifp
= if_lookup_by_name_vrf(name
, vrf
);
420 static struct interface
*if_lookup_by_index_all_vrf(ifindex_t ifindex
)
423 struct interface
*ifp
;
425 if (ifindex
== IFINDEX_INTERNAL
)
428 RB_FOREACH (vrf
, vrf_id_head
, &vrfs_by_id
) {
429 ifp
= if_lookup_by_ifindex(ifindex
, vrf
->vrf_id
);
437 /* Lookup interface by IP address.
439 * supersedes if_lookup_exact_address(), which didn't care about up/down
440 * state. but all users we have either only care if the address is local
441 * (=> use if_address_is_local() please), or care about UP interfaces before
444 * to accept only UP interfaces, check if_is_up() on the returned ifp.
446 struct interface
*if_lookup_address_local(const void *src
, int family
,
449 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
450 struct listnode
*cnode
;
451 struct interface
*ifp
, *best_down
= NULL
;
455 if (family
!= AF_INET
&& family
!= AF_INET6
)
458 FOR_ALL_INTERFACES (vrf
, ifp
) {
459 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, cnode
, c
)) {
462 if (!p
|| p
->family
!= family
)
465 if (family
== AF_INET
) {
466 if (!IPV4_ADDR_SAME(&p
->u
.prefix4
,
467 (struct in_addr
*)src
))
469 } else if (family
== AF_INET6
) {
470 if (!IPV6_ADDR_SAME(&p
->u
.prefix6
,
471 (struct in6_addr
*)src
))
484 /* Lookup interface by IP address. */
485 struct connected
*if_lookup_address(const void *matchaddr
, int family
,
488 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
491 struct listnode
*cnode
;
492 struct interface
*ifp
;
494 struct connected
*match
;
496 if (family
== AF_INET
) {
497 addr
.family
= AF_INET
;
498 addr
.u
.prefix4
= *((struct in_addr
*)matchaddr
);
499 addr
.prefixlen
= IPV4_MAX_BITLEN
;
500 } else if (family
== AF_INET6
) {
501 addr
.family
= AF_INET6
;
502 addr
.u
.prefix6
= *((struct in6_addr
*)matchaddr
);
503 addr
.prefixlen
= IPV6_MAX_BITLEN
;
505 assert(!"Attempted lookup of family not supported");
509 FOR_ALL_INTERFACES (vrf
, ifp
) {
510 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, cnode
, c
)) {
511 if (c
->address
&& (c
->address
->family
== AF_INET
)
512 && prefix_match(CONNECTED_PREFIX(c
), &addr
)
513 && (c
->address
->prefixlen
> bestlen
)) {
514 bestlen
= c
->address
->prefixlen
;
522 /* Lookup interface by prefix */
523 struct interface
*if_lookup_prefix(const struct prefix
*prefix
, vrf_id_t vrf_id
)
525 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
526 struct listnode
*cnode
;
527 struct interface
*ifp
;
530 FOR_ALL_INTERFACES (vrf
, ifp
) {
531 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, cnode
, c
)) {
532 if (prefix_cmp(c
->address
, prefix
) == 0) {
540 size_t if_lookup_by_hwaddr(const uint8_t *hw_addr
, size_t addrsz
,
541 struct interface
***result
, vrf_id_t vrf_id
)
543 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
545 struct list
*rs
= list_new();
546 struct interface
*ifp
;
548 FOR_ALL_INTERFACES (vrf
, ifp
) {
549 if (ifp
->hw_addr_len
== (int)addrsz
550 && !memcmp(hw_addr
, ifp
->hw_addr
, addrsz
))
551 listnode_add(rs
, ifp
);
555 *result
= XCALLOC(MTYPE_TMP
,
556 sizeof(struct interface
*) * rs
->count
);
557 list_to_array(rs
, (void **)*result
, rs
->count
);
560 int count
= rs
->count
;
567 /* Get the VRF loopback interface, i.e. the loopback on the default VRF
568 * or the VRF interface.
570 struct interface
*if_get_vrf_loopback(vrf_id_t vrf_id
)
572 struct interface
*ifp
= NULL
;
573 struct vrf
*vrf
= vrf_lookup_by_id(vrf_id
);
575 FOR_ALL_INTERFACES (vrf
, ifp
)
576 if (if_is_loopback(ifp
))
582 /* Get interface by name if given name interface doesn't exist create
584 struct interface
*if_get_by_name(const char *name
, vrf_id_t vrf_id
,
585 const char *vrf_name
)
587 struct interface
*ifp
= NULL
;
590 switch (vrf_get_backend()) {
591 case VRF_BACKEND_UNKNOWN
:
592 case VRF_BACKEND_NETNS
:
593 vrf
= vrf_get(vrf_id
, vrf_name
);
596 ifp
= if_lookup_by_name_vrf(name
, vrf
);
598 /* If it came from the kernel or by way of zclient,
599 * believe it and update the ifp accordingly.
601 if (ifp
->vrf
->vrf_id
!= vrf_id
&& vrf_id
!= VRF_UNKNOWN
)
602 if_update_to_new_vrf(ifp
, vrf_id
);
608 case VRF_BACKEND_VRF_LITE
:
609 ifp
= if_lookup_by_name_all_vrf(name
);
611 /* If it came from the kernel or by way of zclient,
612 * believe it and update the ifp accordingly.
614 if (ifp
->vrf
->vrf_id
!= vrf_id
&& vrf_id
!= VRF_UNKNOWN
)
615 if_update_to_new_vrf(ifp
, vrf_id
);
620 vrf
= vrf_get(vrf_id
, vrf_name
);
628 return if_create_name(name
, vrf
);
631 int if_set_index(struct interface
*ifp
, ifindex_t ifindex
)
633 if (ifp
->ifindex
== ifindex
)
637 * If there is already an interface with this ifindex, we will collide
638 * on insertion, so don't even try.
640 if (if_lookup_by_ifindex(ifindex
, ifp
->vrf
->vrf_id
))
643 if (ifp
->ifindex
!= IFINDEX_INTERNAL
)
644 IFINDEX_RB_REMOVE(ifp
->vrf
, ifp
);
646 ifp
->ifindex
= ifindex
;
648 if (ifp
->ifindex
!= IFINDEX_INTERNAL
) {
650 * This should never happen, since we checked if there was
651 * already an interface with the desired ifindex at the top of
652 * the function. Nevertheless.
654 if (IFINDEX_RB_INSERT(ifp
->vrf
, ifp
))
661 static void if_set_name(struct interface
*ifp
, const char *name
)
663 if (if_cmp_name_func(ifp
->name
, name
) == 0)
666 if (ifp
->name
[0] != '\0')
667 IFNAME_RB_REMOVE(ifp
->vrf
, ifp
);
669 strlcpy(ifp
->name
, name
, sizeof(ifp
->name
));
671 if (ifp
->name
[0] != '\0')
672 IFNAME_RB_INSERT(ifp
->vrf
, ifp
);
675 /* Does interface up ? */
676 int if_is_up(const struct interface
*ifp
)
678 return ifp
->flags
& IFF_UP
;
681 /* Is interface running? */
682 int if_is_running(const struct interface
*ifp
)
684 return ifp
->flags
& IFF_RUNNING
;
687 /* Is the interface operative, eg. either UP & RUNNING
688 or UP & !ZEBRA_INTERFACE_LINK_DETECTION and
689 if ptm checking is enabled, then ptm check has passed */
690 int if_is_operative(const struct interface
*ifp
)
692 return ((ifp
->flags
& IFF_UP
)
693 && (((ifp
->flags
& IFF_RUNNING
)
694 && (ifp
->ptm_status
|| !ifp
->ptm_enable
))
695 || !CHECK_FLAG(ifp
->status
,
696 ZEBRA_INTERFACE_LINKDETECTION
)));
699 /* Is the interface operative, eg. either UP & RUNNING
700 or UP & !ZEBRA_INTERFACE_LINK_DETECTION, without PTM check */
701 int if_is_no_ptm_operative(const struct interface
*ifp
)
703 return ((ifp
->flags
& IFF_UP
)
704 && ((ifp
->flags
& IFF_RUNNING
)
705 || !CHECK_FLAG(ifp
->status
,
706 ZEBRA_INTERFACE_LINKDETECTION
)));
709 /* Is this loopback interface ? */
710 int if_is_loopback_exact(const struct interface
*ifp
)
712 /* XXX: Do this better, eg what if IFF_WHATEVER means X on platform M
713 * but Y on platform N?
715 return (ifp
->flags
& (IFF_LOOPBACK
| IFF_NOXMIT
| IFF_VIRTUAL
));
718 /* Check interface is VRF */
719 int if_is_vrf(const struct interface
*ifp
)
721 return CHECK_FLAG(ifp
->status
, ZEBRA_INTERFACE_VRF_LOOPBACK
);
724 /* Should this interface be treated as a loopback? */
725 bool if_is_loopback(const struct interface
*ifp
)
727 if (if_is_loopback_exact(ifp
) || if_is_vrf(ifp
))
733 /* Does this interface support broadcast ? */
734 int if_is_broadcast(const struct interface
*ifp
)
736 return ifp
->flags
& IFF_BROADCAST
;
739 /* Does this interface support pointopoint ? */
740 int if_is_pointopoint(const struct interface
*ifp
)
742 return ifp
->flags
& IFF_POINTOPOINT
;
745 /* Does this interface support multicast ? */
746 int if_is_multicast(const struct interface
*ifp
)
748 return ifp
->flags
& IFF_MULTICAST
;
751 /* Printout flag information into log */
752 const char *if_flag_dump(unsigned long flag
)
755 static char logbuf
[BUFSIZ
];
757 #define IFF_OUT_LOG(X, STR) \
760 strlcat(logbuf, ",", sizeof(logbuf)); \
763 strlcat(logbuf, STR, sizeof(logbuf)); \
766 strlcpy(logbuf
, "<", BUFSIZ
);
767 IFF_OUT_LOG(IFF_UP
, "UP");
768 IFF_OUT_LOG(IFF_BROADCAST
, "BROADCAST");
769 IFF_OUT_LOG(IFF_DEBUG
, "DEBUG");
770 IFF_OUT_LOG(IFF_LOOPBACK
, "LOOPBACK");
771 IFF_OUT_LOG(IFF_POINTOPOINT
, "POINTOPOINT");
772 IFF_OUT_LOG(IFF_NOTRAILERS
, "NOTRAILERS");
773 IFF_OUT_LOG(IFF_RUNNING
, "RUNNING");
774 IFF_OUT_LOG(IFF_NOARP
, "NOARP");
775 IFF_OUT_LOG(IFF_PROMISC
, "PROMISC");
776 IFF_OUT_LOG(IFF_ALLMULTI
, "ALLMULTI");
777 IFF_OUT_LOG(IFF_OACTIVE
, "OACTIVE");
778 IFF_OUT_LOG(IFF_SIMPLEX
, "SIMPLEX");
779 IFF_OUT_LOG(IFF_LINK0
, "LINK0");
780 IFF_OUT_LOG(IFF_LINK1
, "LINK1");
781 IFF_OUT_LOG(IFF_LINK2
, "LINK2");
782 IFF_OUT_LOG(IFF_MULTICAST
, "MULTICAST");
783 IFF_OUT_LOG(IFF_NOXMIT
, "NOXMIT");
784 IFF_OUT_LOG(IFF_NORTEXCH
, "NORTEXCH");
785 IFF_OUT_LOG(IFF_VIRTUAL
, "VIRTUAL");
786 IFF_OUT_LOG(IFF_IPV4
, "IPv4");
787 IFF_OUT_LOG(IFF_IPV6
, "IPv6");
789 strlcat(logbuf
, ">", sizeof(logbuf
));
796 static void if_dump(const struct interface
*ifp
)
798 struct listnode
*node
;
799 struct connected
*c
__attribute__((unused
));
801 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, node
, c
))
803 "Interface %s vrf %s(%u) index %d metric %d mtu %d mtu6 %d %s",
804 ifp
->name
, ifp
->vrf
->name
, ifp
->vrf
->vrf_id
,
805 ifp
->ifindex
, ifp
->metric
, ifp
->mtu
, ifp
->mtu6
,
806 if_flag_dump(ifp
->flags
));
809 /* Interface printing for all interface. */
810 void if_dump_all(void)
815 RB_FOREACH (vrf
, vrf_id_head
, &vrfs_by_id
)
816 FOR_ALL_INTERFACES (vrf
, ifp
)
820 /* Allocate connected structure. */
821 struct connected
*connected_new(void)
823 return XCALLOC(MTYPE_CONNECTED
, sizeof(struct connected
));
826 /* Allocate nbr connected structure. */
827 struct nbr_connected
*nbr_connected_new(void)
829 return XCALLOC(MTYPE_NBR_CONNECTED
, sizeof(struct nbr_connected
));
832 /* Free connected structure. */
833 void connected_free(struct connected
**connected
)
835 struct connected
*ptr
= *connected
;
837 prefix_free(&ptr
->address
);
838 prefix_free(&ptr
->destination
);
840 XFREE(MTYPE_CONNECTED_LABEL
, ptr
->label
);
842 XFREE(MTYPE_CONNECTED
, ptr
);
846 /* Free nbr connected structure. */
847 void nbr_connected_free(struct nbr_connected
*connected
)
849 if (connected
->address
)
850 prefix_free(&connected
->address
);
852 XFREE(MTYPE_NBR_CONNECTED
, connected
);
855 /* If same interface nbr address already exists... */
856 struct nbr_connected
*nbr_connected_check(struct interface
*ifp
,
859 struct nbr_connected
*ifc
;
860 struct listnode
*node
;
862 for (ALL_LIST_ELEMENTS_RO(ifp
->nbr_connected
, node
, ifc
))
863 if (prefix_same(ifc
->address
, p
))
869 /* Print if_addr structure. */
870 static void __attribute__((unused
))
871 connected_log(struct connected
*connected
, char *str
)
874 struct interface
*ifp
;
878 ifp
= connected
->ifp
;
879 p
= connected
->address
;
881 snprintf(logbuf
, sizeof(logbuf
), "%s interface %s vrf %s(%u) %s %pFX ",
882 str
, ifp
->name
, ifp
->vrf
->name
, ifp
->vrf
->vrf_id
,
883 prefix_family_str(p
), p
);
885 p
= connected
->destination
;
887 strlcat(logbuf
, inet_ntop(p
->family
, &p
->u
.prefix
, buf
, BUFSIZ
),
890 zlog_info("%s", logbuf
);
893 /* Print if_addr structure. */
894 static void __attribute__((unused
))
895 nbr_connected_log(struct nbr_connected
*connected
, char *str
)
898 struct interface
*ifp
;
901 ifp
= connected
->ifp
;
902 p
= connected
->address
;
904 snprintf(logbuf
, sizeof(logbuf
), "%s interface %s %s %pFX ", str
,
905 ifp
->name
, prefix_family_str(p
), p
);
907 zlog_info("%s", logbuf
);
910 /* If two connected address has same prefix return 1. */
911 static int connected_same_prefix(const struct prefix
*p1
,
912 const struct prefix
*p2
)
914 if (p1
->family
== p2
->family
) {
915 if (p1
->family
== AF_INET
916 && IPV4_ADDR_SAME(&p1
->u
.prefix4
, &p2
->u
.prefix4
))
918 if (p1
->family
== AF_INET6
919 && IPV6_ADDR_SAME(&p1
->u
.prefix6
, &p2
->u
.prefix6
))
925 /* count the number of connected addresses that are in the given family */
926 unsigned int connected_count_by_family(struct interface
*ifp
, int family
)
928 struct listnode
*cnode
;
929 struct connected
*connected
;
930 unsigned int cnt
= 0;
932 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, cnode
, connected
))
933 if (connected
->address
->family
== family
)
939 struct connected
*connected_lookup_prefix_exact(struct interface
*ifp
,
940 const struct prefix
*p
)
942 struct listnode
*node
;
943 struct listnode
*next
;
944 struct connected
*ifc
;
946 for (node
= listhead(ifp
->connected
); node
; node
= next
) {
947 ifc
= listgetdata(node
);
950 if (connected_same_prefix(ifc
->address
, p
))
956 struct connected
*connected_delete_by_prefix(struct interface
*ifp
,
959 struct listnode
*node
;
960 struct listnode
*next
;
961 struct connected
*ifc
;
963 /* In case of same prefix come, replace it with new one. */
964 for (node
= listhead(ifp
->connected
); node
; node
= next
) {
965 ifc
= listgetdata(node
);
968 if (connected_same_prefix(ifc
->address
, p
)) {
969 listnode_delete(ifp
->connected
, ifc
);
976 /* Find the address on our side that will be used when packets
978 struct connected
*connected_lookup_prefix(struct interface
*ifp
,
979 const struct prefix
*addr
)
981 struct listnode
*cnode
;
983 struct connected
*match
;
987 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, cnode
, c
)) {
988 if (c
->address
&& (c
->address
->family
== addr
->family
)
989 && prefix_match(CONNECTED_PREFIX(c
), addr
)
991 || (c
->address
->prefixlen
> match
->address
->prefixlen
)))
997 struct connected
*connected_add_by_prefix(struct interface
*ifp
,
999 struct prefix
*destination
)
1001 struct connected
*ifc
;
1003 /* Allocate new connected address. */
1004 ifc
= connected_new();
1007 /* Fetch interface address */
1008 ifc
->address
= prefix_new();
1009 memcpy(ifc
->address
, p
, sizeof(struct prefix
));
1011 /* Fetch dest address */
1013 ifc
->destination
= prefix_new();
1014 memcpy(ifc
->destination
, destination
, sizeof(struct prefix
));
1017 /* Add connected address to the interface. */
1018 listnode_add(ifp
->connected
, ifc
);
1022 struct connected
*connected_get_linklocal(struct interface
*ifp
)
1025 struct connected
*c
= NULL
;
1027 for (ALL_LIST_ELEMENTS_RO(ifp
->connected
, n
, c
)) {
1028 if (c
->address
->family
== AF_INET6
1029 && IN6_IS_ADDR_LINKLOCAL(&c
->address
->u
.prefix6
))
1035 void if_terminate(struct vrf
*vrf
)
1037 struct interface
*ifp
;
1039 while (!RB_EMPTY(if_name_head
, &vrf
->ifaces_by_name
)) {
1040 ifp
= RB_ROOT(if_name_head
, &vrf
->ifaces_by_name
);
1043 ifp
->node
->info
= NULL
;
1044 route_unlock_node(ifp
->node
);
1050 const char *if_link_type_str(enum zebra_link_type llt
)
1053 #define llts(T,S) case (T): return (S)
1054 llts(ZEBRA_LLT_UNKNOWN
, "Unknown");
1055 llts(ZEBRA_LLT_ETHER
, "Ethernet");
1056 llts(ZEBRA_LLT_EETHER
, "Experimental Ethernet");
1057 llts(ZEBRA_LLT_AX25
, "AX.25 Level 2");
1058 llts(ZEBRA_LLT_PRONET
, "PROnet token ring");
1059 llts(ZEBRA_LLT_IEEE802
, "IEEE 802.2 Ethernet/TR/TB");
1060 llts(ZEBRA_LLT_ARCNET
, "ARCnet");
1061 llts(ZEBRA_LLT_APPLETLK
, "AppleTalk");
1062 llts(ZEBRA_LLT_DLCI
, "Frame Relay DLCI");
1063 llts(ZEBRA_LLT_ATM
, "ATM");
1064 llts(ZEBRA_LLT_METRICOM
, "Metricom STRIP");
1065 llts(ZEBRA_LLT_IEEE1394
, "IEEE 1394 IPv4");
1066 llts(ZEBRA_LLT_EUI64
, "EUI-64");
1067 llts(ZEBRA_LLT_INFINIBAND
, "InfiniBand");
1068 llts(ZEBRA_LLT_SLIP
, "SLIP");
1069 llts(ZEBRA_LLT_CSLIP
, "Compressed SLIP");
1070 llts(ZEBRA_LLT_SLIP6
, "SLIPv6");
1071 llts(ZEBRA_LLT_CSLIP6
, "Compressed SLIPv6");
1072 llts(ZEBRA_LLT_RSRVD
, "Reserved");
1073 llts(ZEBRA_LLT_ADAPT
, "Adapt");
1074 llts(ZEBRA_LLT_ROSE
, "ROSE packet radio");
1075 llts(ZEBRA_LLT_X25
, "CCITT X.25");
1076 llts(ZEBRA_LLT_PPP
, "PPP");
1077 llts(ZEBRA_LLT_CHDLC
, "Cisco HDLC");
1078 llts(ZEBRA_LLT_RAWHDLC
, "Raw HDLC");
1079 llts(ZEBRA_LLT_LAPB
, "LAPB");
1080 llts(ZEBRA_LLT_IPIP
, "IPIP Tunnel");
1081 llts(ZEBRA_LLT_IPIP6
, "IPIP6 Tunnel");
1082 llts(ZEBRA_LLT_FRAD
, "FRAD");
1083 llts(ZEBRA_LLT_SKIP
, "SKIP vif");
1084 llts(ZEBRA_LLT_LOOPBACK
, "Loopback");
1085 llts(ZEBRA_LLT_LOCALTLK
, "Localtalk");
1086 llts(ZEBRA_LLT_FDDI
, "FDDI");
1087 llts(ZEBRA_LLT_SIT
, "IPv6-in-IPv4 SIT");
1088 llts(ZEBRA_LLT_IPDDP
, "IP-in-DDP tunnel");
1089 llts(ZEBRA_LLT_IPGRE
, "GRE over IP");
1090 llts(ZEBRA_LLT_IP6GRE
, "GRE over IPv6");
1091 llts(ZEBRA_LLT_PIMREG
, "PIMSM registration");
1092 llts(ZEBRA_LLT_HIPPI
, "HiPPI");
1093 llts(ZEBRA_LLT_ECONET
, "Acorn Econet");
1094 llts(ZEBRA_LLT_IRDA
, "IrDA");
1095 llts(ZEBRA_LLT_FCPP
, "Fibre-Channel PtP");
1096 llts(ZEBRA_LLT_FCAL
, "Fibre-Channel Arbitrated Loop");
1097 llts(ZEBRA_LLT_FCPL
, "Fibre-Channel Public Loop");
1098 llts(ZEBRA_LLT_FCFABRIC
, "Fibre-Channel Fabric");
1099 llts(ZEBRA_LLT_IEEE802_TR
, "IEEE 802.2 Token Ring");
1100 llts(ZEBRA_LLT_IEEE80211
, "IEEE 802.11");
1101 llts(ZEBRA_LLT_IEEE80211_RADIOTAP
, "IEEE 802.11 Radiotap");
1102 llts(ZEBRA_LLT_IEEE802154
, "IEEE 802.15.4");
1103 llts(ZEBRA_LLT_IEEE802154_PHY
, "IEEE 802.15.4 Phy");
1109 struct if_link_params
*if_link_params_get(struct interface
*ifp
)
1111 return ifp
->link_params
;
1114 struct if_link_params
*if_link_params_enable(struct interface
*ifp
)
1116 struct if_link_params
*iflp
;
1119 iflp
= if_link_params_init(ifp
);
1121 /* Compute default bandwidth based on interface */
1123 ((ifp
->bandwidth
? ifp
->bandwidth
: DEFAULT_BANDWIDTH
)
1124 * TE_MEGA_BIT
/ TE_BYTE
);
1126 /* Set Max, Reservable and Unreserved Bandwidth */
1127 iflp
->max_bw
= iflp
->default_bw
;
1128 iflp
->max_rsv_bw
= iflp
->default_bw
;
1129 for (i
= 0; i
< MAX_CLASS_TYPE
; i
++)
1130 iflp
->unrsv_bw
[i
] = iflp
->default_bw
;
1132 /* Update Link parameters status */
1133 iflp
->lp_status
= LP_MAX_BW
| LP_MAX_RSV_BW
| LP_UNRSV_BW
;
1135 /* Set TE metric equal to standard metric only if it is set */
1136 if (ifp
->metric
!= 0) {
1137 iflp
->te_metric
= ifp
->metric
;
1138 iflp
->lp_status
|= LP_TE_METRIC
;
1141 /* Finally attach newly created Link Parameters */
1142 ifp
->link_params
= iflp
;
1147 struct if_link_params
*if_link_params_init(struct interface
*ifp
)
1149 struct if_link_params
*iflp
= if_link_params_get(ifp
);
1154 iflp
= XCALLOC(MTYPE_IF_LINK_PARAMS
, sizeof(struct if_link_params
));
1156 ifp
->link_params
= iflp
;
1161 void if_link_params_free(struct interface
*ifp
)
1163 XFREE(MTYPE_IF_LINK_PARAMS
, ifp
->link_params
);
1166 /* ----------- CLI commands ----------- */
1168 /* Guess the VRF of an interface. */
1169 static int vrfname_by_ifname(const char *ifname
, const char **vrfname
)
1172 struct interface
*ifp
;
1175 RB_FOREACH (vrf
, vrf_name_head
, &vrfs_by_name
) {
1176 FOR_ALL_INTERFACES (vrf
, ifp
) {
1177 if (strmatch(ifp
->name
, ifname
)) {
1178 *vrfname
= vrf
->name
;
1188 * XPath: /frr-interface:lib/interface
1190 DEFPY_YANG_NOSH (interface
,
1192 "interface IFNAME [vrf NAME$vrf_name]",
1193 "Select an interface to configure\n"
1194 "Interface's name\n"
1197 char xpath_list
[XPATH_MAXLEN
];
1198 struct interface
*ifp
;
1202 if (vrf_is_backend_netns()) {
1204 * For backward compatibility, if the VRF name is not specified
1205 * and there is exactly one interface with this name in the
1206 * system, use its VRF. Otherwise fallback to the default VRF.
1209 count
= vrfname_by_ifname(ifname
, &vrf_name
);
1211 vrf_name
= VRF_DEFAULT_NAME
;
1214 snprintf(xpath_list
, XPATH_MAXLEN
,
1215 "/frr-interface:lib/interface[name='%s:%s']", vrf_name
,
1218 snprintf(xpath_list
, XPATH_MAXLEN
,
1219 "/frr-interface:lib/interface[name='%s']", ifname
);
1222 nb_cli_enqueue_change(vty
, ".", NB_OP_CREATE
, NULL
);
1223 ret
= nb_cli_apply_changes_clear_pending(vty
, "%s", xpath_list
);
1224 if (ret
== CMD_SUCCESS
) {
1225 VTY_PUSH_XPATH(INTERFACE_NODE
, xpath_list
);
1228 * For backward compatibility with old commands we still need
1229 * to use the qobj infrastructure. This can be removed once
1230 * all interface-level commands are converted to the new
1233 if (vrf_is_backend_netns()) {
1234 vrf
= vrf_lookup_by_name(vrf_name
);
1236 ifp
= if_lookup_by_name_vrf(ifname
, vrf
);
1240 ifp
= if_lookup_by_name_all_vrf(ifname
);
1243 VTY_PUSH_CONTEXT(INTERFACE_NODE
, ifp
);
1249 DEFPY_YANG (no_interface
,
1251 "no interface IFNAME [vrf NAME$vrf_name]",
1253 "Delete a pseudo interface's configuration\n"
1254 "Interface's name\n"
1257 char xpath_list
[XPATH_MAXLEN
];
1260 if (vrf_is_backend_netns()) {
1262 * For backward compatibility, if the VRF name is not specified
1263 * and there is exactly one interface with this name in the
1264 * system, use its VRF. Otherwise fallback to the default VRF.
1267 count
= vrfname_by_ifname(ifname
, &vrf_name
);
1269 vrf_name
= VRF_DEFAULT_NAME
;
1272 snprintf(xpath_list
, XPATH_MAXLEN
,
1273 "/frr-interface:lib/interface[name='%s:%s']", vrf_name
,
1276 snprintf(xpath_list
, XPATH_MAXLEN
,
1277 "/frr-interface:lib/interface[name='%s']", ifname
);
1280 nb_cli_enqueue_change(vty
, ".", NB_OP_DESTROY
, NULL
);
1282 return nb_cli_apply_changes(vty
, "%s", xpath_list
);
1285 static void netns_ifname_split(const char *xpath
, char *ifname
, char *vrfname
)
1290 assert(vrf_is_backend_netns());
1292 delim
= strchr(xpath
, ':');
1295 len
= delim
- xpath
;
1296 memcpy(vrfname
, xpath
, len
);
1299 strlcpy(ifname
, delim
+ 1, XPATH_MAXLEN
);
1302 static void cli_show_interface(struct vty
*vty
, const struct lyd_node
*dnode
,
1305 vty_out(vty
, "!\n");
1307 if (vrf_is_backend_netns()) {
1308 char ifname
[XPATH_MAXLEN
];
1309 char vrfname
[XPATH_MAXLEN
];
1311 netns_ifname_split(yang_dnode_get_string(dnode
, "./name"),
1314 vty_out(vty
, "interface %s", ifname
);
1315 if (!strmatch(vrfname
, VRF_DEFAULT_NAME
))
1316 vty_out(vty
, " vrf %s", vrfname
);
1318 const char *ifname
= yang_dnode_get_string(dnode
, "./name");
1320 vty_out(vty
, "interface %s", ifname
);
1326 static void cli_show_interface_end(struct vty
*vty
,
1327 const struct lyd_node
*dnode
)
1329 vty_out(vty
, "exit\n");
1332 void if_vty_config_start(struct vty
*vty
, struct interface
*ifp
)
1334 vty_frame(vty
, "!\n");
1335 vty_frame(vty
, "interface %s", ifp
->name
);
1337 if (vrf_is_backend_netns() && strcmp(ifp
->vrf
->name
, VRF_DEFAULT_NAME
))
1338 vty_frame(vty
, " vrf %s", ifp
->vrf
->name
);
1340 vty_frame(vty
, "\n");
1343 void if_vty_config_end(struct vty
*vty
)
1345 vty_endframe(vty
, "exit\n!\n");
1349 * XPath: /frr-interface:lib/interface/description
1351 DEFPY_YANG (interface_desc
,
1353 "description LINE...",
1354 "Interface specific description\n"
1355 "Characters describing this interface\n")
1360 desc
= argv_concat(argv
, argc
, 1);
1361 nb_cli_enqueue_change(vty
, "./description", NB_OP_MODIFY
, desc
);
1362 ret
= nb_cli_apply_changes(vty
, NULL
);
1363 XFREE(MTYPE_TMP
, desc
);
1368 DEFPY_YANG (no_interface_desc
,
1369 no_interface_desc_cmd
,
1372 "Interface specific description\n")
1374 nb_cli_enqueue_change(vty
, "./description", NB_OP_DESTROY
, NULL
);
1376 return nb_cli_apply_changes(vty
, NULL
);
1379 static void cli_show_interface_desc(struct vty
*vty
,
1380 const struct lyd_node
*dnode
,
1383 vty_out(vty
, " description %s\n", yang_dnode_get_string(dnode
, NULL
));
1386 /* Interface autocomplete. */
1387 static void if_autocomplete(vector comps
, struct cmd_token
*token
)
1389 struct interface
*ifp
;
1392 RB_FOREACH (vrf
, vrf_name_head
, &vrfs_by_name
) {
1393 FOR_ALL_INTERFACES (vrf
, ifp
) {
1394 vector_set(comps
, XSTRDUP(MTYPE_COMPLETION
, ifp
->name
));
1399 static const struct cmd_variable_handler if_var_handlers
[] = {
1400 {/* "interface NAME" */
1401 .varname
= "interface",
1402 .completions
= if_autocomplete
},
1403 {.tokenname
= "IFNAME", .completions
= if_autocomplete
},
1404 {.tokenname
= "INTERFACE", .completions
= if_autocomplete
},
1405 {.completions
= NULL
}};
1407 static struct cmd_node interface_node
= {
1408 .name
= "interface",
1409 .node
= INTERFACE_NODE
,
1410 .parent_node
= CONFIG_NODE
,
1411 .prompt
= "%s(config-if)# ",
1414 static int if_config_write_single(const struct lyd_node
*dnode
, void *arg
)
1416 nb_cli_show_dnode_cmds(arg
, dnode
, false);
1418 return YANG_ITER_CONTINUE
;
1421 static int if_nb_config_write(struct vty
*vty
)
1423 yang_dnode_iterate(if_config_write_single
, vty
, running_config
->dnode
,
1424 "/frr-interface:lib/interface");
1428 void if_cmd_init(int (*config_write
)(struct vty
*))
1430 cmd_variable_handler_register(if_var_handlers
);
1432 interface_node
.config_write
= config_write
;
1433 install_node(&interface_node
);
1435 install_element(CONFIG_NODE
, &interface_cmd
);
1436 install_element(CONFIG_NODE
, &no_interface_cmd
);
1438 install_default(INTERFACE_NODE
);
1439 install_element(INTERFACE_NODE
, &interface_desc_cmd
);
1440 install_element(INTERFACE_NODE
, &no_interface_desc_cmd
);
1443 void if_cmd_init_default(void)
1445 if_cmd_init(if_nb_config_write
);
1448 void if_zapi_callbacks(int (*create
)(struct interface
*ifp
),
1449 int (*up
)(struct interface
*ifp
),
1450 int (*down
)(struct interface
*ifp
),
1451 int (*destroy
)(struct interface
*ifp
))
1453 ifp_master
.create_hook
= create
;
1454 ifp_master
.up_hook
= up
;
1455 ifp_master
.down_hook
= down
;
1456 ifp_master
.destroy_hook
= destroy
;
1459 /* ------- Northbound callbacks ------- */
1462 * XPath: /frr-interface:lib/interface
1464 static int lib_interface_create(struct nb_cb_create_args
*args
)
1467 struct interface
*ifp
;
1469 ifname
= yang_dnode_get_string(args
->dnode
, "./name");
1471 switch (args
->event
) {
1472 case NB_EV_VALIDATE
:
1473 if (vrf_is_backend_netns()) {
1474 char ifname_ns
[XPATH_MAXLEN
];
1475 char vrfname_ns
[XPATH_MAXLEN
];
1477 netns_ifname_split(ifname
, ifname_ns
, vrfname_ns
);
1479 if (strlen(ifname_ns
) > 16) {
1481 args
->errmsg
, args
->errmsg_len
,
1482 "Maximum interface name length is 16 characters");
1483 return NB_ERR_VALIDATION
;
1485 if (strlen(vrfname_ns
) > 36) {
1487 args
->errmsg
, args
->errmsg_len
,
1488 "Maximum VRF name length is 36 characters");
1489 return NB_ERR_VALIDATION
;
1492 if (strlen(ifname
) > 16) {
1494 args
->errmsg
, args
->errmsg_len
,
1495 "Maximum interface name length is 16 characters");
1496 return NB_ERR_VALIDATION
;
1504 if (vrf_is_backend_netns()) {
1505 char ifname_ns
[XPATH_MAXLEN
];
1506 char vrfname_ns
[XPATH_MAXLEN
];
1508 netns_ifname_split(ifname
, ifname_ns
, vrfname_ns
);
1510 ifp
= if_get_by_name(ifname_ns
, VRF_UNKNOWN
,
1513 ifp
= if_get_by_name(ifname
, VRF_UNKNOWN
,
1517 ifp
->configured
= true;
1518 nb_running_set_entry(args
->dnode
, ifp
);
1525 static int lib_interface_destroy(struct nb_cb_destroy_args
*args
)
1527 struct interface
*ifp
;
1530 switch (args
->event
) {
1531 case NB_EV_VALIDATE
:
1532 ifp
= nb_running_get_entry(args
->dnode
, NULL
, true);
1533 if (CHECK_FLAG(ifp
->status
, ZEBRA_INTERFACE_ACTIVE
)) {
1534 snprintf(args
->errmsg
, args
->errmsg_len
,
1535 "only inactive interfaces can be deleted");
1536 return NB_ERR_VALIDATION
;
1543 ifp
= nb_running_unset_entry(args
->dnode
);
1546 ifp
->configured
= false;
1549 if (!vrf_is_enabled(vrf
))
1558 * XPath: /frr-interface:lib/interface
1560 static const void *lib_interface_get_next(struct nb_cb_get_next_args
*args
)
1563 struct interface
*pif
= (struct interface
*)args
->list_entry
;
1565 if (args
->list_entry
== NULL
) {
1566 vrf
= RB_MIN(vrf_name_head
, &vrfs_by_name
);
1568 pif
= RB_MIN(if_name_head
, &vrf
->ifaces_by_name
);
1571 pif
= RB_NEXT(if_name_head
, pif
);
1572 /* if no more interfaces, switch to next vrf */
1573 while (pif
== NULL
) {
1574 vrf
= RB_NEXT(vrf_name_head
, vrf
);
1577 pif
= RB_MIN(if_name_head
, &vrf
->ifaces_by_name
);
1584 static int lib_interface_get_keys(struct nb_cb_get_keys_args
*args
)
1586 const struct interface
*ifp
= args
->list_entry
;
1588 args
->keys
->num
= 1;
1590 if (vrf_is_backend_netns())
1591 snprintf(args
->keys
->key
[0], sizeof(args
->keys
->key
[0]),
1592 "%s:%s", ifp
->vrf
->name
, ifp
->name
);
1594 snprintf(args
->keys
->key
[0], sizeof(args
->keys
->key
[0]), "%s",
1601 lib_interface_lookup_entry(struct nb_cb_lookup_entry_args
*args
)
1603 if (vrf_is_backend_netns()) {
1604 char ifname
[XPATH_MAXLEN
];
1605 char vrfname
[XPATH_MAXLEN
];
1608 netns_ifname_split(args
->keys
->key
[0], ifname
, vrfname
);
1610 vrf
= vrf_lookup_by_name(vrfname
);
1612 return vrf
? if_lookup_by_name(ifname
, vrf
->vrf_id
) : NULL
;
1614 return if_lookup_by_name_all_vrf(args
->keys
->key
[0]);
1619 * XPath: /frr-interface:lib/interface/description
1621 static int lib_interface_description_modify(struct nb_cb_modify_args
*args
)
1623 struct interface
*ifp
;
1624 const char *description
;
1626 if (args
->event
!= NB_EV_APPLY
)
1629 ifp
= nb_running_get_entry(args
->dnode
, NULL
, true);
1630 XFREE(MTYPE_IFDESC
, ifp
->desc
);
1631 description
= yang_dnode_get_string(args
->dnode
, NULL
);
1632 ifp
->desc
= XSTRDUP(MTYPE_IFDESC
, description
);
1637 static int lib_interface_description_destroy(struct nb_cb_destroy_args
*args
)
1639 struct interface
*ifp
;
1641 if (args
->event
!= NB_EV_APPLY
)
1644 ifp
= nb_running_get_entry(args
->dnode
, NULL
, true);
1645 XFREE(MTYPE_IFDESC
, ifp
->desc
);
1651 * XPath: /frr-interface:lib/interface/vrf
1653 static struct yang_data
*
1654 lib_interface_vrf_get_elem(struct nb_cb_get_elem_args
*args
)
1656 const struct interface
*ifp
= args
->list_entry
;
1658 return yang_data_new_string(args
->xpath
, ifp
->vrf
->name
);
1662 * XPath: /frr-interface:lib/interface/state/if-index
1664 static struct yang_data
*
1665 lib_interface_state_if_index_get_elem(struct nb_cb_get_elem_args
*args
)
1667 const struct interface
*ifp
= args
->list_entry
;
1669 return yang_data_new_int32(args
->xpath
, ifp
->ifindex
);
1673 * XPath: /frr-interface:lib/interface/state/mtu
1675 static struct yang_data
*
1676 lib_interface_state_mtu_get_elem(struct nb_cb_get_elem_args
*args
)
1678 const struct interface
*ifp
= args
->list_entry
;
1680 return yang_data_new_uint16(args
->xpath
, ifp
->mtu
);
1684 * XPath: /frr-interface:lib/interface/state/mtu6
1686 static struct yang_data
*
1687 lib_interface_state_mtu6_get_elem(struct nb_cb_get_elem_args
*args
)
1689 const struct interface
*ifp
= args
->list_entry
;
1691 return yang_data_new_uint32(args
->xpath
, ifp
->mtu6
);
1695 * XPath: /frr-interface:lib/interface/state/speed
1697 static struct yang_data
*
1698 lib_interface_state_speed_get_elem(struct nb_cb_get_elem_args
*args
)
1700 const struct interface
*ifp
= args
->list_entry
;
1702 return yang_data_new_uint32(args
->xpath
, ifp
->speed
);
1706 * XPath: /frr-interface:lib/interface/state/metric
1708 static struct yang_data
*
1709 lib_interface_state_metric_get_elem(struct nb_cb_get_elem_args
*args
)
1711 const struct interface
*ifp
= args
->list_entry
;
1713 return yang_data_new_uint32(args
->xpath
, ifp
->metric
);
1717 * XPath: /frr-interface:lib/interface/state/flags
1719 static struct yang_data
*
1720 lib_interface_state_flags_get_elem(struct nb_cb_get_elem_args
*args
)
1722 /* TODO: implement me. */
1727 * XPath: /frr-interface:lib/interface/state/type
1729 static struct yang_data
*
1730 lib_interface_state_type_get_elem(struct nb_cb_get_elem_args
*args
)
1732 /* TODO: implement me. */
1737 * XPath: /frr-interface:lib/interface/state/phy-address
1739 static struct yang_data
*
1740 lib_interface_state_phy_address_get_elem(struct nb_cb_get_elem_args
*args
)
1742 const struct interface
*ifp
= args
->list_entry
;
1743 struct ethaddr macaddr
;
1745 memcpy(&macaddr
.octet
, ifp
->hw_addr
, ETH_ALEN
);
1747 return yang_data_new_mac(args
->xpath
, &macaddr
);
1750 /* clang-format off */
1751 const struct frr_yang_module_info frr_interface_info
= {
1752 .name
= "frr-interface",
1755 .xpath
= "/frr-interface:lib/interface",
1757 .create
= lib_interface_create
,
1758 .destroy
= lib_interface_destroy
,
1759 .cli_show
= cli_show_interface
,
1760 .cli_show_end
= cli_show_interface_end
,
1761 .get_next
= lib_interface_get_next
,
1762 .get_keys
= lib_interface_get_keys
,
1763 .lookup_entry
= lib_interface_lookup_entry
,
1767 .xpath
= "/frr-interface:lib/interface/description",
1769 .modify
= lib_interface_description_modify
,
1770 .destroy
= lib_interface_description_destroy
,
1771 .cli_show
= cli_show_interface_desc
,
1775 .xpath
= "/frr-interface:lib/interface/vrf",
1777 .get_elem
= lib_interface_vrf_get_elem
,
1781 .xpath
= "/frr-interface:lib/interface/state/if-index",
1783 .get_elem
= lib_interface_state_if_index_get_elem
,
1787 .xpath
= "/frr-interface:lib/interface/state/mtu",
1789 .get_elem
= lib_interface_state_mtu_get_elem
,
1793 .xpath
= "/frr-interface:lib/interface/state/mtu6",
1795 .get_elem
= lib_interface_state_mtu6_get_elem
,
1799 .xpath
= "/frr-interface:lib/interface/state/speed",
1801 .get_elem
= lib_interface_state_speed_get_elem
,
1805 .xpath
= "/frr-interface:lib/interface/state/metric",
1807 .get_elem
= lib_interface_state_metric_get_elem
,
1811 .xpath
= "/frr-interface:lib/interface/state/flags",
1813 .get_elem
= lib_interface_state_flags_get_elem
,
1817 .xpath
= "/frr-interface:lib/interface/state/type",
1819 .get_elem
= lib_interface_state_type_get_elem
,
1823 .xpath
= "/frr-interface:lib/interface/state/phy-address",
1825 .get_elem
= lib_interface_state_phy_address_get_elem
,