blobmsg: accept NULL attr in blobmsg_get_string()
[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 static inline uint16_t __u_bswap16(uint16_t val)
104 {
105         return ((val >> 8) & 0xffu) | ((val & 0xffu) << 8);
106 }
107
108 #if _GNUC_MIN_VER(4, 2)
109 #define __u_bswap32(x) __builtin_bswap32(x)
110 #define __u_bswap64(x) __builtin_bswap64(x)
111 #else
112 #define __u_bswap32(x) bswap_32(x)
113 #define __u_bswap64(x) bswap_64(x)
114 #endif
115
116 #if __BYTE_ORDER == __LITTLE_ENDIAN
117
118 #define cpu_to_be64(x) __u_bswap64(x)
119 #define cpu_to_be32(x) __u_bswap32(x)
120 #define cpu_to_be16(x) __u_bswap16((uint16_t) (x))
121
122 #define be64_to_cpu(x) __u_bswap64(x)
123 #define be32_to_cpu(x) __u_bswap32(x)
124 #define be16_to_cpu(x) __u_bswap16((uint16_t) (x))
125
126 #define cpu_to_le64(x) (x)
127 #define cpu_to_le32(x) (x)
128 #define cpu_to_le16(x) (x)
129
130 #define le64_to_cpu(x) (x)
131 #define le32_to_cpu(x) (x)
132 #define le16_to_cpu(x) (x)
133
134 #else /* __BYTE_ORDER == __LITTLE_ENDIAN */
135
136 #define cpu_to_le64(x) __u_bswap64(x)
137 #define cpu_to_le32(x) __u_bswap32(x)
138 #define cpu_to_le16(x) __u_bswap16((uint16_t) (x))
139
140 #define le64_to_cpu(x) __u_bswap64(x)
141 #define le32_to_cpu(x) __u_bswap32(x)
142 #define le16_to_cpu(x) __u_bswap16((uint16_t) (x))
143
144 #define cpu_to_be64(x) (x)
145 #define cpu_to_be32(x) (x)
146 #define cpu_to_be16(x) (x)
147
148 #define be64_to_cpu(x) (x)
149 #define be32_to_cpu(x) (x)
150 #define be16_to_cpu(x) (x)
151
152 #endif
153
154 #ifndef __packed
155 #define __packed __attribute__((packed))
156 #endif
157
158 #ifndef __constructor
159 #define __constructor __attribute__((constructor))
160 #endif
161
162 #ifndef __hidden
163 #define __hidden __attribute__((visibility("hidden")))
164 #endif
165
166 #ifndef BITS_PER_LONG
167 #define BITS_PER_LONG (8 * sizeof(unsigned long))
168 #endif
169
170 #define BITFIELD_SIZE(_n) (((_n) + (BITS_PER_LONG - 1)) / BITS_PER_LONG)
171
172 static inline void bitfield_set(unsigned long *bits, int bit)
173 {
174         bits[bit / BITS_PER_LONG] |= (1UL << (bit % BITS_PER_LONG));
175 }
176
177 static inline bool bitfield_test(unsigned long *bits, int bit)
178 {
179         return !!(bits[bit / BITS_PER_LONG] & (1UL << (bit % BITS_PER_LONG)));
180 }
181
182 #endif