zoukankan      html  css  js  c++  java
  • C语言获取网卡状态


    title: C语言获取网卡状态
    date: 2020/2/25 17:29:28
    toc: true

    C语言获取网卡状态

    http://www.360doc.com/content/17/0510/17/8335678_652752795.shtml

    struct ifreq

    这个结构定义在include/net/if.h,用来配置ip地址,激活接口,配置MTU等接口信息的

    struct ifconf

    通常是用来保存所有接口信息的

    应用

    想要获取当前网口网线插入状态,需要用到ifreq结构体,获取网卡的信息,然后socket结合网卡驱动的ioctl,就可以得到与网线插入状态相关的数据。

    用ioctl获得本地ip地址时要用到两个结构体ifconf和ifreq,它们对于大多数人来说都是比较陌生的,这里给大家一种比较简单的理解方法,当然只一种帮助理解的方法,在描述中可能会有一些地方与真实定义有所出入,仅供参考.

    首先先认识一下ifconfifreq

    //ifconf通常是用来保存所有接口信息的
    //if.h
    struct ifconf
    {
        int ifc_len; /* size of buffer */
        union
        {
            char *ifcu_buf; /* input from user->kernel*/
            struct ifreq *ifcu_req; /* return from kernel->user*/
        } ifc_ifcu;
    };
    #define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */
    #define ifc_req ifc_ifcu.ifcu_req /* array of structures */
     
    //ifreq用来保存某个接口的信息
    //if.h
    struct ifreq 
    {
        char ifr_name[IFNAMSIZ];
        union {
            struct sockaddr ifru_addr;
            struct sockaddr ifru_dstaddr;
            struct sockaddr ifru_broadaddr;
            short ifru_flags;
            int ifru_metric;
            caddr_t ifru_data;
        } ifr_ifru;
    };
    #define ifr_addr ifr_ifru.ifru_addr
    #define ifr_dstaddr ifr_ifru.ifru_dstaddr
    #define ifr_broadaddr ifr_ifru.ifru_broadaddr
     
    

    上边这两个结构看起来比较复杂,我们现在把它们简单化一些:比如说现在我们向实现获得本地IP的功能。

    我们的做法是:

    1. 先通过ioctl获得本地所有接口的信息,并保存在ifconf
    2. 再从ifconf中取出每一个ifreq中表示ip地址的信息

    具体使用时我们可以认为ifconf就有两个成员:ifc_len 和ifc_buf, 如图一所示:

    mark

    ifc_len:表示用来存放所有接口信息的缓冲区长度
    ifc_buf:表示存放接口信息的缓冲区

    所以我们需要在程序开始时对ifconf的ifc_len和ifc_buf进行初始化
    接下来使用ioctl获取所有接口信息,完成后ifc_len内存放实际获得的接口信息总长度
    并且信息被存放在ifc_buf中。
    如下图示:(假设读到两个接口信息)

    mark

    接下来我们只需要从一个一个的接口信息获取ip地址信息即可。

    下面有一个简单的参考:

    #include <stdio.h>
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <sys/ioctl.h>
    #include <stdlib.h>
    #include <linux/if.h>
    
     
    int main()
    {
        int i=0;
        int sockfd;
        struct ifconf ifconf;
        unsigned char buf[512];
        struct ifreq *ifreq;
        //初始化ifconf
        ifconf.ifc_len = 512;
        ifconf.ifc_buf = buf;
        if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0))<0)
        {
            perror("socket" );
            exit(1);
        }
        ioctl(sockfd, SIOCGIFCONF, &ifconf); //获取所有接口信息
    //接下来一个一个的获取IP地址
        ifreq = (struct ifreq*)buf;
        for (i=(ifconf.ifc_len/sizeof (struct ifreq)); i>0; i--)
        {
            // if(ifreq->ifr_flags == AF_INET){ //for ipv4
            printf("name = [%s]/n" , ifreq->ifr_name);
            printf("local addr = [%s]/n" ,inet_ntoa(((struct sockaddr_in*)&(ifreq->ifr_addr))->sin_addr));
            ifreq++;
    // }
        }
    return 0;
    }
    

    完整的代码

    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #include <unistd.h>
     
     
    #include <sys/socket.h>
    #include <sys/ioctl.h>
    #include <linux/mii.h>
    #include <linux/sockios.h>
    #include <errno.h>
     
    #include <ifaddrs.h>
    #include <arpa/inet.h> 
     
    #include  <linux/ethtool.h>
     
    int cshell_netlink_status(const char *if_name)
    {
    	char    buffer[BUFSIZ];
    	char    cmd[100];
    	FILE    *read_fp;
    	int        chars_read;
    	int        ret =0;
     
    	memset( buffer, 0, BUFSIZ );
    	memset( cmd, 0, 100 );
    	sprintf(cmd, "ifconfig -a | grep %s",if_name);
    	read_fp = popen(cmd, "r");
    	if ( read_fp != NULL )
    	{
    		chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
    		pclose(read_fp);
     
    		if (chars_read > 0)
    		{
    			ret = 1;
    		}
    		else
    		{
    			fprintf(stderr, "DEVICE_NONE
    ");
    			return 0;
    		}
    	}
     
    	if(ret == 1)
    	{
    		memset( buffer, 0, BUFSIZ );
    		memset( cmd, 0, 100 );
    		sprintf(cmd, "ifconfig |grep %s",if_name);
    		read_fp = popen(cmd, "r");
    		if ( read_fp != NULL )
    		{
    			chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
    			pclose(read_fp);
     
    			if (chars_read > 0)
    			{
    				ret = 2;
    			}
    			else
    			{
    				fprintf(stderr, "DEVICE_DOWN
    ");
    			return 1;
    			}
    		}
    	}
     
    	if(ret == 2)
    	{
    		memset( buffer, 0, BUFSIZ );
    		memset( cmd, 0, 100 );
    		sprintf(cmd, "ifconfig %s | grep RUNNING |  awk '{print $3}'",if_name);
    		read_fp = popen(cmd, "r");
    		if ( read_fp != NULL )
    		{
    		    chars_read = fread(buffer, sizeof(char), BUFSIZ-1, read_fp);
    		    pclose(read_fp);
    			
    		    if (chars_read > 0)
    		    {
    				fprintf(stderr, "DEVICE_LINKED
    ");
    				return 3;
    		    }
    		    else
    		    {
    				fprintf(stderr, "DEVICE_UNPLUGGED
    ");
    				return 2;
    		    }
    		}
    	}
     
    	return -1;
    }
     
     
    int c_netlink_status(const char *if_name )
    {
    	int fd = -1; 
    	struct ifreq ifr; 
     
    	struct ifconf ifc;  
    	struct ifreq ifrs_buf[100]; 
    	int if_number =0;
    	int i;
     
     
    	if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
    	{
    		fprintf(stderr, "%s: socket error [%d] %s
    ",if_name, errno, strerror(errno));
    		close(fd);
    		return -1; 
    	}
     
    	ifc.ifc_len = sizeof(ifrs_buf);  
    	ifc.ifc_buf = (caddr_t)ifrs_buf;  
    	if (ioctl(fd, SIOCGIFCONF, (char *)&ifc) <0)  
    	{
    		fprintf(stderr, "%s: ioctl SIOCGIFCONF error [%d] %s
    ",if_name, errno, strerror(errno));
    		close(fd);
    		return -1; 
    	}
     
    	if_number = ifc.ifc_len / sizeof(struct ifreq);
    	for(i=0; i< if_number; i++)
    	{
    		if(strcmp(if_name,ifrs_buf[i].ifr_name ) == 0)
    		{
    			break;
    		}
    	}
     
    	if(i >= if_number)
    	{
    		close(fd);
    		fprintf(stderr, "DEVICE_NONE
    ");
    		return 0;
    	}
    	
    	bzero(&ifr, sizeof(ifr));
    	strncpy(ifr.ifr_name, if_name, IFNAMSIZ-1); 
    	ifr.ifr_name[IFNAMSIZ-1] = 0; 
    	if (ioctl(fd, SIOCGIFFLAGS, (char *)&ifr) <0)  
    	{
    		fprintf(stderr, "%s: ioctl SIOCGIFFLAGS error [%d] %s
    ",if_name, errno, strerror(errno));
    		close(fd);
    		return -1; 
    	}
    #if 1	
    	if(!(ifr.ifr_flags & IFF_UP))
    	{
    		close(fd);
    		fprintf(stderr, "DEVICE_DOWN
    ");
    		return 1;
    	}
    	
    	if(!(ifr.ifr_flags & IFF_RUNNING))
    	{
    		close(fd);
    		fprintf(stderr, "DEVICE_UNPLUGGED
    ");
    		return 2 ;
    	}
     
    	fprintf(stderr, "DEVICE_LINKED
    ");
    	return 3;
     
    #else
    {
    	struct ethtool_value edata;
    	if(!(ifr.ifr_flags & IFF_UP) || !(ifr.ifr_flags & IFF_RUNNING))
    	{
    		close(fd);
    		fprintf(stderr, "%s: DOWN
    ",if_name);
    		return 1;
    	}
    	edata.cmd = ETHTOOL_GLINK;
    	edata.data = 0;
    	ifr.ifr_data = (char *) &edata;
    	if(ioctl( fd, SIOCETHTOOL, &ifr ) < 0)
    	{
    		fprintf(stderr, "%s: ioctl SIOCETHTOOL error [%d] %s
    ",if_name, errno, strerror(errno));
    		close(fd);
    		return -1; 
    	}
     
    	if(edata.data == 0)
    	{
    		fprintf(stderr, "DEVICE_UNPLUGGED
    ");
    		return 2; 
    	}
    	else
    	{
    		fprintf(stderr, "DEVICE_LINKED
    ");
    		return 3; 
    	}
    }
    #endif
    }
    
  • 相关阅读:
    利用书签栏作插入时失败告终
    组以逗号分隔的子串及跨平update join
    ms_sql:drop and create a job
    why dicePlayer cannot player with defy mb526
    好像国庆三天是可以加班工资计了
    msssql 用numberic(38)替代int去解决int不够的问题
    C#的switch与二维数组.....
    某牛人所留的联系方式
    封装对象类
    数据库访问小列题
  • 原文地址:https://www.cnblogs.com/zongzi10010/p/12363008.html
Copyright © 2011-2022 走看看