1. 程式人生 > >struct ifreq學習和實例

struct ifreq學習和實例

repr lin fig ack topo data- ali rem mac

一、struct ifreq結構體

這個結構定義在/usr/include/net/if.h,用來配置和獲取ip地址,掩碼,MTU等接口信息的。

[cpp] view plain copy
  1. /* Interface request structure used for socket ioctl‘s. All interface
  2. ioctl‘s must have parameter definitions which begin with ifr_name.
  3. The remainder may be interface specific. */
  4. struct ifreq
  5. {
  6. # define IFHWADDRLEN 6
  7. # define IFNAMSIZ IF_NAMESIZE
  8. union
  9. {
  10. char ifrn_name[IFNAMSIZ]; /* Interface name, e.g. "en0". */
  11. } ifr_ifrn;
  12. union
  13. {
  14. struct sockaddr ifru_addr;
  15. struct sockaddr ifru_dstaddr;
  16. struct sockaddr ifru_broadaddr;
  17. struct sockaddr ifru_netmask;
  18. struct sockaddr ifru_hwaddr;
  19. short int ifru_flags;
  20. int ifru_ivalue;
  21. int ifru_mtu;
  22. struct ifmap ifru_map;
  23. char ifru_slave[IFNAMSIZ]; /* Just fits the size */
  24. char ifru_newname[IFNAMSIZ];
  25. __caddr_t ifru_data;
  26. } ifr_ifru;
  27. };
  28. # define ifr_name ifr_ifrn.ifrn_name /* interface name */
  29. # define ifr_hwaddr ifr_ifru.ifru_hwaddr /* MAC address */
  30. # define ifr_addr ifr_ifru.ifru_addr /* address */
  31. # define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-p lnk */
  32. # define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */
  33. # define ifr_netmask ifr_ifru.ifru_netmask /* interface net mask */
  34. # define ifr_flags ifr_ifru.ifru_flags /* flags */
  35. # define ifr_metric ifr_ifru.ifru_ivalue /* metric */
  36. # define ifr_mtu ifr_ifru.ifru_mtu /* mtu */
  37. # define ifr_map ifr_ifru.ifru_map /* device map */
  38. # define ifr_slave ifr_ifru.ifru_slave /* slave device */
  39. # define ifr_data ifr_ifru.ifru_data /* for use by interface */
  40. # define ifr_ifindex ifr_ifru.ifru_ivalue /* interface index */
  41. # define ifr_bandwidth ifr_ifru.ifru_ivalue /* link bandwidth */
  42. # define ifr_qlen ifr_ifru.ifru_ivalue /* queue length */
  43. # define ifr_newname ifr_ifru.ifru_newname /* New name */
  44. # define _IOT_ifreq _IOT(_IOTS(char),IFNAMSIZ,_IOTS(char),16,0,0)
  45. # define _IOT_ifreq_short _IOT(_IOTS(char),IFNAMSIZ,_IOTS(short),1,0,0)
  46. # define _IOT_ifreq_int _IOT(_IOTS(char),IFNAMSIZ,_IOTS(int),1,0,0)



二、用法:

通過ioctl()函數調用
下表列出了網絡相關ioctl請求的request 參數以及arg 地址必須指向的數據類型:

  

類別 Request 說明 數據類型


SIOCATMARK
SIOCSPGRP
SIOCGPGRP
是否位於帶外標記
設置套接口的進程ID 或進程組ID
獲取套接口的進程ID 或進程組ID
int
int
int

FIONBIN
FIOASYNC
FIONREAD
FIOSETOWN
FIOGETOWN
設置/ 清除非阻塞I/O 標誌
設置/ 清除信號驅動異步I/O 標誌
獲取接收緩存區中的字節數
設置文件的進程ID 或進程組ID
獲取文件的進程ID 或進程組ID
int
int
int
int
int

SIOCGIFCONF
SIOCSIFADDR
SIOCGIFADDR
SIOCSIFFLAGS
SIOCGIFFLAGS
SIOCSIFDSTADDR
SIOCGIFDSTADDR
SIOCGIFBRDADDR
SIOCSIFBRDADDR
SIOCGIFNETMASK
SIOCSIFNETMASK
SIOCGIFMETRIC
SIOCSIFMETRIC
SIOCGIFMTU
SIOCxxx
獲取所有接口的清單
設置接口地址
獲取接口地址
設置接口標誌
獲取接口標誌
設置點到點地址
獲取點到點地址
獲取廣播地址
設置廣播地址
獲取子網掩碼
設置子網掩碼
獲取接口的測度
設置接口的測度
獲取接口MTU
(還有很多取決於系統的實現)
struct ifconf
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
struct ifreq
ARP SIOCSARP
SIOCGARP
SIOCDARP
創建/ 修改ARP 表項
獲取ARP 表項
刪除ARP 表項
struct arpreq
struct arpreq
struct arpreq

SIOCADDRT
SIOCDELRT
增加路徑
刪除路徑
struct rtentry
struct rtentry
I_xxx

實例一,獲取網卡的IP地址:

[cpp] view plain copy
  1. #include <string.h>
  2. #include <sys/socket.h>
  3. #include <sys/ioctl.h>
  4. #include <net/if.h>
  5. #include <stdio.h>
  6. #include <netinet/in.h>
  7. #include <arpa/inet.h>
  8. int main()
  9. {
  10. int inet_sock;
  11. struct ifreq ifr;
  12. inet_sock = socket(AF_INET, SOCK_DGRAM, 0);
  13. strcpy(ifr.ifr_name, "eth0");
  14. //SIOCGIFADDR標誌代表獲取接口地址
  15. if (ioctl(inet_sock, SIOCGIFADDR, &ifr) < 0)
  16. perror("ioctl");
  17. printf("%s\n", inet_ntoa(((struct sockaddr_in*)&(ifr.ifr_addr))->sin_addr));
  18. return 0;
  19. }

實例二,實現簡單ifconfig功能:

[cpp] view plain copy
  1. /**
  2. * \file getifstat.c
  3. * \author wzj
  4. * \brief 訪問這個struct ifconf 修改,查詢狀態
  5. * \version
  6. * \note
  7. * \date: 2012年08月11日星期六22:55:25
  8. */
  9. #include <net/if.h> /* for ifconf */
  10. #include <linux/sockios.h> /* for net status mask */
  11. #include <netinet/in.h> /* for sockaddr_in */
  12. #include <sys/socket.h>
  13. #include <sys/types.h>
  14. #include <sys/ioctl.h>
  15. #include <stdio.h>
  16. #define MAX_INTERFACE (16)
  17. void port_status(unsigned int flags);
  18. /* set == 0: do clean , set == 1: do set! */
  19. int set_if_flags(char *pif_name, int sock, int status, int set)
  20. {
  21. struct ifreq ifr;
  22. int ret = 0;
  23. strncpy(ifr.ifr_name, pif_name, strlen(pif_name) + 1);
  24. ret = ioctl(sock, SIOCGIFFLAGS, &ifr);
  25. if(ret)
  26. return -1;
  27. /* set or clean */
  28. if(set)
  29. ifr.ifr_flags |= status;
  30. else
  31. ifr.ifr_flags &= ~status;
  32. /* set flags */
  33. ret = ioctl(sock, SIOCSIFFLAGS, &ifr);
  34. if(ret)
  35. return -1;
  36. return 0;
  37. }
  38. int get_if_info(int fd)
  39. {
  40. struct ifreq buf[MAX_INTERFACE];
  41. struct ifconf ifc;
  42. int ret = 0;
  43. int if_num = 0;
  44. ifc.ifc_len = sizeof(buf);
  45. ifc.ifc_buf = (caddr_t) buf;
  46. ret = ioctl(fd, SIOCGIFCONF, (char*)&ifc);
  47. if(ret)
  48. {
  49. printf("get if config info failed");
  50. return -1;
  51. }
  52. /* 網口總數 ifc.ifc_len 應該是一個出入參數 */
  53. if_num = ifc.ifc_len/sizeof(struct ifreq);
  54. printf("interface num is interface = %d\n", if_num);
  55. while(if_num-- > 0)
  56. {
  57. printf("net device: %s\n", buf[if_num].ifr_name);
  58. /* 獲取第n個網口信息 */
  59. ret = ioctl(fd, SIOCGIFFLAGS, (char*)&buf[if_num]);
  60. if(ret)
  61. continue;
  62. /* 獲取網口狀態 */
  63. port_status(buf[if_num].ifr_flags);
  64. /* 獲取當前網卡的ip地址 */
  65. ret = ioctl(fd, SIOCGIFADDR, (char*)&buf[if_num]);
  66. if(ret)
  67. continue;
  68. printf("IP address is: \n%s\n", inet_ntoa(((struct sockaddr_in *)(&buf[if_num].ifr_addr))->sin_addr));
  69. /* 獲取當前網卡的mac */
  70. ret = ioctl(fd, SIOCGIFHWADDR, (char*)&buf[if_num]);
  71. if(ret)
  72. continue;
  73. printf("%02x:%02x:%02x:%02x:%02x:%02x\n\n",
  74. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[0],
  75. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[1],
  76. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[2],
  77. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[3],
  78. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[4],
  79. (unsigned char)buf[if_num].ifr_hwaddr.sa_data[5]
  80. );
  81. }
  82. }
  83. void port_status(unsigned int flags)
  84. {
  85. if(flags & IFF_UP)
  86. {
  87. printf("is up\n");
  88. }
  89. if(flags & IFF_BROADCAST)
  90. {
  91. printf("is broadcast\n");
  92. }
  93. if(flags & IFF_LOOPBACK)
  94. {
  95. printf("is loop back\n");
  96. }
  97. if(flags & IFF_POINTOPOINT)
  98. {
  99. printf("is point to point\n");
  100. }
  101. if(flags & IFF_RUNNING)
  102. {
  103. printf("is running\n");
  104. }
  105. if(flags & IFF_PROMISC)
  106. {
  107. printf("is promisc\n");
  108. }
  109. }
  110. int main()
  111. {
  112. int fd;
  113. fd = socket(AF_INET, SOCK_DGRAM, 0);
  114. if(fd > 0)
  115. {
  116. get_if_info(fd);
  117. close(fd);
  118. }
  119. return 0;
  120. }


運行結果:

interface num is interface = 2
net device: eth0
is up
is broadcast
is running
IP address is:
192.168.100.200
54:be:f7:33:57:26


net device: lo
is up
is loop back
is running
IP address is:
127.0.0.1
00:00:00:00:00:00

struct ifreq學習和實例