netdev_ipaddr.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-05-18 ChenYong First version
  9. */
  10. #ifndef __NETDEV_IPADDR_H__
  11. #define __NETDEV_IPADDR_H__
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. #define EAI_NONAME 200
  17. #define EAI_SERVICE 201
  18. #define EAI_FAIL 202
  19. #define EAI_MEMORY 203
  20. #define EAI_FAMILY 204
  21. #define HOST_NOT_FOUND 210
  22. #define NO_DATA 211
  23. #define NO_RECOVERY 212
  24. #define TRY_AGAIN 213
  25. #define AI_PASSIVE 0x01
  26. #define AI_CANONNAME 0x02
  27. #define AI_NUMERICHOST 0x04
  28. #define AI_NUMERICSERV 0x08
  29. #define AI_V4MAPPED 0x10
  30. #define AI_ALL 0x20
  31. #define AI_ADDRCONFIG 0x40
  32. /* input flags for structure addrinfo */
  33. #define AI_PASSIVE 0x01
  34. #define AI_CANONNAME 0x02
  35. #define AI_NUMERICHOST 0x04
  36. #define AI_NUMERICSERV 0x08
  37. #define AI_V4MAPPED 0x10
  38. #define AI_ALL 0x20
  39. #define AI_ADDRCONFIG 0x40
  40. /*
  41. * Definitions of bits in internet address integers.
  42. * On subnets, the decomposition of addresses to host and net parts
  43. * is done according to subnet mask, not the masks here.
  44. */
  45. #define IN_CLASSA(i) (((long)(i) & 0x80000000) == 0)
  46. #define IN_CLASSA_NET 0xff000000
  47. #define IN_CLASSA_NSHIFT 24
  48. #define IN_CLASSA_HOST 0x00ffffff
  49. #define IN_CLASSA_MAX 128
  50. #define IN_CLASSB(i) (((long)(i) & 0xc0000000) == 0x80000000)
  51. #define IN_CLASSB_NET 0xffff0000
  52. #define IN_CLASSB_NSHIFT 16
  53. #define IN_CLASSB_HOST 0x0000ffff
  54. #define IN_CLASSB_MAX 65536
  55. #define IN_CLASSC(i) (((long)(i) & 0xe0000000) == 0xc0000000)
  56. #define IN_CLASSC_NET 0xffffff00
  57. #define IN_CLASSC_NSHIFT 8
  58. #define IN_CLASSC_HOST 0x000000ff
  59. #define IN_CLASSD(i) (((long)(i) & 0xf0000000) == 0xe0000000)
  60. #define IN_MULTICAST(i) IN_CLASSD(i)
  61. #define IN_EXPERIMENTAL(i) (((long)(i) & 0xe0000000) == 0xe0000000)
  62. #define IN_BADCLASS(i) (((long)(i) & 0xf0000000) == 0xf0000000)
  63. #define IN_LOOPBACKNET 127 /* official! */
  64. /* IP address types for use in ip_addr_t.type member */
  65. enum netdev_ip_addr_type {
  66. /** IPv4 */
  67. IPADDR_TYPE_V4 = 0U,
  68. /** IPv6 */
  69. IPADDR_TYPE_V6 = 6U,
  70. /** IPv4+IPv6 ("dual-stack") */
  71. IPADDR_TYPE_ANY = 46U
  72. };
  73. /** IPv4 only: set the IP address given as an u32_t */
  74. #define ip4_addr_set_u32(dest_ipaddr, src_u32) ((dest_ipaddr)->addr = (src_u32))
  75. /** IPv4 only: get the IP address as an u32_t */
  76. #define ip4_addr_get_u32(src_ipaddr) ((src_ipaddr)->addr)
  77. #define IP4ADDR_STRLEN_MAX 16
  78. /* These macros should be calculated by the preprocessor and are used
  79. with compile-time constants only (so that there is no little-endian
  80. overhead at runtime). */
  81. #define PP_HTONS(x) ((((x) & 0x00ffUL) << 8) | (((x) & 0xff00UL) >> 8))
  82. #define PP_NTOHS(x) PP_HTONS(x)
  83. #define PP_HTONL(x) ((((x) & 0x000000ffUL) << 24) | \
  84. (((x) & 0x0000ff00UL) << 8) | \
  85. (((x) & 0x00ff0000UL) >> 8) | \
  86. (((x) & 0xff000000UL) >> 24))
  87. #define PP_NTOHL(x) PP_HTONL(x)
  88. #define htons(x) (uint16_t)PP_HTONS(x)
  89. #define ntohs(x) (uint16_t)PP_NTOHS(x)
  90. #define htonl(x) (uint32_t)PP_HTONL(x)
  91. #define ntohl(x) (uint32_t)PP_NTOHL(x)
  92. /* If your port already typedef's in_addr_t, define IN_ADDR_T_DEFINED
  93. to prevent this code from redefining it. */
  94. #if !defined(in_addr_t) && !defined(IN_ADDR_T_DEFINED)
  95. typedef uint32_t in_addr_t;
  96. #endif
  97. struct in_addr
  98. {
  99. in_addr_t s_addr;
  100. };
  101. typedef struct ip4_addr
  102. {
  103. uint32_t addr;
  104. } ip4_addr_t;
  105. /** 255.255.255.255 */
  106. #define IPADDR_NONE ((uint32_t)0xffffffffUL)
  107. /** 127.0.0.1 */
  108. #define IPADDR_LOOPBACK ((uint32_t)0x7f000001UL)
  109. /** 0.0.0.0 */
  110. #define IPADDR_ANY ((uint32_t)0x00000000UL)
  111. /** 255.255.255.255 */
  112. #define IPADDR_BROADCAST ((uint32_t)0xffffffffUL)
  113. /** 255.255.255.255 */
  114. #define INADDR_NONE IPADDR_NONE
  115. /** 127.0.0.1 */
  116. #define INADDR_LOOPBACK IPADDR_LOOPBACK
  117. /** 0.0.0.0 */
  118. #define INADDR_ANY IPADDR_ANY
  119. /** 255.255.255.255 */
  120. #define INADDR_BROADCAST IPADDR_BROADCAST
  121. #define IPADDR_BROADCAST_STRING "255.255.255.255"
  122. /** Copy IP address - faster than ip4_addr_set: no NULL check */
  123. #define ip4_addr_copy(dest, src) ((dest).addr = (src).addr)
  124. #define ip4_addr_cmp(addr1, addr2) ((addr1)->addr == (addr2)->addr)
  125. /** Safely copy one IP address to another (src may be NULL) */
  126. #define ip4_addr_set(dest, src) ((dest)->addr = ((src) == NULL ? 0 : (src)->addr))
  127. /** Set complete address to zero */
  128. #define ip4_addr_set_zero(ipaddr) ((ipaddr)->addr = 0)
  129. /** Set address to IPADDR_ANY (no need for htonl()) */
  130. #define ip4_addr_set_any(ipaddr) ((ipaddr)->addr = IPADDR_ANY)
  131. #define ip4_addr_isany_val(ipaddr) ((ipaddr).addr == IPADDR_ANY)
  132. #define ip4_addr_isany(ipaddr) ((ipaddr) == NULL || ip4_addr_isany_val(*(ipaddr)))
  133. in_addr_t netdev_ipaddr_addr(const char *cp);
  134. int netdev_ip4addr_aton(const char *cp, ip4_addr_t *addr);
  135. char *netdev_ip4addr_ntoa(const ip4_addr_t *addr);
  136. char *netdev_ip4addr_ntoa_r(const ip4_addr_t *addr, char *buf, int buflen);
  137. struct in6_addr
  138. {
  139. union
  140. {
  141. uint32_t u32_addr[4];
  142. uint8_t u8_addr[16];
  143. } un;
  144. #define s6_addr un.u8_addr
  145. };
  146. typedef struct ip6_addr
  147. {
  148. uint32_t addr[4];
  149. #ifdef NETDEV_IPV6_SCOPES
  150. uint8_t zone;
  151. #endif /* NETDEV_IPV6_SCOPES */
  152. } ip6_addr_t;
  153. /** This macro can be used to initialize a variable of type struct in6_addr
  154. to the IPv6 wildcard address. */
  155. #define IN6ADDR_ANY_INIT {{{0,0,0,0}}}
  156. /** This macro can be used to initialize a variable of type struct in6_addr
  157. to the IPv6 loopback address. */
  158. #define IN6ADDR_LOOPBACK_INIT {{{0,0,0,PP_HTONL(1)}}}
  159. /** This variable is initialized by the system to contain the wildcard IPv6 address.
  160. */
  161. extern const struct in6_addr in6addr_any;
  162. #define ip6_addr_cmp(addr1, addr2) (((addr1)->addr[0] == (addr2)->addr[0]) && \
  163. ((addr1)->addr[1] == (addr2)->addr[1]) && \
  164. ((addr1)->addr[2] == (addr2)->addr[2]) && \
  165. ((addr1)->addr[3] == (addr2)->addr[3]))
  166. /** Copy IPv6 address - faster than ip6_addr_set: no NULL check */
  167. #define ip6_addr_copy(dest, src) do{(dest).addr[0] = (src).addr[0]; \
  168. (dest).addr[1] = (src).addr[1]; \
  169. (dest).addr[2] = (src).addr[2]; \
  170. (dest).addr[3] = (src).addr[3];}while(0)
  171. /** Safely copy one IPv6 address to another (src may be NULL) */
  172. #define ip6_addr_set(dest, src) do{(dest)->addr[0] = (src) == NULL ? 0 : (src)->addr[0]; \
  173. (dest)->addr[1] = (src) == NULL ? 0 : (src)->addr[1]; \
  174. (dest)->addr[2] = (src) == NULL ? 0 : (src)->addr[2]; \
  175. (dest)->addr[3] = (src) == NULL ? 0 : (src)->addr[3];}while(0)
  176. /** Set complete address to zero */
  177. #define ip6_addr_set_zero(ip6addr) do{(ip6addr)->addr[0] = 0; \
  178. (ip6addr)->addr[1] = 0; \
  179. (ip6addr)->addr[2] = 0; \
  180. (ip6addr)->addr[3] = 0;}while(0)
  181. /** Set address to ipv6 'any' (no need for lwip_htonl()) */
  182. #define ip6_addr_set_any(ip6addr) ip6_addr_set_zero(ip6addr)
  183. #define ip6_addr_isany_val(ip6addr) (((ip6addr).addr[0] == 0) && \
  184. ((ip6addr).addr[1] == 0) && \
  185. ((ip6addr).addr[2] == 0) && \
  186. ((ip6addr).addr[3] == 0))
  187. #define ip6_addr_isany(ip6addr) (((ip6addr) == NULL) || ip6_addr_isany_val(*(ip6addr)))
  188. int netdev_ip6addr_aton(const char *cp, ip6_addr_t *addr);
  189. char *netdev_ip6addr_ntoa(const ip6_addr_t *addr);
  190. char *netdev_ip6addr_ntoa_r(const ip6_addr_t *addr, char *buf, int buflen);
  191. /* A union struct for both IP version's addresses */
  192. typedef struct _ip_addr
  193. {
  194. union
  195. {
  196. ip6_addr_t ip6;
  197. ip4_addr_t ip4;
  198. } u_addr;
  199. /** @ref netdev_ip_addr_type */
  200. uint8_t type;
  201. } ip_addr_t;
  202. #define IP_SET_TYPE_VAL(ipaddr, iptype) do { (ipaddr).type = (iptype); }while(0)
  203. #define IP_SET_TYPE(ipaddr, iptype) do { if((ipaddr) != NULL) { IP_SET_TYPE_VAL(*(ipaddr), iptype); }}while(0)
  204. #define IP_GET_TYPE(ipaddr) ((ipaddr)->type)
  205. #define IP_IS_V4_VAL(ipaddr) (IP_GET_TYPE(&ipaddr) == IPADDR_TYPE_V4)
  206. #define IP_IS_V6_VAL(ipaddr) (IP_GET_TYPE(&ipaddr) == IPADDR_TYPE_V6)
  207. #define IP_IS_V4(ipaddr) (((ipaddr) == NULL) || IP_IS_V4_VAL(*(ipaddr)))
  208. #define IP_IS_V6(ipaddr) (((ipaddr) != NULL) && IP_IS_V6_VAL(*(ipaddr)))
  209. /** Convert generic ip address to specific protocol version */
  210. #define ip_2_ip6(ipaddr) (&((ipaddr)->u_addr.ip6))
  211. /** Convert generic ip address to specific protocol version */
  212. #define ip_2_ip4(ipaddr) (&((ipaddr)->u_addr.ip4))
  213. #define ip_addr_copy(dest, src) do{ IP_SET_TYPE_VAL(dest, IP_GET_TYPE(&src)); if(IP_IS_V6_VAL(src)){ \
  214. ip6_addr_copy(*ip_2_ip6(&(dest)), *ip_2_ip6(&(src))); }else{ \
  215. ip4_addr_copy(*ip_2_ip4(&(dest)), *ip_2_ip4(&(src))); }}while(0)
  216. #define ip_addr_cmp(addr1, addr2) ((IP_GET_TYPE(addr1) != IP_GET_TYPE(addr2)) ? 0 : (IP_IS_V6_VAL(*(addr1)) ? \
  217. ip6_addr_cmp(ip_2_ip6(addr1), ip_2_ip6(addr2)) : \
  218. ip4_addr_cmp(ip_2_ip4(addr1), ip_2_ip4(addr2))))
  219. #define ip_addr_set(dest, src) do{ IP_SET_TYPE(dest, IP_GET_TYPE(src)); if(IP_IS_V6(src)){ \
  220. ip6_addr_set(ip_2_ip6(dest), ip_2_ip6(src)); }else{ \
  221. ip4_addr_set(ip_2_ip4(dest), ip_2_ip4(src)); }}while(0)
  222. #define ip_addr_set_zero(ipaddr) do{ ip6_addr_set_zero(ip_2_ip6(ipaddr)); IP_SET_TYPE(ipaddr, 0); }while(0)
  223. #define ip_addr_set_any(is_ipv6, ipaddr) do{ if(is_ipv6){ \
  224. ip6_addr_set_any(ip_2_ip6(ipaddr)); IP_SET_TYPE(ipaddr, IPADDR_TYPE_V6); }else{ \
  225. ip4_addr_set_any(ip_2_ip4(ipaddr)); IP_SET_TYPE(ipaddr, IPADDR_TYPE_V4); }}while(0)
  226. #define ip_addr_isany_val(ipaddr) ((IP_IS_V6_VAL(ipaddr)) ? \
  227. ip6_addr_isany_val(*ip_2_ip6(&(ipaddr))) : \
  228. ip4_addr_isany_val(*ip_2_ip4(&(ipaddr))))
  229. #define ip_addr_isany(ipaddr) ((IP_IS_V6(ipaddr)) ? \
  230. ip6_addr_isany(ip_2_ip6(ipaddr)) : \
  231. ip4_addr_isany(ip_2_ip4(ipaddr)))
  232. /* directly map this to the lwip internal functions */
  233. #define inet_addr(cp) netdev_ipaddr_addr(cp)
  234. #define inet_aton(cp, addr) ((IP_IS_V6_VAL(*addr)) ? \
  235. netdev_ip6addr_aton(cp, ip_2_ip6(addr)) : \
  236. netdev_ip4addr_aton(cp, ip_2_ip4(addr)))
  237. #define inet_ntoa(addr) ((IP_IS_V6_VAL(addr)) ? \
  238. netdev_ip6addr_ntoa(ip_2_ip6(&addr)) : \
  239. netdev_ip4addr_ntoa(ip_2_ip4(&addr)))
  240. #define inet_ntoa_r(addr, buf, buflen) ((IP_IS_V6_VAL(addr)) ? \
  241. netdev_ip6addr_ntoa_r(ip_2_ip6(&addr), buf, buflen) : \
  242. netdev_ip4addr_ntoa_r(ip_2_ip4(&addr), buf, buflen))
  243. const char *netdev_inet_ntop(int af, const void *src, char *dst, int32_t size);
  244. int netdev_inet_pton(int af, const char *src, void *dst);
  245. int ipaddr_aton(const char *cp, ip_addr_t *addr);
  246. int get_ipaddr_type(const char *cp);
  247. #define inet_ntop(af, src, dst, size) netdev_inet_ntop(af, src, dst, size)
  248. #define inet_pton(af, src, dst) netdev_inet_pton(af, src, dst)
  249. #define DNS_MAX_NAME_LENGTH 256
  250. #define AI_PASSIVE 0x01
  251. #define AI_CANONNAME 0x02
  252. #define AI_NUMERICHOST 0x04
  253. #define AI_NUMERICSERV 0x08
  254. #define AI_V4MAPPED 0x10
  255. #define AI_ALL 0x20
  256. #define AI_ADDRCONFIG 0x40
  257. typedef uint32_t socklen_t;
  258. typedef uint8_t sa_family_t;
  259. typedef uint16_t in_port_t;
  260. struct addrinfo {
  261. int ai_flags; /* Input flags. */
  262. int ai_family; /* Address family of socket. */
  263. int ai_socktype; /* Socket type. */
  264. int ai_protocol; /* Protocol of socket. */
  265. socklen_t ai_addrlen; /* Length of socket address. */
  266. struct sockaddr *ai_addr; /* Socket address of socket. */
  267. char *ai_canonname; /* Canonical name of service location. */
  268. struct addrinfo *ai_next; /* Pointer to next in list. */
  269. };
  270. #ifdef __cplusplus
  271. }
  272. #endif
  273. #endif /* __NETDEV_IPADDR_H__ */