/* * intf-win32.c * * Copyright (c) 2002 Dug Song * * $Id: intf-win32.c 632 2006-08-10 04:36:52Z dugsong $ */ #ifdef _WIN32 #include "dnet_winconfig.h" #else #include "config.h" #endif #include #include #include #include #include #include #include "dnet.h" #include "pcap.h" #include #include struct ifcombo { struct { DWORD ipv4; DWORD ipv6; } *idx; int cnt; int max; }; /* XXX - ipifcons.h incomplete, use IANA ifTypes MIB */ #define MIB_IF_TYPE_TUNNEL 131 #define MIB_IF_TYPE_MAX MAX_IF_TYPE struct intf_handle { struct ifcombo ifcombo[MIB_IF_TYPE_MAX]; IP_ADAPTER_ADDRESSES *iftable; }; static char * _ifcombo_name(int type) { char *name = "eth"; /* XXX */ if (type == IF_TYPE_ISO88025_TOKENRING) { name = "tr"; } else if (type == IF_TYPE_PPP) { name = "ppp"; } else if (type == IF_TYPE_SOFTWARE_LOOPBACK) { name = "lo"; } else if (type == IF_TYPE_TUNNEL) { name = "tun"; } /* IF_TYPE_OTHER IF_TYPE_ETHERNET_CSMACD IF_TYPE_ATM IF_TYPE_IEEE80211 IF_TYPE_IEEE1394 */ return (name); } static int _ifcombo_type(const char *device) { int type = INTF_TYPE_OTHER; if (strncmp(device, "eth", 3) == 0) { type = INTF_TYPE_ETH; } else if (strncmp(device, "tr", 2) == 0) { type = INTF_TYPE_TOKENRING; } else if (strncmp(device, "ppp", 3) == 0) { type = INTF_TYPE_PPP; } else if (strncmp(device, "lo", 2) == 0) { type = INTF_TYPE_LOOPBACK; } else if (strncmp(device, "tun", 3) == 0) { type = INTF_TYPE_TUN; } return (type); } static void _ifcombo_add(struct ifcombo *ifc, DWORD ipv4_idx, DWORD ipv6_idx) { if (ifc->cnt == ifc->max) { if (ifc->idx) { ifc->max *= 2; ifc->idx = realloc(ifc->idx, sizeof(ifc->idx[0]) * ifc->max); } else { ifc->max = 8; ifc->idx = malloc(sizeof(ifc->idx[0]) * ifc->max); } } ifc->idx[ifc->cnt].ipv4 = ipv4_idx; ifc->idx[ifc->cnt].ipv6 = ipv6_idx; ifc->cnt++; } /* Map an MIB interface type into an internal interface type. The internal types are never exposed to users of this library; they exist only for the sake of ordering interface types within an intf_handle, which has an array of ifcombo structures ordered by type. Entries in an intf_handle must not be stored or accessed by a raw MIB type number because they will not be able to be found by a device name such as "net0" if the device name does not map exactly to the type. */ static int _if_type_canonicalize(int type) { return _ifcombo_type(_ifcombo_name(type)); } static void _adapter_address_to_entry(intf_t *intf, IP_ADAPTER_ADDRESSES *a, struct intf_entry *entry) { struct addr *ap, *lap; int i; int type; IP_ADAPTER_UNICAST_ADDRESS *addr; /* The total length of the entry may be passed inside entry. Remember it and clear the entry. */ u_int intf_len = entry->intf_len; memset(entry, 0, sizeof(*entry)); entry->intf_len = intf_len; type = _if_type_canonicalize(a->IfType); for (i = 0; i < intf->ifcombo[type].cnt; i++) { if (intf->ifcombo[type].idx[i].ipv4 == a->IfIndex && intf->ifcombo[type].idx[i].ipv6 == a->Ipv6IfIndex) { break; } } /* XXX - type matches MIB-II ifType. */ snprintf(entry->intf_name, sizeof(entry->intf_name), "%s%lu", _ifcombo_name(a->IfType), i); entry->intf_type = (uint16_t)type; /* Get interface flags. */ entry->intf_flags = 0; if (a->OperStatus == IfOperStatusUp) entry->intf_flags |= INTF_FLAG_UP; if (a->IfType == IF_TYPE_SOFTWARE_LOOPBACK) entry->intf_flags |= INTF_FLAG_LOOPBACK; else entry->intf_flags |= INTF_FLAG_MULTICAST; /* Get interface MTU. */ entry->intf_mtu = a->Mtu; /* Get hardware address. */ if (a->PhysicalAddressLength == ETH_ADDR_LEN) { entry->intf_link_addr.addr_type = ADDR_TYPE_ETH; entry->intf_link_addr.addr_bits = ETH_ADDR_BITS; memcpy(&entry->intf_link_addr.addr_eth, a->PhysicalAddress, ETH_ADDR_LEN); } /* Get addresses. */ ap = entry->intf_alias_addrs; lap = ap + ((entry->intf_len - sizeof(*entry)) / sizeof(entry->intf_alias_addrs[0])); for (addr = a->FirstUnicastAddress; addr != NULL; addr = addr->Next) { IP_ADAPTER_PREFIX *prefix; unsigned short bits; /* Find the netmask length. This is stored in a parallel list. We just take the first one with a matching address family, but that may not be right. Windows Vista and later has an OnLinkPrefixLength member that is stored right with the unicast address. */ bits = 0; for (prefix = a->FirstPrefix; prefix != NULL; prefix = prefix->Next) { if (prefix->Address.lpSockaddr->sa_family == addr->Address.lpSockaddr->sa_family) { bits = (unsigned short) prefix->PrefixLength; break; } } if (entry->intf_addr.addr_type == ADDR_TYPE_NONE) { /* Set primary address if unset. */ addr_ston(addr->Address.lpSockaddr, &entry->intf_addr); entry->intf_addr.addr_bits = bits; } else if (ap < lap) { /* Set aliases. */ addr_ston(addr->Address.lpSockaddr, ap); ap->addr_bits = bits; ap++; entry->intf_alias_num++; } } entry->intf_len = (u_int) ((u_char *)ap - (u_char *)entry); } static int _refresh_tables(intf_t *intf) { IP_ADAPTER_ADDRESSES *p; DWORD ret; ULONG len; p = NULL; /* GetAdaptersAddresses is supposed to return ERROR_BUFFER_OVERFLOW and * set len to the required size when len is too small. So normally we * would call the function once with a small len, and then again with * the longer len. But, on Windows 2003, apparently you only get * ERROR_BUFFER_OVERFLOW the *first* time you call the function with a * too-small len--the next time you get ERROR_INVALID_PARAMETER. So this * function would fail the second and later times it is called. * * So, make the first call using a large len. On Windows 2003, this will * work the first time as long as there are not too many adapters. (It * will still fail with ERROR_INVALID_PARAMETER if there are too many * adapters, but this will happen infrequently because of the large * buffer.) Other systems that always return ERROR_BUFFER_OVERFLOW when * appropriate will enlarge the buffer if the initial len is too short. */ len = 16384; do { free(p); p = malloc(len); if (p == NULL) return (-1); ret = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX | GAA_FLAG_SKIP_ANYCAST | GAA_FLAG_SKIP_MULTICAST, NULL, p, &len); } while (ret == ERROR_BUFFER_OVERFLOW); if (ret != NO_ERROR) { free(p); return (-1); } intf->iftable = p; /* * Map "unfriendly" win32 interface indices to ours. * XXX - like IP_ADAPTER_INFO ComboIndex */ for (p = intf->iftable; p != NULL; p = p->Next) { int type; type = _if_type_canonicalize(p->IfType); if (type < MIB_IF_TYPE_MAX) _ifcombo_add(&intf->ifcombo[type], p->IfIndex, p->Ipv6IfIndex); else return (-1); } return (0); } static IP_ADAPTER_ADDRESSES * _find_adapter_address(intf_t *intf, const char *device) { IP_ADAPTER_ADDRESSES *a; char *p = (char *)device; int n, type = _ifcombo_type(device); while (isalpha((int) (unsigned char) *p)) p++; n = atoi(p); for (a = intf->iftable; a != NULL; a = a->Next) { if (intf->ifcombo[type].idx[n].ipv4 == a->IfIndex && intf->ifcombo[type].idx[n].ipv6 == a->Ipv6IfIndex) { return a; } } return NULL; } static IP_ADAPTER_ADDRESSES * _find_adapter_address_by_index(intf_t *intf, int af, unsigned int index) { IP_ADAPTER_ADDRESSES *a; for (a = intf->iftable; a != NULL; a = a->Next) { if (af == AF_INET && index == a->IfIndex) return a; if (af == AF_INET6 && index == a->Ipv6IfIndex) return a; } return NULL; } intf_t * intf_open(void) { return (calloc(1, sizeof(intf_t))); } int intf_get(intf_t *intf, struct intf_entry *entry) { IP_ADAPTER_ADDRESSES *a; if (_refresh_tables(intf) < 0) return (-1); a = _find_adapter_address(intf, entry->intf_name); if (a == NULL) return (-1); _adapter_address_to_entry(intf, a, entry); return (0); } /* Look up an interface from an index, such as a sockaddr_in6.sin6_scope_id. */ int intf_get_index(intf_t *intf, struct intf_entry *entry, int af, unsigned int index) { IP_ADAPTER_ADDRESSES *a; if (_refresh_tables(intf) < 0) return (-1); a = _find_adapter_address_by_index(intf, af, index); if (a == NULL) return (-1); _adapter_address_to_entry(intf, a, entry); return (0); } int intf_get_src(intf_t *intf, struct intf_entry *entry, struct addr *src) { IP_ADAPTER_ADDRESSES *a; IP_ADAPTER_UNICAST_ADDRESS *addr; if (src->addr_type != ADDR_TYPE_IP) { errno = EINVAL; return (-1); } if (_refresh_tables(intf) < 0) return (-1); for (a = intf->iftable; a != NULL; a = a->Next) { for (addr = a->FirstUnicastAddress; addr != NULL; addr = addr->Next) { struct addr dnet_addr; addr_ston(addr->Address.lpSockaddr, &dnet_addr); if (addr_cmp(&dnet_addr, src) == 0) { _adapter_address_to_entry(intf, a, entry); return (0); } } } errno = ENXIO; return (-1); } int intf_get_dst(intf_t *intf, struct intf_entry *entry, struct addr *dst) { errno = ENOSYS; SetLastError(ERROR_NOT_SUPPORTED); return (-1); } int intf_set(intf_t *intf, const struct intf_entry *entry) { /* * XXX - could set interface up/down via SetIfEntry(), * but what about the rest of the configuration? :-( * {Add,Delete}IPAddress for 2000/XP only */ errno = ENOSYS; SetLastError(ERROR_NOT_SUPPORTED); return (-1); } int intf_loop(intf_t *intf, intf_handler callback, void *arg) { IP_ADAPTER_ADDRESSES *a; struct intf_entry *entry; u_char ebuf[1024]; int ret; if (_refresh_tables(intf) < 0) return (-1); entry = (struct intf_entry *)ebuf; for (a = intf->iftable; a != NULL; a = a->Next) { entry->intf_len = sizeof(ebuf); _adapter_address_to_entry(intf, a, entry); if ((ret = (*callback)(entry, arg)) != 0) break; } return (ret); } intf_t * intf_close(intf_t *intf) { int i; if (intf != NULL) { for (i = 0; i < MIB_IF_TYPE_MAX; i++) { if (intf->ifcombo[i].idx) free(intf->ifcombo[i].idx); } if (intf->iftable) free(intf->iftable); free(intf); } return (NULL); } /* Converts a libdnet interface name to its pcap equivalent. The pcap name is stored in pcapdev up to a length of pcapdevlen, including the terminating '\0'. Returns -1 on error. */ int intf_get_pcap_devname(const char *intf_name, char *pcapdev, int pcapdevlen) { IP_ADAPTER_ADDRESSES *a; pcap_if_t *pcapdevs; pcap_if_t *pdev, *selected; intf_t *intf; if ((intf = intf_open()) == NULL) return (-1); if (_refresh_tables(intf) < 0) { intf_close(intf); return (-1); } a = _find_adapter_address(intf, intf_name); if (a == NULL) { intf_close(intf); return (-1); } if (pcap_findalldevs(&pcapdevs, NULL) == -1) { intf_close(intf); return (-1); } /* Loop through all the pcap devices until we find a match. */ selected = NULL; for (pdev = pcapdevs; pdev != NULL; pdev = pdev->next) { char *name; if (pdev->name == NULL) continue; name = strchr(pdev->name, '{'); if (name == NULL) continue; if (strcmp(name, a->AdapterName) == 0) break; } if (pdev != NULL) strlcpy(pcapdev, pdev->name, pcapdevlen); intf_close(intf); pcap_freealldevs(pcapdevs); if (pdev == NULL) return -1; else return 0; }