1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 99; -*- */
/* vim: set ts=4 sw=4 et tw=99: */
/* getifaddrs -- get names and addresses of all network interfaces
Copyright (C) 1999,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* 02-12-26, tim@tjansen.de: put in kde_ namespace, C++ fixes,
* included ifreq.h
* removed glibc dependencies
*/
#include "config.h"
#include "getifaddrs.h"
#include "logging.h"
#include <netinet/in.h>
#ifndef HAVE_IFADDRS_H
#include <net/if.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdio.h>
#ifndef IF_NAMESIZE
#define IF_NAMESIZE IFNAMSIZ
#endif
#ifdef SIOCGIFCONF
#define old_siocgifconf 0
static inline void __ifreq(struct ifreq **ifreqs, int *num_ifs, int sockfd)
{
int fd = sockfd;
struct ifconf ifc;
int rq_len;
int nifs;
# define RQ_IFS 4
if (fd < 0) {
fd = socket(AF_INET, SOCK_DGRAM, 0);
}
if (fd < 0) {
*num_ifs = 0;
*ifreqs = NULL;
return;
}
ifc.ifc_buf = NULL;
/* We may be able to get the needed buffer size directly, rather than
guessing. */
if (! old_siocgifconf) {
ifc.ifc_buf = NULL;
ifc.ifc_len = 0;
if (ioctl(fd, SIOCGIFCONF, &ifc) < 0 || ifc.ifc_len == 0) {
rq_len = RQ_IFS * sizeof(struct ifreq);
} else {
rq_len = ifc.ifc_len;
}
} else {
rq_len = RQ_IFS * sizeof(struct ifreq);
}
/* Read all the interfaces out of the kernel. */
while (1) {
ifc.ifc_len = rq_len;
ifc.ifc_buf = (char *) realloc(ifc.ifc_buf, ifc.ifc_len);
if (ifc.ifc_buf == NULL || ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
if (ifc.ifc_buf) {
free(ifc.ifc_buf);
}
if (fd != sockfd) {
if ((-1 == close(fd)) && (errno != EBADF)){
log_perror("close failed");
}
}
*num_ifs = 0;
*ifreqs = NULL;
return;
}
if (!old_siocgifconf || ifc.ifc_len < rq_len) {
break;
}
rq_len *= 2;
}
nifs = ifc.ifc_len / sizeof(struct ifreq);
if (fd != sockfd) {
if ((-1 == close(fd)) && (errno != EBADF)){
log_perror("close failed");
}
}
*num_ifs = nifs;
*ifreqs = (ifreq *)realloc(ifc.ifc_buf, nifs * sizeof(struct ifreq));
}
static inline struct ifreq *__if_nextreq(struct ifreq *ifr) {
return ifr + 1;
}
static inline void __if_freereq(struct ifreq *ifreqs, int num_ifs)
{
free(ifreqs);
}
/* Create a linked list of `struct kde_ifaddrs' structures, one for each
network interface on the host machine. If successful, store the
list in *IFAP and return 0. On errors, return -1 and set `errno'. */
int kde_getifaddrs(struct kde_ifaddrs **ifap)
{
/* This implementation handles only IPv4 interfaces.
The various ioctls below will only work on an AF_INET socket.
Some different mechanism entirely must be used for IPv6. */
int fd = socket(AF_INET, SOCK_DGRAM, 0);
struct ifreq *ifreqs;
int nifs;
if (fd < 0) {
return -1;
}
__ifreq(&ifreqs, &nifs, fd);
if (ifreqs == NULL) { /* XXX doesn't distinguish error vs none */
if (-1 == close(fd)){
log_perror("close failed");
}
return -1;
}
/* Now we have the list of interfaces and each one's address.
Put it into the expected format and fill in the remaining details. */
if (nifs == 0) {
*ifap = NULL;
} else {
struct Storage {
struct kde_ifaddrs ia;
struct sockaddr addr, netmask, broadaddr;
char name[IF_NAMESIZE];
} *storage;
struct ifreq *ifr;
int i;
storage = (Storage *) malloc(nifs * sizeof storage[0]);
if (storage == NULL) {
if (-1 == close(fd)){
log_perror("close failed");
}
__if_freereq(ifreqs, nifs);
return -1;
}
i = 0;
ifr = ifreqs;
do {
/* Fill in all pointers to the storage we've already allocated. */
storage[i].ia.ifa_next = &storage[i + 1].ia;
storage[i].ia.ifa_addr = &storage[i].addr;
storage[i].ia.ifa_netmask = &storage[i].netmask;
storage[i].ia.ifa_broadaddr = &storage[i].broadaddr; /* & dstaddr */
/* Now copy the information we already have from SIOCGIFCONF. */
storage[i].ia.ifa_name = strncpy(storage[i].name, ifr->ifr_name,
sizeof storage[i].name);
storage[i].addr = ifr->ifr_addr;
/* The SIOCGIFCONF call filled in only the name and address.
Now we must also ask for the other information we need. */
if (ioctl(fd, SIOCGIFFLAGS, ifr) < 0) {
break;
}
storage[i].ia.ifa_flags = ifr->ifr_flags;
ifr->ifr_addr = storage[i].addr;
if (ioctl(fd, SIOCGIFNETMASK, ifr) < 0) {
break;
}
storage[i].netmask = ifr->ifr_netmask;
if (ifr->ifr_flags & IFF_BROADCAST) {
ifr->ifr_addr = storage[i].addr;
if (ioctl(fd, SIOCGIFBRDADDR, ifr) < 0) {
break;
}
storage[i].broadaddr = ifr->ifr_broadaddr;
} else if (ifr->ifr_flags & IFF_POINTOPOINT) {
ifr->ifr_addr = storage[i].addr;
// Needed on Cygwin
#ifndef SIOCGIFDSTADDR
#define SIOCGIFDSTADDR 0x8917
#endif
if (ioctl(fd, SIOCGIFDSTADDR, ifr) < 0) {
break;
}
#if HAVE_IFR_DSTADDR
storage[i].broadaddr = ifr->ifr_dstaddr;
#else
// Fix for Cygwin
storage[i].broadaddr = ifr->ifr_broadaddr;
#endif
} else
/* Just 'cause. */
{
memset(&storage[i].broadaddr, 0, sizeof storage[i].broadaddr);
}
storage[i].ia.ifa_data = NULL; /* Nothing here for now. */
ifr = __if_nextreq(ifr);
} while (++i < nifs);
if (i < nifs) { /* Broke out early on error. */
if (-1 == close(fd)){
log_perror("close failed");
}
free(storage);
__if_freereq(ifreqs, nifs);
return -1;
}
storage[i - 1].ia.ifa_next = NULL;
*ifap = &storage[0].ia;
if (-1 == close(fd)){
log_perror("close failed");
}
__if_freereq(ifreqs, nifs);
}
return 0;
}
void kde_freeifaddrs(struct kde_ifaddrs *ifa)
{
free(ifa);
}
#else
int kde_getifaddrs(struct kde_ifaddrs **)
{
return 1;
}
void kde_freeifaddrs(struct kde_ifaddrs *)
{
}
struct { } kde_ifaddrs;
#endif
#endif
bool build_address_for_interface(struct sockaddr_in &myaddr, const std::string &interface, int port)
{
// Pre-fill the output parameter with the default address (port, INADDR_ANY)
myaddr.sin_family = AF_INET;
myaddr.sin_port = htons(port);
myaddr.sin_addr.s_addr = htonl( INADDR_ANY );
// If no interface was specified, return the default address
if (interface.empty()) {
return true;
}
// Explicit case for loopback.
if (interface == "lo") {
myaddr.sin_addr.s_addr = htonl( INADDR_LOOPBACK );
return true;
}
// Otherwise, search for the IP address of the given interface
struct kde_ifaddrs *addrs;
if (kde_getifaddrs(&addrs) < 0) {
log_perror("kde_getifaddrs()");
return false;
}
bool found = false;
for (struct kde_ifaddrs *addr = addrs; addr != nullptr; addr = addr->ifa_next) {
if (interface != addr->ifa_name) {
continue;
}
if (addr->ifa_addr == nullptr || addr->ifa_addr->sa_family != AF_INET) {
continue;
}
myaddr.sin_addr.s_addr = reinterpret_cast<struct sockaddr_in *>(addr->ifa_addr)->sin_addr.s_addr;
found = true;
break;
}
kde_freeifaddrs(addrs);
if (!found) {
log_error() << "No IP address found for interface \"" << interface << "\"" << std::endl;
return false;
}
return true;
}
|