1 /* Copyright (C) 1997-2016 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 <http://www.gnu.org/licenses/>. */
25 #include <sys/socket.h>
26 #include <sys/ioctl.h>
27 #include <libc-lock.h>
28 #include <not-cancel.h>
30 #include "netlinkaccess.h"
34 __if_nametoindex (const char *ifname
)
41 int fd
= __opensock ();
46 strncpy (ifr
.ifr_name
, ifname
, sizeof (ifr
.ifr_name
));
47 if (__ioctl (fd
, SIOCGIFINDEX
, &ifr
) < 0)
49 int saved_errno
= errno
;
50 close_not_cancel_no_status (fd
);
51 if (saved_errno
== EINVAL
)
55 close_not_cancel_no_status (fd
);
56 return ifr
.ifr_ifindex
;
59 libc_hidden_def (__if_nametoindex
)
60 weak_alias (__if_nametoindex
, if_nametoindex
)
61 libc_hidden_weak (if_nametoindex
)
65 __if_freenameindex (struct if_nameindex
*ifn
)
67 struct if_nameindex
*ptr
= ifn
;
68 while (ptr
->if_name
|| ptr
->if_index
)
75 libc_hidden_def (__if_freenameindex
)
76 weak_alias (__if_freenameindex
, if_freenameindex
)
77 libc_hidden_weak (if_freenameindex
)
80 static struct if_nameindex
*
81 if_nameindex_netlink (void)
83 struct netlink_handle nh
= { 0, 0, 0, NULL
, NULL
};
84 struct if_nameindex
*idx
= NULL
;
86 if (__netlink_open (&nh
) < 0)
90 /* Tell the kernel that we wish to get a list of all
91 active interfaces. Collect all data for every interface. */
92 if (__netlink_request (&nh
, RTM_GETLINK
) < 0)
95 /* Count the interfaces. */
96 unsigned int nifs
= 0;
97 for (struct netlink_res
*nlp
= nh
.nlm_list
; nlp
; nlp
= nlp
->next
)
100 size_t size
= nlp
->size
;
102 if (nlp
->nlh
== NULL
)
105 /* Walk through all entries we got from the kernel and look, which
106 message type they contain. */
107 for (nlh
= nlp
->nlh
; NLMSG_OK (nlh
, size
); nlh
= NLMSG_NEXT (nlh
, size
))
109 /* Check if the message is what we want. */
110 if ((pid_t
) nlh
->nlmsg_pid
!= nh
.pid
|| nlh
->nlmsg_seq
!= nlp
->seq
)
113 if (nlh
->nlmsg_type
== NLMSG_DONE
)
116 if (nlh
->nlmsg_type
== RTM_NEWLINK
)
121 idx
= malloc ((nifs
+ 1) * sizeof (struct if_nameindex
));
125 __set_errno (ENOBUFS
);
129 /* Add the interfaces. */
131 for (struct netlink_res
*nlp
= nh
.nlm_list
; nlp
; nlp
= nlp
->next
)
133 struct nlmsghdr
*nlh
;
134 size_t size
= nlp
->size
;
136 if (nlp
->nlh
== NULL
)
139 /* Walk through all entries we got from the kernel and look, which
140 message type they contain. */
141 for (nlh
= nlp
->nlh
; NLMSG_OK (nlh
, size
); nlh
= NLMSG_NEXT (nlh
, size
))
143 /* Check if the message is what we want. */
144 if ((pid_t
) nlh
->nlmsg_pid
!= nh
.pid
|| nlh
->nlmsg_seq
!= nlp
->seq
)
147 if (nlh
->nlmsg_type
== NLMSG_DONE
)
150 if (nlh
->nlmsg_type
== RTM_NEWLINK
)
152 struct ifinfomsg
*ifim
= (struct ifinfomsg
*) NLMSG_DATA (nlh
);
153 struct rtattr
*rta
= IFLA_RTA (ifim
);
154 size_t rtasize
= IFLA_PAYLOAD (nlh
);
156 idx
[nifs
].if_index
= ifim
->ifi_index
;
158 while (RTA_OK (rta
, rtasize
))
160 char *rta_data
= RTA_DATA (rta
);
161 size_t rta_payload
= RTA_PAYLOAD (rta
);
163 if (rta
->rta_type
== IFLA_IFNAME
)
165 idx
[nifs
].if_name
= __strndup (rta_data
, rta_payload
);
166 if (idx
[nifs
].if_name
== NULL
)
168 idx
[nifs
].if_index
= 0;
169 __if_freenameindex (idx
);
176 rta
= RTA_NEXT (rta
, rtasize
);
184 idx
[nifs
].if_index
= 0;
185 idx
[nifs
].if_name
= NULL
;
188 __netlink_free_handle (&nh
);
189 __netlink_close (&nh
);
195 struct if_nameindex
*
196 __if_nameindex (void)
199 __set_errno (ENOSYS
);
202 struct if_nameindex
*result
= if_nameindex_netlink ();
206 weak_alias (__if_nameindex
, if_nameindex
)
207 libc_hidden_weak (if_nameindex
)
211 __if_indextoname (unsigned int ifindex
, char *ifname
)
213 /* We may be able to do the conversion directly, rather than searching a
214 list. This ioctl is not present in kernels before version 2.1.50. */
224 ifr
.ifr_ifindex
= ifindex
;
225 status
= __ioctl (fd
, SIOCGIFNAME
, &ifr
);
227 close_not_cancel_no_status (fd
);
232 /* POSIX requires ENXIO. */
238 return strncpy (ifname
, ifr
.ifr_name
, IFNAMSIZ
);
240 weak_alias (__if_indextoname
, if_indextoname
)
241 libc_hidden_weak (if_indextoname
)