if.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. /* net/if.h -- declarations for inquiring about network interfaces
  2. Copyright (C) 1997,98,99,2000,2001 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _NET_IF_H
  16. #define _NET_IF_H 1
  17. #include <features.h>
  18. #ifdef __USE_MISC
  19. # include <sys/types.h>
  20. # include <sys/socket.h>
  21. #endif
  22. /* Length of interface name. */
  23. #define IF_NAMESIZE 16
  24. struct if_nameindex
  25. {
  26. unsigned int if_index; /* 1, 2, ... */
  27. char *if_name; /* null terminated name: "eth0", ... */
  28. };
  29. #ifdef __USE_MISC
  30. /* Standard interface flags. */
  31. enum
  32. {
  33. IFF_UP = 0x1, /* Interface is up. */
  34. # define IFF_UP IFF_UP
  35. IFF_BROADCAST = 0x2, /* Broadcast address valid. */
  36. # define IFF_BROADCAST IFF_BROADCAST
  37. IFF_DEBUG = 0x4, /* Turn on debugging. */
  38. # define IFF_DEBUG IFF_DEBUG
  39. IFF_LOOPBACK = 0x8, /* Is a loopback net. */
  40. # define IFF_LOOPBACK IFF_LOOPBACK
  41. IFF_POINTOPOINT = 0x10, /* Interface is point-to-point link. */
  42. # define IFF_POINTOPOINT IFF_POINTOPOINT
  43. IFF_NOTRAILERS = 0x20, /* Avoid use of trailers. */
  44. # define IFF_NOTRAILERS IFF_NOTRAILERS
  45. IFF_RUNNING = 0x40, /* Resources allocated. */
  46. # define IFF_RUNNING IFF_RUNNING
  47. IFF_NOARP = 0x80, /* No address resolution protocol. */
  48. # define IFF_NOARP IFF_NOARP
  49. IFF_PROMISC = 0x100, /* Receive all packets. */
  50. # define IFF_PROMISC IFF_PROMISC
  51. /* Not supported */
  52. IFF_ALLMULTI = 0x200, /* Receive all multicast packets. */
  53. # define IFF_ALLMULTI IFF_ALLMULTI
  54. IFF_MASTER = 0x400, /* Master of a load balancer. */
  55. # define IFF_MASTER IFF_MASTER
  56. IFF_SLAVE = 0x800, /* Slave of a load balancer. */
  57. # define IFF_SLAVE IFF_SLAVE
  58. IFF_MULTICAST = 0x1000, /* Supports multicast. */
  59. # define IFF_MULTICAST IFF_MULTICAST
  60. IFF_PORTSEL = 0x2000, /* Can set media type. */
  61. # define IFF_PORTSEL IFF_PORTSEL
  62. IFF_AUTOMEDIA = 0x4000, /* Auto media select active. */
  63. # define IFF_AUTOMEDIA IFF_AUTOMEDIA
  64. IFF_DYNAMIC = 0x8000 /* Dialup device with changing addresses. */
  65. # define IFF_DYNAMIC IFF_DYNAMIC
  66. };
  67. /* The ifaddr structure contains information about one address of an
  68. interface. They are maintained by the different address families,
  69. are allocated and attached when an address is set, and are linked
  70. together so all addresses for an interface can be located. */
  71. struct ifaddr
  72. {
  73. struct sockaddr ifa_addr; /* Address of interface. */
  74. union
  75. {
  76. struct sockaddr ifu_broadaddr;
  77. struct sockaddr ifu_dstaddr;
  78. } ifa_ifu;
  79. struct iface *ifa_ifp; /* Back-pointer to interface. */
  80. struct ifaddr *ifa_next; /* Next address for interface. */
  81. };
  82. # define ifa_broadaddr ifa_ifu.ifu_broadaddr /* broadcast address */
  83. # define ifa_dstaddr ifa_ifu.ifu_dstaddr /* other end of link */
  84. /* Device mapping structure. I'd just gone off and designed a
  85. beautiful scheme using only loadable modules with arguments for
  86. driver options and along come the PCMCIA people 8)
  87. Ah well. The get() side of this is good for WDSETUP, and it'll be
  88. handy for debugging things. The set side is fine for now and being
  89. very small might be worth keeping for clean configuration. */
  90. struct ifmap
  91. {
  92. unsigned long int mem_start;
  93. unsigned long int mem_end;
  94. unsigned short int base_addr;
  95. unsigned char irq;
  96. unsigned char dma;
  97. unsigned char port;
  98. /* 3 bytes spare */
  99. };
  100. /* Interface request structure used for socket ioctl's. All interface
  101. ioctl's must have parameter definitions which begin with ifr_name.
  102. The remainder may be interface specific. */
  103. struct ifreq
  104. {
  105. # define IFHWADDRLEN 6
  106. # define IFNAMSIZ IF_NAMESIZE
  107. union
  108. {
  109. char ifrn_name[IFNAMSIZ]; /* Interface name, e.g. "en0". */
  110. } ifr_ifrn;
  111. union
  112. {
  113. struct sockaddr ifru_addr;
  114. struct sockaddr ifru_dstaddr;
  115. struct sockaddr ifru_broadaddr;
  116. struct sockaddr ifru_netmask;
  117. struct sockaddr ifru_hwaddr;
  118. short int ifru_flags;
  119. int ifru_ivalue;
  120. int ifru_mtu;
  121. struct ifmap ifru_map;
  122. char ifru_slave[IFNAMSIZ]; /* Just fits the size */
  123. char ifru_newname[IFNAMSIZ];
  124. __caddr_t ifru_data;
  125. } ifr_ifru;
  126. };
  127. # define ifr_name ifr_ifrn.ifrn_name /* interface name */
  128. # define ifr_hwaddr ifr_ifru.ifru_hwaddr /* MAC address */
  129. # define ifr_addr ifr_ifru.ifru_addr /* address */
  130. # define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-p lnk */
  131. # define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */
  132. # define ifr_netmask ifr_ifru.ifru_netmask /* interface net mask */
  133. # define ifr_flags ifr_ifru.ifru_flags /* flags */
  134. # define ifr_metric ifr_ifru.ifru_ivalue /* metric */
  135. # define ifr_mtu ifr_ifru.ifru_mtu /* mtu */
  136. # define ifr_map ifr_ifru.ifru_map /* device map */
  137. # define ifr_slave ifr_ifru.ifru_slave /* slave device */
  138. # define ifr_data ifr_ifru.ifru_data /* for use by interface */
  139. # define ifr_ifindex ifr_ifru.ifru_ivalue /* interface index */
  140. # define ifr_bandwidth ifr_ifru.ifru_ivalue /* link bandwidth */
  141. # define ifr_qlen ifr_ifru.ifru_ivalue /* queue length */
  142. # define ifr_newname ifr_ifru.ifru_newname /* New name */
  143. # define _IOT_ifreq _IOT(_IOTS(char),IFNAMSIZ,_IOTS(char),16,0,0)
  144. # define _IOT_ifreq_short _IOT(_IOTS(char),IFNAMSIZ,_IOTS(short),1,0,0)
  145. # define _IOT_ifreq_int _IOT(_IOTS(char),IFNAMSIZ,_IOTS(int),1,0,0)
  146. /* Structure used in SIOCGIFCONF request. Used to retrieve interface
  147. configuration for machine (useful for programs which must know all
  148. networks accessible). */
  149. struct ifconf
  150. {
  151. int ifc_len; /* Size of buffer. */
  152. union
  153. {
  154. __caddr_t ifcu_buf;
  155. struct ifreq *ifcu_req;
  156. } ifc_ifcu;
  157. };
  158. # define ifc_buf ifc_ifcu.ifcu_buf /* Buffer address. */
  159. # define ifc_req ifc_ifcu.ifcu_req /* Array of structures. */
  160. # define _IOT_ifconf _IOT(_IOTS(struct ifconf),1,0,0,0,0) /* not right */
  161. #endif /* Misc. */
  162. __BEGIN_DECLS
  163. /* Convert an interface name to an index, and vice versa. */
  164. extern unsigned int if_nametoindex (const char *__ifname) __THROW;
  165. libc_hidden_proto(if_nametoindex)
  166. extern char *if_indextoname (unsigned int __ifindex, char *__ifname) __THROW;
  167. /* Return a list of all interfaces and their indices. */
  168. extern struct if_nameindex *if_nameindex (void) __THROW;
  169. libc_hidden_proto(if_nameindex)
  170. /* Free the data returned from if_nameindex. */
  171. extern void if_freenameindex (struct if_nameindex *__ptr) __THROW;
  172. libc_hidden_proto(if_freenameindex)
  173. __END_DECLS
  174. #endif /* net/if.h */