blob/blobmsg: add null pointer checks to the *_for_each_attr functions, fix formatting
[project/libubox.git] / utils.h
1 /*
2  * utils - misc libubox utility functions
3  *
4  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 #ifndef __LIBUBOX_UTILS_H
20 #define __LIBUBOX_UTILS_H
21
22 #include <sys/types.h>
23 #include <sys/time.h>
24 #include <stdint.h>
25 #include <stdbool.h>
26 #include <time.h>
27
28 /*
29  * calloc_a(size_t len, [void **addr, size_t len,...], NULL)
30  *
31  * allocate a block of memory big enough to hold multiple aligned objects.
32  * the pointer to the full object (starting with the first chunk) is returned,
33  * all other pointers are stored in the locations behind extra addr arguments.
34  * the last argument needs to be a NULL pointer
35  */
36
37 #define calloc_a(len, ...) __calloc_a(len, ##__VA_ARGS__, NULL)
38
39 void *__calloc_a(size_t len, ...);
40
41 #ifndef ARRAY_SIZE
42 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
43 #endif
44
45 #define __BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
46
47 #ifdef __OPTIMIZE__
48 extern int __BUILD_BUG_ON_CONDITION_FAILED;
49 #define BUILD_BUG_ON(condition)                                 \
50         do {                                                    \
51                 __BUILD_BUG_ON(condition);                      \
52                 if (condition)                                  \
53                         __BUILD_BUG_ON_CONDITION_FAILED = 1;    \
54         } while(0)
55 #else
56 #define BUILD_BUG_ON __BUILD_BUG_ON
57 #endif
58
59 #ifdef __APPLE__
60
61 #define CLOCK_REALTIME  0
62 #define CLOCK_MONOTONIC 1
63
64 void clock_gettime(int type, struct timespec *tv);
65
66 #endif
67
68 #ifdef __GNUC__
69 #define _GNUC_MIN_VER(maj, min) (((__GNUC__ << 8) + __GNUC_MINOR__) >= (((maj) << 8) + (min)))
70 #else
71 #define _GNUC_MIN_VER(maj, min) 0
72 #endif
73
74 #if defined(__linux__) || defined(__CYGWIN__)
75 #include <byteswap.h>
76 #include <endian.h>
77
78 #elif defined(__APPLE__)
79 #include <machine/endian.h>
80 #include <machine/byte_order.h>
81 #define bswap_32(x) OSSwapInt32(x)
82 #define bswap_64(x) OSSwapInt64(x)
83 #elif defined(__FreeBSD__)
84 #include <sys/endian.h>
85 #define bswap_32(x) bswap32(x)
86 #define bswap_64(x) bswap64(x)
87 #else
88 #include <machine/endian.h>
89 #define bswap_32(x) swap32(x)
90 #define bswap_64(x) swap64(x)
91 #endif
92
93 #ifndef __BYTE_ORDER
94 #define __BYTE_ORDER BYTE_ORDER
95 #endif
96 #ifndef __BIG_ENDIAN
97 #define __BIG_ENDIAN BIG_ENDIAN
98 #endif
99 #ifndef __LITTLE_ENDIAN
100 #define __LITTLE_ENDIAN LITTLE_ENDIAN
101 #endif
102
103 #define __u_bswap16(x) ({ uint16_t val = (x); ((uint16_t)(((val >> 8) & 0xffu) | ((val & 0xffu) << 8))); })
104
105 #if _GNUC_MIN_VER(4, 2)
106 #define __u_bswap32(x) __builtin_bswap32(x)
107 #define __u_bswap64(x) __builtin_bswap64(x)
108 #else
109 #define __u_bswap32(x) bswap_32(x)
110 #define __u_bswap64(x) bswap_64(x)
111 #endif
112
113 #if __BYTE_ORDER == __LITTLE_ENDIAN
114
115 #define cpu_to_be64(x) __u_bswap64(x)
116 #define cpu_to_be32(x) __u_bswap32(x)
117 #define cpu_to_be16(x) __u_bswap16((uint16_t) (x))
118
119 #define be64_to_cpu(x) __u_bswap64(x)
120 #define be32_to_cpu(x) __u_bswap32(x)
121 #define be16_to_cpu(x) __u_bswap16((uint16_t) (x))
122
123 #define cpu_to_le64(x) (x)
124 #define cpu_to_le32(x) (x)
125 #define cpu_to_le16(x) (x)
126
127 #define le64_to_cpu(x) (x)
128 #define le32_to_cpu(x) (x)
129 #define le16_to_cpu(x) (x)
130
131 #else /* __BYTE_ORDER == __LITTLE_ENDIAN */
132
133 #define cpu_to_le64(x) __u_bswap64(x)
134 #define cpu_to_le32(x) __u_bswap32(x)
135 #define cpu_to_le16(x) __u_bswap16((uint16_t) (x))
136
137 #define le64_to_cpu(x) __u_bswap64(x)
138 #define le32_to_cpu(x) __u_bswap32(x)
139 #define le16_to_cpu(x) __u_bswap16((uint16_t) (x))
140
141 #define cpu_to_be64(x) (x)
142 #define cpu_to_be32(x) (x)
143 #define cpu_to_be16(x) (x)
144
145 #define be64_to_cpu(x) (x)
146 #define be32_to_cpu(x) (x)
147 #define be16_to_cpu(x) (x)
148
149 #endif
150
151 #ifndef __packed
152 #define __packed __attribute__((packed))
153 #endif
154
155 #ifndef BITS_PER_LONG
156 #define BITS_PER_LONG (8 * sizeof(unsigned long))
157 #endif
158
159 static inline void bitfield_set(unsigned long *bits, int bit)
160 {
161         bits[bit / BITS_PER_LONG] |= (1UL << (bit % BITS_PER_LONG));
162 }
163
164 static inline bool bitfield_test(unsigned long *bits, int bit)
165 {
166         return !!(bits[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG)));
167 }
168
169 #endif