gpt4 book ai didi

c++ - 如何在centos中的c中从IP获取以太网适配器名称

转载 作者:太空宇宙 更新时间:2023-11-04 08:27:24 25 4
gpt4 key购买 nike

有两个以太网适配器,所以我有两个不同的 IP 地址。现在我想用相应的 ip 找到适配器的名称。比如,我有 IP 为 192.168.10.1 的英特尔卡。如何在没有任何第三方安装的情况下使用 C 或 C++ 在 centos(linux) 中检索此适配器名称?

我需要找到制造商名称(不是 eth0 等)。该制造商列表位于“/usr/share/hwdata/pci.ids”中,但我无法将该名称与 IP 地址对应起来。我可以使用 'lscpu | 获取适配器名称列表grep“以太网”'。但问题又出现了,将名称与 ip 地址映射起来。

最佳答案

getifaddrs标准 libc 中的函数。我修改了手册页中的示例。

您无法从内核获取名称,但它在 /sys 文件系统中提供了 PCI ID。您可以使用 libpci 将这些数字解析为文件名。当前代码不支持 USB 设备和子设备编号。

#define _GNU_SOURCE     /* To get defns of NI_MAXSERV and NI_MAXHOST */
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netdb.h>
#include <ifaddrs.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/if_link.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <limits.h>

#include <pci/pci.h>

/* PCI IDs are contained in /sys filesystem. */
unsigned long read_sysfs_uint(const char* ifa_name, const char* info) {
char path[PATH_MAX];
char buf[12];
int fd;

snprintf(path, PATH_MAX, "/sys/class/net/%s/device/%s", ifa_name, info);

fd = open(path, O_RDONLY);
if(fd == -1)
return 0;

if(read(fd, buf, 12) == -1) {
close(fd);
return 0;
}

close(fd);
return strtoul(buf, NULL, 16);
}

/* Try to get PCI IDs and get PCI device name for it.
XXX: doesn't check for subsystem's numbers */
void print_pci_ids(const char* ifa_name) {
int vendor = (int) read_sysfs_uint(ifa_name, "vendor");
int device = (int) read_sysfs_uint(ifa_name, "device");
int subsystem_vendor = (int) read_sysfs_uint(ifa_name, "subsystem_vendor");
int subsystem_device = (int) read_sysfs_uint(ifa_name, "subsystem_device");

struct pci_access *pacc = pci_alloc();
char namebuf[256];

printf("PCI IDs: %x %x %x %x\n", vendor, device, subsystem_device, subsystem_vendor);

pci_init(pacc);

if(pci_lookup_name(pacc, namebuf, 256,
PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
vendor, device)) {
printf("PCI Name: %s\n", namebuf);
}

pci_cleanup(pacc);
}

int main(int argc, char *argv[])
{
struct ifaddrs *ifaddr, *ifa;
struct in_addr* ifa_inaddr;
struct in_addr addr;
int family, s, n;

if(argc != 2) {
fprintf(stderr, "Usage: getifaddr <IP>\n");
return EXIT_FAILURE;
}

if (inet_aton(argv[1], &addr) == 0) {
perror("inet_aton");
return EXIT_FAILURE;
}

if (getifaddrs(&ifaddr) == -1) {
perror("getifaddrs");
return EXIT_FAILURE;
}

/* Walk through linked list, maintaining head pointer so we
can free list later */

for (ifa = ifaddr, n = 0; ifa != NULL; ifa = ifa->ifa_next, n++) {
if (ifa->ifa_addr == NULL)
continue;

/* We seek only for IPv4 addresses */
if(ifa->ifa_addr->sa_family != AF_INET)
continue;

ifa_inaddr = &(((struct sockaddr_in*) ifa->ifa_addr)->sin_addr);
if(memcmp(ifa_inaddr, &addr, sizeof(struct in_addr)) == 0) {
printf("Interface: %s\n", ifa->ifa_name);
print_pci_ids(ifa->ifa_name);
}
}

freeifaddrs(ifaddr);
return EXIT_SUCCESS;
}

libpci编译(需要安装相应的开发包):

$ gcc getifname.c -lpci -o ./getifname

下面是它的用法示例:

$ ./getifname 
Usage: getifaddr <IP>
$ ./getifname dlks
inet_aton: Success
$ ./getifname 127.0.0.1
Interface: lo
PCI IDs: 0 0 0 0
PCI Name: Device 0000:0000
$ ./getifname 192.168.13.144
Interface: wlan0
PCI IDs: 8086 88e 4060 8086
PCI Name: Intel Corporation Centrino Advanced-N 6235

关于c++ - 如何在centos中的c中从IP获取以太网适配器名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29846090/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com