wpabuf.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * Dynamic data buffer
  3. * Copyright (c) 2007-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #ifndef WPABUF_H
  15. #define WPABUF_H
  16. /*
  17. * Internal data structure for wpabuf. Please do not touch this directly from
  18. * elsewhere. This is only defined in header file to allow inline functions
  19. * from this file to access data.
  20. */
  21. struct wpabuf {
  22. size_t size; /* total size of the allocated buffer */
  23. size_t used; /* length of data in the buffer */
  24. u8 *ext_data; /* pointer to external data; NULL if data follows
  25. * struct wpabuf */
  26. /* optionally followed by the allocated buffer */
  27. };
  28. int wpabuf_resize(struct wpabuf **buf, size_t add_len);
  29. struct wpabuf * wpabuf_alloc(size_t len);
  30. struct wpabuf * wpabuf_alloc_ext_data(u8 *data, size_t len);
  31. struct wpabuf * wpabuf_alloc_copy(const void *data, size_t len);
  32. struct wpabuf * wpabuf_dup(const struct wpabuf *src);
  33. void wpabuf_free(struct wpabuf *buf);
  34. void * wpabuf_put(struct wpabuf *buf, size_t len);
  35. struct wpabuf * wpabuf_concat(struct wpabuf *a, struct wpabuf *b);
  36. struct wpabuf * wpabuf_zeropad(struct wpabuf *buf, size_t len);
  37. void wpabuf_printf(struct wpabuf *buf, const char *fmt, ...) PRINTF_FORMAT(2, 3);
  38. /**
  39. * wpabuf_size - Get the currently allocated size of a wpabuf buffer
  40. * @buf: wpabuf buffer
  41. * Returns: Currently allocated size of the buffer
  42. */
  43. static inline size_t wpabuf_size(const struct wpabuf *buf)
  44. {
  45. return buf->size;
  46. }
  47. /**
  48. * wpabuf_len - Get the current length of a wpabuf buffer data
  49. * @buf: wpabuf buffer
  50. * Returns: Currently used length of the buffer
  51. */
  52. static inline size_t wpabuf_len(const struct wpabuf *buf)
  53. {
  54. return buf->used;
  55. }
  56. /**
  57. * wpabuf_tailroom - Get size of available tail room in the end of the buffer
  58. * @buf: wpabuf buffer
  59. * Returns: Tail room (in bytes) of available space in the end of the buffer
  60. */
  61. static inline size_t wpabuf_tailroom(const struct wpabuf *buf)
  62. {
  63. return buf->size - buf->used;
  64. }
  65. /**
  66. * wpabuf_head - Get pointer to the head of the buffer data
  67. * @buf: wpabuf buffer
  68. * Returns: Pointer to the head of the buffer data
  69. */
  70. static inline const void * wpabuf_head(const struct wpabuf *buf)
  71. {
  72. if (buf->ext_data)
  73. return buf->ext_data;
  74. return buf + 1;
  75. }
  76. static inline const u8 * wpabuf_head_u8(const struct wpabuf *buf)
  77. {
  78. return wpabuf_head(buf);
  79. }
  80. /**
  81. * wpabuf_mhead - Get modifiable pointer to the head of the buffer data
  82. * @buf: wpabuf buffer
  83. * Returns: Pointer to the head of the buffer data
  84. */
  85. static inline void * wpabuf_mhead(struct wpabuf *buf)
  86. {
  87. if (buf->ext_data)
  88. return buf->ext_data;
  89. return buf + 1;
  90. }
  91. static inline u8 * wpabuf_mhead_u8(struct wpabuf *buf)
  92. {
  93. return wpabuf_mhead(buf);
  94. }
  95. static inline void wpabuf_put_u8(struct wpabuf *buf, u8 data)
  96. {
  97. u8 *pos = wpabuf_put(buf, 1);
  98. *pos = data;
  99. }
  100. static inline void wpabuf_put_le16(struct wpabuf *buf, u16 data)
  101. {
  102. u8 *pos = wpabuf_put(buf, 2);
  103. WPA_PUT_LE16(pos, data);
  104. }
  105. static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data)
  106. {
  107. u8 *pos = wpabuf_put(buf, 4);
  108. WPA_PUT_LE32(pos, data);
  109. }
  110. static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data)
  111. {
  112. u8 *pos = wpabuf_put(buf, 2);
  113. WPA_PUT_BE16(pos, data);
  114. }
  115. static inline void wpabuf_put_be24(struct wpabuf *buf, u32 data)
  116. {
  117. u8 *pos = wpabuf_put(buf, 3);
  118. WPA_PUT_BE24(pos, data);
  119. }
  120. static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data)
  121. {
  122. u8 *pos = wpabuf_put(buf, 4);
  123. WPA_PUT_BE32(pos, data);
  124. }
  125. static inline void wpabuf_put_data(struct wpabuf *buf, const void *data,
  126. size_t len)
  127. {
  128. if (data)
  129. os_memcpy(wpabuf_put(buf, len), data, len);
  130. }
  131. static inline void wpabuf_put_buf(struct wpabuf *dst,
  132. const struct wpabuf *src)
  133. {
  134. wpabuf_put_data(dst, wpabuf_head(src), wpabuf_len(src));
  135. }
  136. static inline void wpabuf_set(struct wpabuf *buf, const void *data, size_t len)
  137. {
  138. buf->ext_data = (u8 *) data;
  139. buf->size = buf->used = len;
  140. }
  141. static inline void wpabuf_put_str(struct wpabuf *dst, const char *str)
  142. {
  143. wpabuf_put_data(dst, str, os_strlen(str));
  144. }
  145. #endif /* WPABUF_H */