ip_addr.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without modification,
  6. * are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice,
  9. * this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright notice,
  11. * this list of conditions and the following disclaimer in the documentation
  12. * and/or other materials provided with the distribution.
  13. * 3. The name of the author may not be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  17. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  19. * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  20. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  21. * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  24. * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
  25. * OF SUCH DAMAGE.
  26. *
  27. * This file is part of the lwIP TCP/IP stack.
  28. *
  29. * Author: Adam Dunkels <adam@sics.se>
  30. *
  31. */
  32. #ifndef __LWIP_IP_ADDR_H__
  33. #define __LWIP_IP_ADDR_H__
  34. #include "lwip/opt.h"
  35. #include "lwip/inet.h"
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39. #ifdef PACK_STRUCT_USE_INCLUDES
  40. # include "arch/bpstruct.h"
  41. #endif
  42. PACK_STRUCT_BEGIN
  43. struct ip_addr {
  44. PACK_STRUCT_FIELD(u32_t addr);
  45. } PACK_STRUCT_STRUCT;
  46. PACK_STRUCT_END
  47. #ifdef PACK_STRUCT_USE_INCLUDES
  48. # include "arch/epstruct.h"
  49. #endif
  50. /*
  51. * struct ipaddr2 is used in the definition of the ARP packet format in
  52. * order to support compilers that don't have structure packing.
  53. */
  54. #ifdef PACK_STRUCT_USE_INCLUDES
  55. # include "arch/bpstruct.h"
  56. #endif
  57. PACK_STRUCT_BEGIN
  58. struct ip_addr2 {
  59. PACK_STRUCT_FIELD(u16_t addrw[2]);
  60. } PACK_STRUCT_STRUCT;
  61. PACK_STRUCT_END
  62. #ifdef PACK_STRUCT_USE_INCLUDES
  63. # include "arch/epstruct.h"
  64. #endif
  65. struct netif;
  66. extern const struct ip_addr ip_addr_any;
  67. extern const struct ip_addr ip_addr_broadcast;
  68. /** IP_ADDR_ can be used as a fixed IP address
  69. * for the wildcard and the broadcast address
  70. */
  71. #define IP_ADDR_ANY ((struct ip_addr *)&ip_addr_any)
  72. #define IP_ADDR_BROADCAST ((struct ip_addr *)&ip_addr_broadcast)
  73. /* Definitions of the bits in an Internet address integer.
  74. On subnets, host and network parts are found according to
  75. the subnet mask, not these masks. */
  76. #define IN_CLASSA(a) ((((u32_t)(a)) & 0x80000000UL) == 0)
  77. #define IN_CLASSA_NET 0xff000000
  78. #define IN_CLASSA_NSHIFT 24
  79. #define IN_CLASSA_HOST (0xffffffff & ~IN_CLASSA_NET)
  80. #define IN_CLASSA_MAX 128
  81. #define IN_CLASSB(a) ((((u32_t)(a)) & 0xc0000000UL) == 0x80000000UL)
  82. #define IN_CLASSB_NET 0xffff0000
  83. #define IN_CLASSB_NSHIFT 16
  84. #define IN_CLASSB_HOST (0xffffffff & ~IN_CLASSB_NET)
  85. #define IN_CLASSB_MAX 65536
  86. #define IN_CLASSC(a) ((((u32_t)(a)) & 0xe0000000UL) == 0xc0000000UL)
  87. #define IN_CLASSC_NET 0xffffff00
  88. #define IN_CLASSC_NSHIFT 8
  89. #define IN_CLASSC_HOST (0xffffffff & ~IN_CLASSC_NET)
  90. #define IN_CLASSD(a) (((u32_t)(a) & 0xf0000000UL) == 0xe0000000UL)
  91. #define IN_CLASSD_NET 0xf0000000 /* These ones aren't really */
  92. #define IN_CLASSD_NSHIFT 28 /* net and host fields, but */
  93. #define IN_CLASSD_HOST 0x0fffffff /* routing needn't know. */
  94. #define IN_MULTICAST(a) IN_CLASSD(a)
  95. #define IN_EXPERIMENTAL(a) (((u32_t)(a) & 0xf0000000UL) == 0xf0000000UL)
  96. #define IN_BADCLASS(a) (((u32_t)(a) & 0xf0000000UL) == 0xf0000000UL)
  97. #define IN_LOOPBACKNET 127 /* official! */
  98. #define IP4_ADDR(ipaddr, a,b,c,d) \
  99. (ipaddr)->addr = htonl(((u32_t)((a) & 0xff) << 24) | \
  100. ((u32_t)((b) & 0xff) << 16) | \
  101. ((u32_t)((c) & 0xff) << 8) | \
  102. (u32_t)((d) & 0xff))
  103. #define ip_addr_set(dest, src) (dest)->addr = \
  104. ((src) == NULL? 0:\
  105. (src)->addr)
  106. /**
  107. * Determine if two address are on the same network.
  108. *
  109. * @arg addr1 IP address 1
  110. * @arg addr2 IP address 2
  111. * @arg mask network identifier mask
  112. * @return !0 if the network identifiers of both address match
  113. */
  114. #define ip_addr_netcmp(addr1, addr2, mask) (((addr1)->addr & \
  115. (mask)->addr) == \
  116. ((addr2)->addr & \
  117. (mask)->addr))
  118. #define ip_addr_cmp(addr1, addr2) ((addr1)->addr == (addr2)->addr)
  119. #define ip_addr_isany(addr1) ((addr1) == NULL || (addr1)->addr == 0)
  120. u8_t ip_addr_isbroadcast(struct ip_addr *, struct netif *);
  121. #define ip_addr_ismulticast(addr1) (((addr1)->addr & ntohl(0xf0000000UL)) == ntohl(0xe0000000UL))
  122. #define ip_addr_islinklocal(addr1) (((addr1)->addr & ntohl(0xffff0000UL)) == ntohl(0xa9fe0000UL))
  123. #define ip_addr_debug_print(debug, ipaddr) \
  124. LWIP_DEBUGF(debug, ("%"U16_F".%"U16_F".%"U16_F".%"U16_F, \
  125. ipaddr != NULL ? \
  126. (u16_t)(ntohl((ipaddr)->addr) >> 24) & 0xff : 0, \
  127. ipaddr != NULL ? \
  128. (u16_t)(ntohl((ipaddr)->addr) >> 16) & 0xff : 0, \
  129. ipaddr != NULL ? \
  130. (u16_t)(ntohl((ipaddr)->addr) >> 8) & 0xff : 0, \
  131. ipaddr != NULL ? \
  132. (u16_t)ntohl((ipaddr)->addr) & 0xff : 0))
  133. /* These are cast to u16_t, with the intent that they are often arguments
  134. * to printf using the U16_F format from cc.h. */
  135. #define ip4_addr1(ipaddr) ((u16_t)(ntohl((ipaddr)->addr) >> 24) & 0xff)
  136. #define ip4_addr2(ipaddr) ((u16_t)(ntohl((ipaddr)->addr) >> 16) & 0xff)
  137. #define ip4_addr3(ipaddr) ((u16_t)(ntohl((ipaddr)->addr) >> 8) & 0xff)
  138. #define ip4_addr4(ipaddr) ((u16_t)(ntohl((ipaddr)->addr)) & 0xff)
  139. /**
  140. * Same as inet_ntoa() but takes a struct ip_addr*
  141. */
  142. #define ip_ntoa(addr) ((addr != NULL) ? inet_ntoa(*((struct in_addr*)(addr))) : "NULL")
  143. #ifdef __cplusplus
  144. }
  145. #endif
  146. #endif /* __LWIP_IP_ADDR_H__ */