3 * http://ftp.uninett.no/pub/OpenBSD/src/kerberosV/src/lib/roken/getifaddrs.c
5 #if !LWS_HAVE_GETIFADDRS
7 * Copyright (c) 2000 - 2001 Kungliga Tekniska H�gskolan
8 * (Royal Institute of Technology, Stockholm, Sweden).
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of the Institute nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #include <sys/types.h>
41 #include <sys/socket.h>
45 #include <sys/ioctl.h>
47 #include "private-libwebsockets.h"
49 #ifdef LWS_HAVE_SYS_SOCKIO_H
50 #include <sys/sockio.h>
53 #ifdef LWS_HAVE_NETINET_IN6_VAR_H
54 #include <netinet/in6_var.h>
58 #define max(a, b) ((a) > (b) ? (a) : (b))
61 #include "getifaddrs.h"
64 getifaddrs2(struct ifaddrs **ifap, int af, int siocgifconf, int siocgifflags,
74 struct sockaddr sa_zero;
76 struct ifaddrs *start, **end = &start;
80 memset(&sa_zero, 0, sizeof(sa_zero));
81 fd = socket(af, SOCK_DGRAM, 0);
87 buf = lws_zalloc(buf_size);
92 ifconf.ifc_len = buf_size;
96 * Solaris returns EINVAL when the buffer is too small.
98 if (ioctl(fd, siocgifconf, &ifconf) < 0 && errno != EINVAL) {
103 * Can the difference between a full and a overfull buf
107 if (ifconf.ifc_len < (int)buf_size)
113 for (p = ifconf.ifc_buf; p < ifconf.ifc_buf + ifconf.ifc_len; p += sz) {
118 ifr = (struct ifreq *)p;
122 salen = sizeof(struct sockaddr);
123 #ifdef LWS_HAVE_STRUCT_SOCKADDR_SA_LEN
125 sz = max(sz, sizeof(ifr->ifr_name) + sa->sa_len);
129 sz = max(sz, sizeof(ifr->ifr_name) + SA_LEN(sa));
131 memset(&ifreq, 0, sizeof(ifreq));
132 memcpy(ifreq.ifr_name, ifr->ifr_name, sizeof(ifr->ifr_name));
134 if (ioctl(fd, siocgifflags, &ifreq) < 0) {
139 *end = lws_malloc(sizeof(**end));
141 (*end)->ifa_next = NULL;
142 (*end)->ifa_name = strdup(ifr->ifr_name);
143 (*end)->ifa_flags = ifreq.ifr_flags;
144 (*end)->ifa_addr = lws_malloc(salen);
145 memcpy((*end)->ifa_addr, sa, salen);
146 (*end)->ifa_netmask = NULL;
149 /* fix these when we actually need them */
150 if (ifreq.ifr_flags & IFF_BROADCAST) {
151 (*end)->ifa_broadaddr =
152 lws_malloc(sizeof(ifr->ifr_broadaddr));
153 memcpy((*end)->ifa_broadaddr, &ifr->ifr_broadaddr,
154 sizeof(ifr->ifr_broadaddr));
155 } else if (ifreq.ifr_flags & IFF_POINTOPOINT) {
156 (*end)->ifa_dstaddr =
157 lws_malloc(sizeof(ifr->ifr_dstaddr));
158 memcpy((*end)->ifa_dstaddr, &ifr->ifr_dstaddr,
159 sizeof(ifr->ifr_dstaddr));
161 (*end)->ifa_dstaddr = NULL;
163 (*end)->ifa_dstaddr = NULL;
165 (*end)->ifa_data = NULL;
167 end = &(*end)->ifa_next;
184 getifaddrs(struct ifaddrs **ifap)
188 #if defined(AF_INET6) && defined(SIOCGIF6CONF) && defined(SIOCGIF6FLAGS)
190 ret = getifaddrs2(ifap, AF_INET6, SIOCGIF6CONF, SIOCGIF6FLAGS,
191 sizeof(struct in6_ifreq));
193 #if defined(LWS_HAVE_IPV6) && defined(SIOCGIFCONF)
195 ret = getifaddrs2(ifap, AF_INET6, SIOCGIFCONF, SIOCGIFFLAGS,
196 sizeof(struct ifreq));
198 #if defined(AF_INET) && defined(SIOCGIFCONF) && defined(SIOCGIFFLAGS)
200 ret = getifaddrs2(ifap, AF_INET, SIOCGIFCONF, SIOCGIFFLAGS,
201 sizeof(struct ifreq));
207 freeifaddrs(struct ifaddrs *ifp)
209 struct ifaddrs *p, *q;
212 lws_free(p->ifa_name);
213 lws_free(p->ifa_addr);
214 lws_free(p->ifa_dstaddr);
215 lws_free(p->ifa_netmask);
216 lws_free(p->ifa_data);
226 print_addr(const char *s, struct sockaddr *sa)
229 printf(" %s=%d/", s, sa->sa_family);
230 #ifdef LWS_HAVE_STRUCT_SOCKADDR_SA_LEN
232 i < sa->sa_len - ((lws_intptr_t)sa->sa_data - (lws_intptr_t)&sa->sa_family); i++)
233 printf("%02x", ((unsigned char *)sa->sa_data)[i]);
235 for (i = 0; i < sizeof(sa->sa_data); i++)
236 printf("%02x", ((unsigned char *)sa->sa_data)[i]);
242 print_ifaddrs(struct ifaddrs *x)
246 for (p = x; p; p = p->ifa_next) {
247 printf("%s\n", p->ifa_name);
248 printf(" flags=%x\n", p->ifa_flags);
250 print_addr("addr", p->ifa_addr);
252 print_addr("dstaddr", p->ifa_dstaddr);
254 print_addr("netmask", p->ifa_netmask);
255 printf(" %p\n", p->ifa_data);
262 struct ifaddrs *a = NULL, *b;
263 getifaddrs2(&a, AF_INET, SIOCGIFCONF, SIOCGIFFLAGS,
264 sizeof(struct ifreq));