Test for stack alignment.
[glibc.git] / sysdeps / mach / hurd / ifreq.h
blob77f0b9cac04a427002a83c0099522595e510c74f
1 /* Fetch the host's network interface list. Hurd version.
2 Copyright (C) 2002 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, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <net/if.h>
21 #include <hurd.h>
22 #include <hurd/pfinet.h>
23 #include <sys/socket.h>
24 #include <sys/mman.h>
27 static inline void
28 __ifreq (struct ifreq **ifreqs, int *num_ifs, int sockfd)
30 file_t server;
32 server = _hurd_socket_server (PF_INET, 0);
33 if (server == MACH_PORT_NULL)
35 out:
36 *num_ifs = 0;
37 *ifreqs = NULL;
39 else
41 char *data = NULL;
42 size_t len = 0;
43 error_t err = __pfinet_siocgifconf (server, -1, &data, &len);
44 if (err == MACH_SEND_INVALID_DEST || err == MIG_SERVER_DIED)
46 /* On the first use of the socket server during the operation,
47 allow for the old server port dying. */
48 server = _hurd_socket_server (PF_INET, 1);
49 if (server == MACH_PORT_NULL)
50 goto out;
51 err = __pfinet_siocgifconf (server, -1, (data_t *) ifreqs, &len);
53 if (err)
54 goto out;
56 if (len % sizeof (struct ifreq) != 0)
58 munmap (data, len);
59 errno = EGRATUITOUS;
60 goto out;
62 *num_ifs = len / sizeof (struct ifreq);
63 *ifreqs = (struct ifreq *) data;
69 static inline struct ifreq *
70 __if_nextreq (struct ifreq *ifr)
72 return ifr + 1;
76 static inline void
77 __if_freereq (struct ifreq *ifreqs, int num_ifs)
79 __munmap (ifreqs, num_ifs * sizeof (struct ifreq));