Sockaddr.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef Sockaddr_H
  16. #define Sockaddr_H
  17. #include "memory/Allocator.h"
  18. #include "util/Endian.h"
  19. #include "util/Linker.h"
  20. Linker_require("util/platform/Sockaddr.c")
  21. #include <stdint.h>
  22. struct Sockaddr
  23. {
  24. /** the length of this sockaddr, this field is included in the length. */
  25. int64_t addrLen;
  26. };
  27. /** The number of bytes of space taken for representing the addrLen at the beginning. */
  28. #define Sockaddr_OVERHEAD 8
  29. /** The maximum possible size for the native sockaddr (not including Sockaddr_OVERHEAD) */
  30. #define Sockaddr_MAXSIZE 128
  31. struct Sockaddr_storage
  32. {
  33. struct Sockaddr addr;
  34. uint64_t nativeAddr[Sockaddr_MAXSIZE / 8];
  35. };
  36. /** 127.0.0.1 and ::1 addresses for building from. */
  37. const struct Sockaddr* const Sockaddr_LOOPBACK_be;
  38. const struct Sockaddr* const Sockaddr_LOOPBACK_le;
  39. #define Sockaddr_LOOPBACK (Endian_isBigEndian() ? Sockaddr_LOOPBACK_be : Sockaddr_LOOPBACK_le)
  40. const struct Sockaddr* const Sockaddr_LOOPBACK6;
  41. /**
  42. * Parse a sockaddr from a string, may be IP4 or IP6.
  43. *
  44. * @param str a string representation of the sockaddr.
  45. * @param output a sockaddr_storage to populate, if null then the validity of the string will be
  46. * checked only.
  47. * @return 0 if all goes well, -1 if there is an error.
  48. */
  49. int Sockaddr_parse(const char* str, struct Sockaddr_storage* out);
  50. /**
  51. * Convert a sockaddr to a printable string.
  52. */
  53. char* Sockaddr_print(struct Sockaddr* addr, struct Allocator* alloc);
  54. /**
  55. * Get the port from a sockaddr if applicable.
  56. *
  57. * @param a sockaddr.
  58. * @return the port number or -1 if not applicable to this sockaddr.
  59. */
  60. int Sockaddr_getPort(struct Sockaddr* sa);
  61. /**
  62. * Set the port for a sockaddr if applicable.
  63. *
  64. * @param sa a sockaddr.
  65. * @param port the port number to set.
  66. * @return 0 if all goes well, -1 if not applicable to this sockaddr.
  67. */
  68. int Sockaddr_setPort(struct Sockaddr* sa, uint16_t port);
  69. /**
  70. * Get the address family for the address.
  71. *
  72. * @param a sockaddr.
  73. * @return the AF number for this sockaddr.
  74. */
  75. extern const int Sockaddr_AF_INET;
  76. extern const int Sockaddr_AF_INET6;
  77. int Sockaddr_getFamily(struct Sockaddr* sa);
  78. /**
  79. * Get the address stored in a sockaddr.
  80. *
  81. * @param sa a sockaddr.
  82. * @param addrPtr a pointer which will be set to the actual address component of the sockaddr.
  83. * If NULL, the length will be returned only.
  84. * @return the length of the address component in bytes, -1 if failed to parse.
  85. */
  86. int Sockaddr_getAddress(struct Sockaddr* sa, void* addrPtr);
  87. /**
  88. * Get a new sockaddr from the native form, IE: sockaddr_in or sockaddr_in6.
  89. */
  90. struct Sockaddr* Sockaddr_fromNative(const void* ss, int addrLen, struct Allocator* alloc);
  91. /**
  92. * Output the native form of a sockaddr.
  93. */
  94. static inline void* Sockaddr_asNative(struct Sockaddr* sa)
  95. {
  96. return (void*)(&sa[1]);
  97. }
  98. static inline const void* Sockaddr_asNativeConst(const struct Sockaddr* sa)
  99. {
  100. return (const void*)(&sa[1]);
  101. }
  102. struct Sockaddr* Sockaddr_fromName(char* name, struct Allocator* alloc);
  103. /**
  104. * Contrast with Sockaddr_fromNative(), Sockaddr_fromBytes() takes
  105. * input as the bytes of the address eg: Sockaddr_fromBytes({127,0,0,1}, Sockaddr_AF_INET, alloc)
  106. */
  107. struct Sockaddr* Sockaddr_fromBytes(const uint8_t* bytes, int addrFamily, struct Allocator* alloc);
  108. /**
  109. * Clone the sockaddr, the clone will use only as much memory as the type of sockaddr requires.
  110. */
  111. struct Sockaddr* Sockaddr_clone(const struct Sockaddr* addr, struct Allocator* alloc);
  112. /**
  113. * Normalize inconsistent native sockaddr implementations
  114. */
  115. void Sockaddr_normalizeNative(void* nativeSockaddr);
  116. #endif