blob: b2a54b22fddb76cb898f75a764731fcdfe52f4f1 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * Dynamic data buffer
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003 * Copyright (c) 2007-2012, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#ifndef WPABUF_H
10#define WPABUF_H
11
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070012/* wpabuf::buf is a pointer to external data */
13#define WPABUF_FLAG_EXT_DATA BIT(0)
14
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070015/*
16 * Internal data structure for wpabuf. Please do not touch this directly from
17 * elsewhere. This is only defined in header file to allow inline functions
18 * from this file to access data.
19 */
20struct wpabuf {
21 size_t size; /* total size of the allocated buffer */
22 size_t used; /* length of data in the buffer */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070023 u8 *buf; /* pointer to the head of the buffer */
24 unsigned int flags;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070025 /* optionally followed by the allocated buffer */
26};
27
28
29int wpabuf_resize(struct wpabuf **buf, size_t add_len);
30struct wpabuf * wpabuf_alloc(size_t len);
31struct wpabuf * wpabuf_alloc_ext_data(u8 *data, size_t len);
32struct wpabuf * wpabuf_alloc_copy(const void *data, size_t len);
33struct wpabuf * wpabuf_dup(const struct wpabuf *src);
34void wpabuf_free(struct wpabuf *buf);
Dmitry Shmidt746bde52015-01-12 13:01:47 -080035void wpabuf_clear_free(struct wpabuf *buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070036void * wpabuf_put(struct wpabuf *buf, size_t len);
37struct wpabuf * wpabuf_concat(struct wpabuf *a, struct wpabuf *b);
38struct wpabuf * wpabuf_zeropad(struct wpabuf *buf, size_t len);
39void wpabuf_printf(struct wpabuf *buf, char *fmt, ...) PRINTF_FORMAT(2, 3);
Dmitry Shmidt849734c2016-05-27 09:59:01 -070040struct wpabuf * wpabuf_parse_bin(const char *buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070041
42
43/**
44 * wpabuf_size - Get the currently allocated size of a wpabuf buffer
45 * @buf: wpabuf buffer
46 * Returns: Currently allocated size of the buffer
47 */
48static inline size_t wpabuf_size(const struct wpabuf *buf)
49{
50 return buf->size;
51}
52
53/**
54 * wpabuf_len - Get the current length of a wpabuf buffer data
55 * @buf: wpabuf buffer
56 * Returns: Currently used length of the buffer
57 */
58static inline size_t wpabuf_len(const struct wpabuf *buf)
59{
60 return buf->used;
61}
62
63/**
64 * wpabuf_tailroom - Get size of available tail room in the end of the buffer
65 * @buf: wpabuf buffer
66 * Returns: Tail room (in bytes) of available space in the end of the buffer
67 */
68static inline size_t wpabuf_tailroom(const struct wpabuf *buf)
69{
70 return buf->size - buf->used;
71}
72
73/**
Hai Shalom899fcc72020-10-19 14:38:18 -070074 * wpabuf_cmp - Check if two buffers contain the same data
75 * @a: wpabuf buffer
76 * @b: wpabuf buffer
77 * Returns: 0 if the two buffers contain the same data and non-zero otherwise
78 */
79static inline int wpabuf_cmp(const struct wpabuf *a, const struct wpabuf *b)
80{
81 if (!a && !b)
82 return 0;
83 if (a && b && wpabuf_size(a) == wpabuf_size(b))
84 return os_memcmp(a->buf, b->buf, wpabuf_size(a));
85 return -1;
86}
87
88/**
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070089 * wpabuf_head - Get pointer to the head of the buffer data
90 * @buf: wpabuf buffer
91 * Returns: Pointer to the head of the buffer data
92 */
93static inline const void * wpabuf_head(const struct wpabuf *buf)
94{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070095 return buf->buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096}
97
98static inline const u8 * wpabuf_head_u8(const struct wpabuf *buf)
99{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800100 return (const u8 *) wpabuf_head(buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101}
102
103/**
104 * wpabuf_mhead - Get modifiable pointer to the head of the buffer data
105 * @buf: wpabuf buffer
106 * Returns: Pointer to the head of the buffer data
107 */
108static inline void * wpabuf_mhead(struct wpabuf *buf)
109{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700110 return buf->buf;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700111}
112
113static inline u8 * wpabuf_mhead_u8(struct wpabuf *buf)
114{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800115 return (u8 *) wpabuf_mhead(buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700116}
117
118static inline void wpabuf_put_u8(struct wpabuf *buf, u8 data)
119{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800120 u8 *pos = (u8 *) wpabuf_put(buf, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700121 *pos = data;
122}
123
124static inline void wpabuf_put_le16(struct wpabuf *buf, u16 data)
125{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800126 u8 *pos = (u8 *) wpabuf_put(buf, 2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700127 WPA_PUT_LE16(pos, data);
128}
129
130static inline void wpabuf_put_le32(struct wpabuf *buf, u32 data)
131{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800132 u8 *pos = (u8 *) wpabuf_put(buf, 4);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700133 WPA_PUT_LE32(pos, data);
134}
135
136static inline void wpabuf_put_be16(struct wpabuf *buf, u16 data)
137{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800138 u8 *pos = (u8 *) wpabuf_put(buf, 2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700139 WPA_PUT_BE16(pos, data);
140}
141
142static inline void wpabuf_put_be24(struct wpabuf *buf, u32 data)
143{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800144 u8 *pos = (u8 *) wpabuf_put(buf, 3);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700145 WPA_PUT_BE24(pos, data);
146}
147
148static inline void wpabuf_put_be32(struct wpabuf *buf, u32 data)
149{
Dmitry Shmidtb97e4282016-02-08 10:16:07 -0800150 u8 *pos = (u8 *) wpabuf_put(buf, 4);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700151 WPA_PUT_BE32(pos, data);
152}
153
154static inline void wpabuf_put_data(struct wpabuf *buf, const void *data,
155 size_t len)
156{
157 if (data)
158 os_memcpy(wpabuf_put(buf, len), data, len);
159}
160
161static inline void wpabuf_put_buf(struct wpabuf *dst,
162 const struct wpabuf *src)
163{
164 wpabuf_put_data(dst, wpabuf_head(src), wpabuf_len(src));
165}
166
167static inline void wpabuf_set(struct wpabuf *buf, const void *data, size_t len)
168{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700169 buf->buf = (u8 *) data;
170 buf->flags = WPABUF_FLAG_EXT_DATA;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700171 buf->size = buf->used = len;
172}
173
174static inline void wpabuf_put_str(struct wpabuf *dst, const char *str)
175{
176 wpabuf_put_data(dst, str, os_strlen(str));
177}
178
179#endif /* WPABUF_H */