blob: 46e96a65b38df2561b04c1da383cb82f5219c8a2 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * wpa_supplicant/hostapd / common helper functions, etc.
3 * Copyright (c) 2002-2007, Jouni Malinen <j@w1.fi>
4 *
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 COMMON_H
10#define COMMON_H
11
12#include "os.h"
13
14#if defined(__linux__) || defined(__GLIBC__)
15#include <endian.h>
16#include <byteswap.h>
17#endif /* __linux__ */
18
19#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
20 defined(__OpenBSD__)
21#include <sys/types.h>
22#include <sys/endian.h>
23#define __BYTE_ORDER _BYTE_ORDER
24#define __LITTLE_ENDIAN _LITTLE_ENDIAN
25#define __BIG_ENDIAN _BIG_ENDIAN
26#ifdef __OpenBSD__
27#define bswap_16 swap16
28#define bswap_32 swap32
29#define bswap_64 swap64
30#else /* __OpenBSD__ */
31#define bswap_16 bswap16
32#define bswap_32 bswap32
33#define bswap_64 bswap64
34#endif /* __OpenBSD__ */
35#endif /* defined(__FreeBSD__) || defined(__NetBSD__) ||
36 * defined(__DragonFly__) || defined(__OpenBSD__) */
37
38#ifdef __APPLE__
39#include <sys/types.h>
40#include <machine/endian.h>
41#define __BYTE_ORDER _BYTE_ORDER
42#define __LITTLE_ENDIAN _LITTLE_ENDIAN
43#define __BIG_ENDIAN _BIG_ENDIAN
44static inline unsigned short bswap_16(unsigned short v)
45{
46 return ((v & 0xff) << 8) | (v >> 8);
47}
48
49static inline unsigned int bswap_32(unsigned int v)
50{
51 return ((v & 0xff) << 24) | ((v & 0xff00) << 8) |
52 ((v & 0xff0000) >> 8) | (v >> 24);
53}
54#endif /* __APPLE__ */
55
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070056#ifdef __rtems__
57#include <rtems/endian.h>
58#define __BYTE_ORDER BYTE_ORDER
59#define __LITTLE_ENDIAN LITTLE_ENDIAN
60#define __BIG_ENDIAN BIG_ENDIAN
61#define bswap_16 CPU_swap_u16
62#define bswap_32 CPU_swap_u32
63#endif /* __rtems__ */
64
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065#ifdef CONFIG_NATIVE_WINDOWS
66#include <winsock.h>
67
68typedef int socklen_t;
69
70#ifndef MSG_DONTWAIT
71#define MSG_DONTWAIT 0 /* not supported */
72#endif
73
74#endif /* CONFIG_NATIVE_WINDOWS */
75
76#ifdef _MSC_VER
77#define inline __inline
78
79#undef vsnprintf
80#define vsnprintf _vsnprintf
81#undef close
82#define close closesocket
83#endif /* _MSC_VER */
84
85
86/* Define platform specific integer types */
87
88#ifdef _MSC_VER
89typedef UINT64 u64;
90typedef UINT32 u32;
91typedef UINT16 u16;
92typedef UINT8 u8;
93typedef INT64 s64;
94typedef INT32 s32;
95typedef INT16 s16;
96typedef INT8 s8;
97#define WPA_TYPES_DEFINED
98#endif /* _MSC_VER */
99
100#ifdef __vxworks
101typedef unsigned long long u64;
102typedef UINT32 u32;
103typedef UINT16 u16;
104typedef UINT8 u8;
105typedef long long s64;
106typedef INT32 s32;
107typedef INT16 s16;
108typedef INT8 s8;
109#define WPA_TYPES_DEFINED
110#endif /* __vxworks */
111
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700112#ifndef WPA_TYPES_DEFINED
113#ifdef CONFIG_USE_INTTYPES_H
114#include <inttypes.h>
115#else
116#include <stdint.h>
117#endif
118typedef uint64_t u64;
119typedef uint32_t u32;
120typedef uint16_t u16;
121typedef uint8_t u8;
122typedef int64_t s64;
123typedef int32_t s32;
124typedef int16_t s16;
125typedef int8_t s8;
126#define WPA_TYPES_DEFINED
127#endif /* !WPA_TYPES_DEFINED */
128
129
130/* Define platform specific byte swapping macros */
131
132#if defined(__CYGWIN__) || defined(CONFIG_NATIVE_WINDOWS)
133
134static inline unsigned short wpa_swap_16(unsigned short v)
135{
136 return ((v & 0xff) << 8) | (v >> 8);
137}
138
139static inline unsigned int wpa_swap_32(unsigned int v)
140{
141 return ((v & 0xff) << 24) | ((v & 0xff00) << 8) |
142 ((v & 0xff0000) >> 8) | (v >> 24);
143}
144
145#define le_to_host16(n) (n)
146#define host_to_le16(n) (n)
147#define be_to_host16(n) wpa_swap_16(n)
148#define host_to_be16(n) wpa_swap_16(n)
149#define le_to_host32(n) (n)
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800150#define host_to_le32(n) (n)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700151#define be_to_host32(n) wpa_swap_32(n)
152#define host_to_be32(n) wpa_swap_32(n)
153
154#define WPA_BYTE_SWAP_DEFINED
155
156#endif /* __CYGWIN__ || CONFIG_NATIVE_WINDOWS */
157
158
159#ifndef WPA_BYTE_SWAP_DEFINED
160
161#ifndef __BYTE_ORDER
162#ifndef __LITTLE_ENDIAN
163#ifndef __BIG_ENDIAN
164#define __LITTLE_ENDIAN 1234
165#define __BIG_ENDIAN 4321
166#if defined(sparc)
167#define __BYTE_ORDER __BIG_ENDIAN
168#endif
169#endif /* __BIG_ENDIAN */
170#endif /* __LITTLE_ENDIAN */
171#endif /* __BYTE_ORDER */
172
173#if __BYTE_ORDER == __LITTLE_ENDIAN
174#define le_to_host16(n) ((__force u16) (le16) (n))
175#define host_to_le16(n) ((__force le16) (u16) (n))
176#define be_to_host16(n) bswap_16((__force u16) (be16) (n))
177#define host_to_be16(n) ((__force be16) bswap_16((n)))
178#define le_to_host32(n) ((__force u32) (le32) (n))
179#define host_to_le32(n) ((__force le32) (u32) (n))
180#define be_to_host32(n) bswap_32((__force u32) (be32) (n))
181#define host_to_be32(n) ((__force be32) bswap_32((n)))
182#define le_to_host64(n) ((__force u64) (le64) (n))
183#define host_to_le64(n) ((__force le64) (u64) (n))
184#define be_to_host64(n) bswap_64((__force u64) (be64) (n))
185#define host_to_be64(n) ((__force be64) bswap_64((n)))
186#elif __BYTE_ORDER == __BIG_ENDIAN
187#define le_to_host16(n) bswap_16(n)
188#define host_to_le16(n) bswap_16(n)
189#define be_to_host16(n) (n)
190#define host_to_be16(n) (n)
191#define le_to_host32(n) bswap_32(n)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700192#define host_to_le32(n) bswap_32(n)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700193#define be_to_host32(n) (n)
194#define host_to_be32(n) (n)
195#define le_to_host64(n) bswap_64(n)
196#define host_to_le64(n) bswap_64(n)
197#define be_to_host64(n) (n)
198#define host_to_be64(n) (n)
199#ifndef WORDS_BIGENDIAN
200#define WORDS_BIGENDIAN
201#endif
202#else
203#error Could not determine CPU byte order
204#endif
205
206#define WPA_BYTE_SWAP_DEFINED
207#endif /* !WPA_BYTE_SWAP_DEFINED */
208
209
210/* Macros for handling unaligned memory accesses */
211
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800212static inline u16 WPA_GET_BE16(const u8 *a)
213{
214 return (a[0] << 8) | a[1];
215}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700216
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800217static inline void WPA_PUT_BE16(u8 *a, u16 val)
218{
219 a[0] = val >> 8;
220 a[1] = val & 0xff;
221}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700222
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800223static inline u16 WPA_GET_LE16(const u8 *a)
224{
225 return (a[1] << 8) | a[0];
226}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700227
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800228static inline void WPA_PUT_LE16(u8 *a, u16 val)
229{
230 a[1] = val >> 8;
231 a[0] = val & 0xff;
232}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700233
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800234static inline u32 WPA_GET_BE24(const u8 *a)
235{
236 return (a[0] << 16) | (a[1] << 8) | a[2];
237}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700238
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800239static inline void WPA_PUT_BE24(u8 *a, u32 val)
240{
241 a[0] = (val >> 16) & 0xff;
242 a[1] = (val >> 8) & 0xff;
243 a[2] = val & 0xff;
244}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700245
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800246static inline u32 WPA_GET_BE32(const u8 *a)
247{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800248 return ((u32) a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800249}
250
251static inline void WPA_PUT_BE32(u8 *a, u32 val)
252{
253 a[0] = (val >> 24) & 0xff;
254 a[1] = (val >> 16) & 0xff;
255 a[2] = (val >> 8) & 0xff;
256 a[3] = val & 0xff;
257}
258
259static inline u32 WPA_GET_LE32(const u8 *a)
260{
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800261 return ((u32) a[3] << 24) | (a[2] << 16) | (a[1] << 8) | a[0];
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800262}
263
264static inline void WPA_PUT_LE32(u8 *a, u32 val)
265{
266 a[3] = (val >> 24) & 0xff;
267 a[2] = (val >> 16) & 0xff;
268 a[1] = (val >> 8) & 0xff;
269 a[0] = val & 0xff;
270}
271
272static inline u64 WPA_GET_BE64(const u8 *a)
273{
274 return (((u64) a[0]) << 56) | (((u64) a[1]) << 48) |
275 (((u64) a[2]) << 40) | (((u64) a[3]) << 32) |
276 (((u64) a[4]) << 24) | (((u64) a[5]) << 16) |
277 (((u64) a[6]) << 8) | ((u64) a[7]);
278}
279
280static inline void WPA_PUT_BE64(u8 *a, u64 val)
281{
282 a[0] = val >> 56;
283 a[1] = val >> 48;
284 a[2] = val >> 40;
285 a[3] = val >> 32;
286 a[4] = val >> 24;
287 a[5] = val >> 16;
288 a[6] = val >> 8;
289 a[7] = val & 0xff;
290}
291
292static inline u64 WPA_GET_LE64(const u8 *a)
293{
294 return (((u64) a[7]) << 56) | (((u64) a[6]) << 48) |
295 (((u64) a[5]) << 40) | (((u64) a[4]) << 32) |
296 (((u64) a[3]) << 24) | (((u64) a[2]) << 16) |
297 (((u64) a[1]) << 8) | ((u64) a[0]);
298}
299
300static inline void WPA_PUT_LE64(u8 *a, u64 val)
301{
302 a[7] = val >> 56;
303 a[6] = val >> 48;
304 a[5] = val >> 40;
305 a[4] = val >> 32;
306 a[3] = val >> 24;
307 a[2] = val >> 16;
308 a[1] = val >> 8;
309 a[0] = val & 0xff;
310}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700311
312
313#ifndef ETH_ALEN
314#define ETH_ALEN 6
315#endif
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800316#ifndef ETH_HLEN
317#define ETH_HLEN 14
318#endif
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700319#ifndef IFNAMSIZ
320#define IFNAMSIZ 16
321#endif
322#ifndef ETH_P_ALL
323#define ETH_P_ALL 0x0003
324#endif
Dmitry Shmidte4663042016-04-04 10:07:49 -0700325#ifndef ETH_P_IP
326#define ETH_P_IP 0x0800
327#endif
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700328#ifndef ETH_P_80211_ENCAP
329#define ETH_P_80211_ENCAP 0x890d /* TDLS comes under this category */
330#endif
331#ifndef ETH_P_PAE
332#define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
333#endif /* ETH_P_PAE */
334#ifndef ETH_P_EAPOL
335#define ETH_P_EAPOL ETH_P_PAE
336#endif /* ETH_P_EAPOL */
337#ifndef ETH_P_RSN_PREAUTH
338#define ETH_P_RSN_PREAUTH 0x88c7
339#endif /* ETH_P_RSN_PREAUTH */
340#ifndef ETH_P_RRB
341#define ETH_P_RRB 0x890D
342#endif /* ETH_P_RRB */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700343#ifndef ETH_P_OUI
344#define ETH_P_OUI 0x88B7
345#endif /* ETH_P_OUI */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700346
347
348#ifdef __GNUC__
349#define PRINTF_FORMAT(a,b) __attribute__ ((format (printf, (a), (b))))
350#define STRUCT_PACKED __attribute__ ((packed))
351#else
352#define PRINTF_FORMAT(a,b)
353#define STRUCT_PACKED
354#endif
355
356
357#ifdef CONFIG_ANSI_C_EXTRA
358
359#if !defined(_MSC_VER) || _MSC_VER < 1400
360/* snprintf - used in number of places; sprintf() is _not_ a good replacement
361 * due to possible buffer overflow; see, e.g.,
362 * http://www.ijs.si/software/snprintf/ for portable implementation of
363 * snprintf. */
364int snprintf(char *str, size_t size, const char *format, ...);
365
366/* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
367int vsnprintf(char *str, size_t size, const char *format, va_list ap);
368#endif /* !defined(_MSC_VER) || _MSC_VER < 1400 */
369
370/* getopt - only used in main.c */
371int getopt(int argc, char *const argv[], const char *optstring);
372extern char *optarg;
373extern int optind;
374
375#ifndef CONFIG_NO_SOCKLEN_T_TYPEDEF
376#ifndef __socklen_t_defined
377typedef int socklen_t;
378#endif
379#endif
380
381/* inline - define as __inline or just define it to be empty, if needed */
382#ifdef CONFIG_NO_INLINE
383#define inline
384#else
385#define inline __inline
386#endif
387
388#ifndef __func__
389#define __func__ "__func__ not defined"
390#endif
391
392#ifndef bswap_16
393#define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff))
394#endif
395
396#ifndef bswap_32
397#define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \
398 (((u32) (a) << 8) & 0xff0000) | \
399 (((u32) (a) >> 8) & 0xff00) | \
400 (((u32) (a) >> 24) & 0xff))
401#endif
402
403#ifndef MSG_DONTWAIT
404#define MSG_DONTWAIT 0
405#endif
406
407#ifdef _WIN32_WCE
408void perror(const char *s);
409#endif /* _WIN32_WCE */
410
411#endif /* CONFIG_ANSI_C_EXTRA */
412
413#ifndef MAC2STR
414#define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
415#define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
416
417/*
418 * Compact form for string representation of MAC address
419 * To be used, e.g., for constructing dbus paths for P2P Devices
420 */
421#define COMPACT_MACSTR "%02x%02x%02x%02x%02x%02x"
422#endif
423
424#ifndef BIT
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800425#define BIT(x) (1U << (x))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700426#endif
427
428/*
429 * Definitions for sparse validation
430 * (http://kernel.org/pub/linux/kernel/people/josh/sparse/)
431 */
432#ifdef __CHECKER__
433#define __force __attribute__((force))
Dmitry Shmidt4ae50e62016-06-27 13:48:39 -0700434#undef __bitwise
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700435#define __bitwise __attribute__((bitwise))
436#else
437#define __force
438#define __bitwise
439#endif
440
441typedef u16 __bitwise be16;
442typedef u16 __bitwise le16;
443typedef u32 __bitwise be32;
444typedef u32 __bitwise le32;
445typedef u64 __bitwise be64;
446typedef u64 __bitwise le64;
447
448#ifndef __must_check
449#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
450#define __must_check __attribute__((__warn_unused_result__))
451#else
452#define __must_check
453#endif /* __GNUC__ */
454#endif /* __must_check */
455
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800456#ifndef __maybe_unused
457#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
458#define __maybe_unused __attribute__((unused))
459#else
460#define __maybe_unused
461#endif /* __GNUC__ */
462#endif /* __must_check */
463
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700464#define SSID_MAX_LEN 32
465
466struct wpa_ssid_value {
467 u8 ssid[SSID_MAX_LEN];
468 size_t ssid_len;
469};
470
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700471int hwaddr_aton(const char *txt, u8 *addr);
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800472int hwaddr_masked_aton(const char *txt, u8 *addr, u8 *mask, u8 maskable);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700473int hwaddr_compact_aton(const char *txt, u8 *addr);
474int hwaddr_aton2(const char *txt, u8 *addr);
475int hex2byte(const char *hex);
476int hexstr2bin(const char *hex, u8 *buf, size_t len);
477void inc_byte_array(u8 *counter, size_t len);
478void wpa_get_ntp_timestamp(u8 *buf);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800479int wpa_scnprintf(char *buf, size_t size, const char *fmt, ...);
Dmitry Shmidtaf9da312015-04-03 10:03:11 -0700480int wpa_snprintf_hex_sep(char *buf, size_t buf_size, const u8 *data, size_t len,
481 char sep);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700482int wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len);
483int wpa_snprintf_hex_uppercase(char *buf, size_t buf_size, const u8 *data,
484 size_t len);
485
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800486int hwaddr_mask_txt(char *buf, size_t len, const u8 *addr, const u8 *mask);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700487int ssid_parse(const char *buf, struct wpa_ssid_value *ssid);
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800488
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700489#ifdef CONFIG_NATIVE_WINDOWS
490void wpa_unicode2ascii_inplace(TCHAR *str);
491TCHAR * wpa_strdup_tchar(const char *str);
492#else /* CONFIG_NATIVE_WINDOWS */
493#define wpa_unicode2ascii_inplace(s) do { } while (0)
494#define wpa_strdup_tchar(s) strdup((s))
495#endif /* CONFIG_NATIVE_WINDOWS */
496
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700497void printf_encode(char *txt, size_t maxlen, const u8 *data, size_t len);
498size_t printf_decode(u8 *buf, size_t maxlen, const char *str);
499
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700500const char * wpa_ssid_txt(const u8 *ssid, size_t ssid_len);
501
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700502char * wpa_config_parse_string(const char *value, size_t *len);
503int is_hex(const u8 *data, size_t len);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700504int has_ctrl_char(const u8 *data, size_t len);
505int has_newline(const char *str);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700506size_t merge_byte_arrays(u8 *res, size_t res_len,
507 const u8 *src1, size_t src1_len,
508 const u8 *src2, size_t src2_len);
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700509char * dup_binstr(const void *src, size_t len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700510
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700511static inline int is_zero_ether_addr(const u8 *a)
512{
513 return !(a[0] | a[1] | a[2] | a[3] | a[4] | a[5]);
514}
515
516static inline int is_broadcast_ether_addr(const u8 *a)
517{
518 return (a[0] & a[1] & a[2] & a[3] & a[4] & a[5]) == 0xff;
519}
520
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800521static inline int is_multicast_ether_addr(const u8 *a)
522{
523 return a[0] & 0x01;
524}
525
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700526#define broadcast_ether_addr (const u8 *) "\xff\xff\xff\xff\xff\xff"
527
528#include "wpa_debug.h"
529
530
Dmitry Shmidt4ce9c872013-10-24 11:08:13 -0700531struct wpa_freq_range_list {
532 struct wpa_freq_range {
533 unsigned int min;
534 unsigned int max;
535 } *range;
536 unsigned int num;
537};
538
539int freq_range_list_parse(struct wpa_freq_range_list *res, const char *value);
540int freq_range_list_includes(const struct wpa_freq_range_list *list,
541 unsigned int freq);
542char * freq_range_list_str(const struct wpa_freq_range_list *list);
543
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800544int int_array_len(const int *a);
545void int_array_concat(int **res, const int *a);
546void int_array_sort_unique(int *a);
547void int_array_add_unique(int **res, int a);
548
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -0700549#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
550
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700551void str_clear_free(char *str);
552void bin_clear_free(void *bin, size_t len);
553
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700554int random_mac_addr(u8 *addr);
555int random_mac_addr_keep_oui(u8 *addr);
556
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800557const char * cstr_token(const char *str, const char *delim, const char **last);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800558char * str_token(char *str, const char *delim, char **context);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800559size_t utf8_escape(const char *inp, size_t in_size,
560 char *outp, size_t out_size);
561size_t utf8_unescape(const char *inp, size_t in_size,
562 char *outp, size_t out_size);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -0700563int is_ctrl_char(char c);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800564
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700565int str_starts(const char *str, const char *start);
566
Dmitry Shmidt29333592017-01-09 12:27:11 -0800567u8 rssi_to_rcpi(int rssi);
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700568
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700569/*
570 * gcc 4.4 ends up generating strict-aliasing warnings about some very common
571 * networking socket uses that do not really result in a real problem and
572 * cannot be easily avoided with union-based type-punning due to struct
573 * definitions including another struct in system header files. To avoid having
574 * to fully disable strict-aliasing warnings, provide a mechanism to hide the
575 * typecast from aliasing for now. A cleaner solution will hopefully be found
576 * in the future to handle these cases.
577 */
578void * __hide_aliasing_typecast(void *foo);
579#define aliasing_hide_typecast(a,t) (t *) __hide_aliasing_typecast((a))
580
581#ifdef CONFIG_VALGRIND
582#include <valgrind/memcheck.h>
583#define WPA_MEM_DEFINED(ptr, len) VALGRIND_MAKE_MEM_DEFINED((ptr), (len))
584#else /* CONFIG_VALGRIND */
585#define WPA_MEM_DEFINED(ptr, len) do { } while (0)
586#endif /* CONFIG_VALGRIND */
587
588#endif /* COMMON_H */