1 /* Determine protocol families for which interfaces exist. Linux version.
2 Copyright (C) 2003-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
28 #include <sys/socket.h>
30 #include <asm/types.h>
31 #include <linux/netlink.h>
32 #include <linux/rtnetlink.h>
34 #include <not-cancel.h>
35 #include <libc-lock.h>
37 #include <nscd/nscd-client.h>
39 #include "netlinkaccess.h"
41 #ifndef IFA_F_HOMEADDRESS
42 # define IFA_F_HOMEADDRESS 0
44 #ifndef IFA_F_OPTIMISTIC
45 # define IFA_F_OPTIMISTIC 0
56 struct in6addrinfo in6ai
[0];
59 static struct cached_data noai6ai_cached
=
61 .usecnt
= 1, /* Make sure we never try to delete this entry. */
65 static struct cached_data
*cache
;
66 __libc_lock_define_initialized (static, lock
);
70 static uint32_t nl_timestamp
;
73 __bump_nl_timestamp (void)
75 if (atomic_increment_val (&nl_timestamp
) == 0)
76 atomic_increment (&nl_timestamp
);
82 static inline uint32_t
83 get_nl_timestamp (void)
87 #elif defined USE_NSCD
88 return __nscd_get_nl_timestamp ();
99 uint32_t timestamp
= get_nl_timestamp ();
100 return timestamp
!= 0 && cache
->timestamp
== timestamp
;
106 static struct cached_data
*
107 make_request (int fd
, pid_t pid
)
109 struct cached_data
*result
= NULL
;
111 size_t result_len
= 0;
112 size_t result_cap
= 32;
118 /* struct rtgenmsg consists of a single byte. This means there
119 are three bytes of padding included in the REQ definition.
120 We make them explicit here. */
123 struct sockaddr_nl nladdr
;
125 req
.nlh
.nlmsg_len
= sizeof (req
);
126 req
.nlh
.nlmsg_type
= RTM_GETADDR
;
127 req
.nlh
.nlmsg_flags
= NLM_F_ROOT
| NLM_F_MATCH
| NLM_F_REQUEST
;
128 req
.nlh
.nlmsg_pid
= 0;
129 req
.nlh
.nlmsg_seq
= time (NULL
);
130 req
.g
.rtgen_family
= AF_UNSPEC
;
132 assert (sizeof (req
) - offsetof (struct req
, pad
) == 3);
133 memset (req
.pad
, '\0', sizeof (req
.pad
));
135 memset (&nladdr
, '\0', sizeof (nladdr
));
136 nladdr
.nl_family
= AF_NETLINK
;
139 const size_t buf_size
= PAGE_SIZE
;
141 const size_t buf_size
= 4096;
145 struct iovec iov
= { buf
, buf_size
};
147 if (TEMP_FAILURE_RETRY (__sendto (fd
, (void *) &req
, sizeof (req
), 0,
148 (struct sockaddr
*) &nladdr
,
149 sizeof (nladdr
))) < 0)
154 bool seen_ipv4
= false;
155 bool seen_ipv6
= false;
161 (void *) &nladdr
, sizeof (nladdr
),
167 ssize_t read_len
= TEMP_FAILURE_RETRY (__recvmsg (fd
, &msg
, 0));
168 __netlink_assert_response (fd
, read_len
);
172 if (msg
.msg_flags
& MSG_TRUNC
)
175 struct nlmsghdr
*nlmh
;
176 for (nlmh
= (struct nlmsghdr
*) buf
;
177 NLMSG_OK (nlmh
, (size_t) read_len
);
178 nlmh
= (struct nlmsghdr
*) NLMSG_NEXT (nlmh
, read_len
))
180 if (nladdr
.nl_pid
!= 0 || (pid_t
) nlmh
->nlmsg_pid
!= pid
181 || nlmh
->nlmsg_seq
!= req
.nlh
.nlmsg_seq
)
184 if (nlmh
->nlmsg_type
== RTM_NEWADDR
)
186 struct ifaddrmsg
*ifam
= (struct ifaddrmsg
*) NLMSG_DATA (nlmh
);
187 struct rtattr
*rta
= IFA_RTA (ifam
);
188 size_t len
= nlmh
->nlmsg_len
- NLMSG_LENGTH (sizeof (*ifam
));
190 if (ifam
->ifa_family
!= AF_INET
191 && ifam
->ifa_family
!= AF_INET6
)
194 const void *local
= NULL
;
195 const void *address
= NULL
;
196 while (RTA_OK (rta
, len
))
198 switch (rta
->rta_type
)
201 local
= RTA_DATA (rta
);
205 address
= RTA_DATA (rta
);
209 rta
= RTA_NEXT (rta
, len
);
216 if (ifam
->ifa_family
== AF_INET
)
218 if (*(const in_addr_t
*) address
219 != htonl (INADDR_LOOPBACK
))
224 if (!IN6_IS_ADDR_LOOPBACK (address
))
229 if (result_len
== 0 || result_len
== result_cap
)
231 result_cap
= 2 * result_cap
;
232 result
= realloc (result
, sizeof (*result
)
234 * sizeof (struct in6addrinfo
));
240 struct in6addrinfo
*info
= &result
->in6ai
[result_len
++];
242 info
->flags
= (((ifam
->ifa_flags
243 & (IFA_F_DEPRECATED
| IFA_F_OPTIMISTIC
))
244 ? in6ai_deprecated
: 0)
245 | ((ifam
->ifa_flags
& IFA_F_HOMEADDRESS
)
246 ? in6ai_homeaddress
: 0));
247 info
->prefixlen
= ifam
->ifa_prefixlen
;
248 info
->index
= ifam
->ifa_index
;
249 if (ifam
->ifa_family
== AF_INET
)
253 info
->addr
[2] = htonl (0xffff);
254 info
->addr
[3] = *(const in_addr_t
*) address
;
257 memcpy (info
->addr
, address
, sizeof (info
->addr
));
259 else if (nlmh
->nlmsg_type
== NLMSG_DONE
)
260 /* We found the end, leave the loop. */
266 if (seen_ipv6
&& result
!= NULL
)
268 result
->timestamp
= get_nl_timestamp ();
270 result
->seen_ipv4
= seen_ipv4
;
271 result
->seen_ipv6
= true;
272 result
->in6ailen
= result_len
;
278 atomic_add (&noai6ai_cached
.usecnt
, 2);
279 noai6ai_cached
.seen_ipv4
= seen_ipv4
;
280 noai6ai_cached
.seen_ipv6
= seen_ipv6
;
281 result
= &noai6ai_cached
;
295 __check_pf (bool *seen_ipv4
, bool *seen_ipv6
,
296 struct in6addrinfo
**in6ai
, size_t *in6ailen
)
301 struct cached_data
*olddata
= NULL
;
302 struct cached_data
*data
= NULL
;
304 __libc_lock_lock (lock
);
306 if (cache_valid_p ())
309 atomic_increment (&cache
->usecnt
);
313 int fd
= __socket (PF_NETLINK
, SOCK_RAW
, NETLINK_ROUTE
);
315 if (__glibc_likely (fd
>= 0))
317 struct sockaddr_nl nladdr
;
318 memset (&nladdr
, '\0', sizeof (nladdr
));
319 nladdr
.nl_family
= AF_NETLINK
;
321 socklen_t addr_len
= sizeof (nladdr
);
323 if (__bind (fd
, (struct sockaddr
*) &nladdr
, sizeof (nladdr
)) == 0
324 && __getsockname (fd
, (struct sockaddr
*) &nladdr
,
326 data
= make_request (fd
, nladdr
.nl_pid
);
328 close_not_cancel_no_status (fd
);
338 __libc_lock_unlock (lock
);
343 *seen_ipv4
= data
->seen_ipv4
;
344 *seen_ipv6
= data
->seen_ipv6
;
345 *in6ailen
= data
->in6ailen
;
346 *in6ai
= data
->in6ai
;
348 if (olddata
!= NULL
&& olddata
->usecnt
> 0
349 && atomic_add_zero (&olddata
->usecnt
, -1))
355 /* We cannot determine what interfaces are available. Be
361 /* Free the cache if it has been allocated. */
362 libc_freeres_fn (freecache
)
365 __free_in6ai (cache
->in6ai
);
369 __free_in6ai (struct in6addrinfo
*ai
)
373 struct cached_data
*data
=
374 (struct cached_data
*) ((char *) ai
375 - offsetof (struct cached_data
, in6ai
));
377 if (atomic_add_zero (&data
->usecnt
, -1))
379 __libc_lock_lock (lock
);
381 if (data
->usecnt
== 0)
385 __libc_lock_unlock (lock
);