1 /* Copyright (C) 1997-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
24 #include <sys/socket.h>
25 #include <sys/ioctl.h>
26 #include <libc-lock.h>
27 #include <not-cancel.h>
29 #include "netlinkaccess.h"
33 __if_nametoindex (const char *ifname
)
40 if (strlen (ifname
) >= IFNAMSIZ
)
46 strncpy (ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
48 int fd
= __opensock ();
53 if (__ioctl (fd
, SIOCGIFINDEX
, &ifr
) < 0)
55 int saved_errno
= errno
;
56 __close_nocancel_nostatus (fd
);
57 if (saved_errno
== EINVAL
)
61 __close_nocancel_nostatus (fd
);
62 return ifr
.ifr_ifindex
;
65 libc_hidden_def (__if_nametoindex
)
66 weak_alias (__if_nametoindex
, if_nametoindex
)
67 libc_hidden_weak (if_nametoindex
)
71 __if_freenameindex (struct if_nameindex
*ifn
)
73 struct if_nameindex
*ptr
= ifn
;
74 while (ptr
->if_name
|| ptr
->if_index
)
81 libc_hidden_def (__if_freenameindex
)
82 weak_alias (__if_freenameindex
, if_freenameindex
)
83 libc_hidden_weak (if_freenameindex
)
86 static struct if_nameindex
*
87 if_nameindex_netlink (void)
89 struct netlink_handle nh
= { 0, 0, 0, NULL
, NULL
};
90 struct if_nameindex
*idx
= NULL
;
92 if (__netlink_open (&nh
) < 0)
96 /* Tell the kernel that we wish to get a list of all
97 active interfaces. Collect all data for every interface. */
98 if (__netlink_request (&nh
, RTM_GETLINK
) < 0)
101 /* Count the interfaces. */
102 unsigned int nifs
= 0;
103 for (struct netlink_res
*nlp
= nh
.nlm_list
; nlp
; nlp
= nlp
->next
)
105 struct nlmsghdr
*nlh
;
106 size_t size
= nlp
->size
;
108 if (nlp
->nlh
== NULL
)
111 /* Walk through all entries we got from the kernel and look, which
112 message type they contain. */
113 for (nlh
= nlp
->nlh
; NLMSG_OK (nlh
, size
); nlh
= NLMSG_NEXT (nlh
, size
))
115 /* Check if the message is what we want. */
116 if ((pid_t
) nlh
->nlmsg_pid
!= nh
.pid
|| nlh
->nlmsg_seq
!= nlp
->seq
)
119 if (nlh
->nlmsg_type
== NLMSG_DONE
)
122 if (nlh
->nlmsg_type
== RTM_NEWLINK
)
127 idx
= malloc ((nifs
+ 1) * sizeof (struct if_nameindex
));
131 __set_errno (ENOBUFS
);
135 /* Add the interfaces. */
137 for (struct netlink_res
*nlp
= nh
.nlm_list
; nlp
; nlp
= nlp
->next
)
139 struct nlmsghdr
*nlh
;
140 size_t size
= nlp
->size
;
142 if (nlp
->nlh
== NULL
)
145 /* Walk through all entries we got from the kernel and look, which
146 message type they contain. */
147 for (nlh
= nlp
->nlh
; NLMSG_OK (nlh
, size
); nlh
= NLMSG_NEXT (nlh
, size
))
149 /* Check if the message is what we want. */
150 if ((pid_t
) nlh
->nlmsg_pid
!= nh
.pid
|| nlh
->nlmsg_seq
!= nlp
->seq
)
153 if (nlh
->nlmsg_type
== NLMSG_DONE
)
156 if (nlh
->nlmsg_type
== RTM_NEWLINK
)
158 struct ifinfomsg
*ifim
= (struct ifinfomsg
*) NLMSG_DATA (nlh
);
159 struct rtattr
*rta
= IFLA_RTA (ifim
);
160 size_t rtasize
= IFLA_PAYLOAD (nlh
);
162 idx
[nifs
].if_index
= ifim
->ifi_index
;
164 while (RTA_OK (rta
, rtasize
))
166 char *rta_data
= RTA_DATA (rta
);
167 size_t rta_payload
= RTA_PAYLOAD (rta
);
169 if (rta
->rta_type
== IFLA_IFNAME
)
171 idx
[nifs
].if_name
= __strndup (rta_data
, rta_payload
);
172 if (idx
[nifs
].if_name
== NULL
)
174 idx
[nifs
].if_index
= 0;
175 __if_freenameindex (idx
);
182 rta
= RTA_NEXT (rta
, rtasize
);
190 idx
[nifs
].if_index
= 0;
191 idx
[nifs
].if_name
= NULL
;
194 __netlink_free_handle (&nh
);
195 __netlink_close (&nh
);
201 struct if_nameindex
*
202 __if_nameindex (void)
205 __set_errno (ENOSYS
);
208 struct if_nameindex
*result
= if_nameindex_netlink ();
212 weak_alias (__if_nameindex
, if_nameindex
)
213 libc_hidden_weak (if_nameindex
)
217 __if_indextoname (unsigned int ifindex
, char ifname
[IF_NAMESIZE
])
219 /* We may be able to do the conversion directly, rather than searching a
220 list. This ioctl is not present in kernels before version 2.1.50. */
230 ifr
.ifr_ifindex
= ifindex
;
231 status
= __ioctl (fd
, SIOCGIFNAME
, &ifr
);
233 __close_nocancel_nostatus (fd
);
238 /* POSIX requires ENXIO. */
244 return strncpy (ifname
, ifr
.ifr_name
, IFNAMSIZ
);
246 weak_alias (__if_indextoname
, if_indextoname
)
247 libc_hidden_weak (if_indextoname
)