trafgen: disable timer slack
[netsniff-ng.git] / built_in.h
blob8e1ba0d2feb788a4592a3cfae91ceeb245699d37
1 #ifndef BUILT_IN_H
2 #define BUILT_IN_H
4 /* Parts taken from the Linux kernel, GPL, version 2. */
6 #include <linux/if_packet.h>
7 #include <assert.h>
8 #include <endian.h>
9 #include <byteswap.h>
10 #include <asm/byteorder.h>
11 #include <stdint.h>
13 typedef uint64_t u64;
14 typedef uint32_t u32;
15 typedef uint16_t u16;
16 typedef uint8_t u8;
18 #ifndef CO_CACHE_LINE_SIZE
19 # define CO_CACHE_LINE_SIZE (1 << CO_IN_CACHE_SHIFT)
20 #endif
22 #ifndef __aligned_16
23 # define __aligned_16 __attribute__((aligned(16)))
24 #endif
26 #ifndef __cacheline_aligned
27 # define __cacheline_aligned __attribute__((aligned(CO_CACHE_LINE_SIZE)))
28 #endif
30 #ifndef __aligned_tpacket
31 # define __aligned_tpacket __attribute__((aligned(TPACKET_ALIGNMENT)))
32 #endif
34 #ifndef __align_tpacket
35 # define __align_tpacket(x) __attribute__((aligned(TPACKET_ALIGN(x))))
36 #endif
38 #ifndef __check_format_printf
39 # define __check_format_printf(pos_fmtstr, pos_fmtargs) \
40 __attribute__ ((format (printf, (pos_fmtstr), (pos_fmtargs))))
41 #endif
43 #ifndef __packed
44 # define __packed __attribute__((packed))
45 #endif
47 #ifndef round_up
48 # define round_up(x, alignment) (((x) + (alignment) - 1) & ~((alignment) - 1))
49 #endif
51 #ifndef round_up_cacheline
52 # define round_up_cacheline(x) round_up((x), CO_CACHE_LINE_SIZE)
53 #endif
55 #ifndef likely
56 # define likely(x) __builtin_expect(!!(x), 1)
57 #endif
59 #ifndef unlikely
60 # define unlikely(x) __builtin_expect(!!(x), 0)
61 #endif
63 #ifndef constant
64 # define constant(x) __builtin_constant_p(x)
65 #endif
67 #ifndef fmemset
68 # define fmemset __builtin_memset
69 #endif
71 #ifndef fmemcpy
72 # define fmemcpy __builtin_memcpy
73 #endif
75 #ifndef __maybe_unused
76 # define __maybe_unused __attribute__ ((__unused__))
77 #endif
79 #ifndef noinline
80 # define noinline __attribute__((noinline))
81 #endif
83 #ifndef __noreturn
84 # define __noreturn __attribute__((noreturn))
85 #endif
87 #ifndef __hidden
88 # define __hidden __attribute__((visibility("hidden")))
89 #endif
91 #ifndef __pure
92 # define __pure __attribute__ ((pure))
93 #endif
95 #ifndef __force
96 # define __force /* unimplemented */
97 #endif
99 /* see config_enabled et al. in linux/kconfig.h for details. */
100 #define __ARG_PLACEHOLDER_1 0,
101 #define is_defined(cfg) _is_defined(cfg)
102 #define _is_defined(value) __is_defined(__ARG_PLACEHOLDER_##value)
103 #define __is_defined(arg1_or_junk) ___is_defined(arg1_or_junk 1, 0)
104 #define ___is_defined(__ignored, val, ...) val
106 #ifndef max
107 # define max(a, b) \
108 ({ \
109 typeof (a) _a = (a); \
110 typeof (b) _b = (b); \
111 _a > _b ? _a : _b; \
113 #endif /* max */
115 #ifndef max_t
116 # define max_t(type, a, b) \
117 ({ \
118 type ___max1 = (a); \
119 type ___max2 = (b); \
120 ___max1 > ___max2 ? ___max1 : ___max2; \
122 #endif /* max_t */
124 #ifndef min
125 # define min(a, b) \
126 ({ \
127 typeof (a) _a = (a); \
128 typeof (b) _b = (b); \
129 _a < _b ? _a : _b; \
131 #endif /* min */
133 #ifndef min_t
134 # define min_t(type, a, b) \
135 ({ \
136 type ___min1 = (a); \
137 type ___min2 = (b); \
138 ___min1 < ___min2 ? ___min1 : ___min2; \
140 #endif /* min_t */
142 #ifndef ispow2
143 # define ispow2(x) ({ !!((x) && !((x) & ((x) - 1))); })
144 #endif
146 #ifndef offsetof
147 # define offsetof(type, member) ((size_t) &((type *) 0)->member)
148 #endif
150 #ifndef container_of
151 # define container_of(ptr, type, member) \
152 ({ \
153 const typeof(((type *) 0)->member) * __mptr = (ptr); \
154 (type *) ((char *) __mptr - offsetof(type, member)); \
156 #endif
158 #ifndef array_size
159 # define array_size(x) (sizeof(x) / sizeof((x)[0]) + __must_be_array(x))
160 #endif
162 #ifndef __must_be_array
163 # define __must_be_array(x) \
164 build_bug_on_zero(__builtin_types_compatible_p(typeof(x), \
165 typeof(&x[0])))
166 #endif
168 #ifndef build_bug_on_zero
169 # define build_bug_on_zero(e) (sizeof(char[1 - 2 * !!(e)]) - 1)
170 #endif
172 #ifndef build_bug_on
173 # define build_bug_on(e) ((void)sizeof(char[1 - 2*!!(e)]))
174 #endif
176 #ifndef bug_on
177 # define bug_on(cond) assert(!(cond))
178 #endif
180 #ifndef bug
181 # define bug() assert(0)
182 #endif
184 #define RUNTIME_PAGE_SIZE (sysconf(_SC_PAGE_SIZE))
185 #define PAGE_MASK (~(RUNTIME_PAGE_SIZE - 1))
186 #define PAGE_ALIGN(addr) (((addr) + RUNTIME_PAGE_SIZE - 1) & PAGE_MASK)
188 #if __BYTE_ORDER == __LITTLE_ENDIAN
189 static inline uint64_t htonll(uint64_t x)
191 return bswap_64(x);
194 static inline uint64_t ntohll(uint64_t x)
196 return bswap_64(x);
198 #elif __BYTE_ORDER == __BIG_ENDIAN
199 static inline uint64_t htonll(uint64_t x)
201 return x;
204 static inline uint64_t ntohll(uint64_t x)
206 return x;
208 #else
209 # error __BYTE_ORDER is neither __LITTLE_ENDIAN nor __BIG_ENDIAN
210 #endif
211 #ifndef ___constant_swab16
212 # define ___constant_swab16(x) ((__u16)( \
213 (((__u16)(x) & (__u16)0x00ffU) << 8) | \
214 (((__u16)(x) & (__u16)0xff00U) >> 8)))
215 #endif
216 #ifndef ___constant_swab32
217 # define ___constant_swab32(x) ((__u32)( \
218 (((__u32)(x) & (__u32)0x000000ffUL) << 24) | \
219 (((__u32)(x) & (__u32)0x0000ff00UL) << 8) | \
220 (((__u32)(x) & (__u32)0x00ff0000UL) >> 8) | \
221 (((__u32)(x) & (__u32)0xff000000UL) >> 24)))
222 #endif
223 #if __BYTE_ORDER == __LITTLE_ENDIAN
224 static inline u16 cpu_to_be16(u16 val)
226 return bswap_16(val);
229 static inline u32 cpu_to_be32(u32 val)
231 return bswap_32(val);
234 static inline u64 cpu_to_be64(u64 val)
236 return bswap_64(val);
239 static inline u16 cpu_to_le16(u16 val)
241 return val;
244 static inline u32 cpu_to_le32(u32 val)
246 return val;
249 static inline u64 cpu_to_le64(u64 val)
251 return val;
254 # ifndef __constant_htonl
255 # define __constant_htonl(x) ((__force __be32)___constant_swab32((x)))
256 # endif
257 # ifndef __constant_ntohl
258 # define __constant_ntohl(x) ___constant_swab32((__force __be32)(x))
259 # endif
260 # ifndef __constant_htons
261 # define __constant_htons(x) ((__force __be16)___constant_swab16((x)))
262 # endif
263 # ifndef __constant_ntohs
264 # define __constant_ntohs(x) ___constant_swab16((__force __be16)(x))
265 # endif
266 #elif __BYTE_ORDER == __BIG_ENDIAN
267 static inline u16 cpu_to_be16(u16 val)
269 return val;
272 static inline u32 cpu_to_be32(u32 val)
274 return val;
277 static inline u64 cpu_to_be64(u64 val)
279 return val;
282 static inline u16 cpu_to_le16(u16 val)
284 return bswap_16(val);
287 static inline u32 cpu_to_le32(u32 val)
289 return bswap_32(val);
292 static inline u64 cpu_to_le64(u64 val)
294 return bswap_64(val);
297 # ifndef __constant_htonl
298 # define __constant_htonl(x) ((__force __be32)(__u32)(x))
299 # endif
300 # ifndef __constant_ntohl
301 # define __constant_ntohl(x) ((__force __u32)(__be32)(x))
302 # endif
303 # ifndef __constant_htons
304 # define __constant_htons(x) ((__force __be16)(__u16)(x))
305 # endif
306 # ifndef __constant_ntohs
307 # define __constant_ntohs(x) ((__force __u16)(__be16)(x))
308 # endif
309 #else
310 # error __BYTE_ORDER is neither __LITTLE_ENDIAN nor __BIG_ENDIAN
311 #endif
313 #define le64_to_cpu cpu_to_le64
314 #define le32_to_cpu cpu_to_le32
315 #define le16_to_cpu cpu_to_le16
316 #define be64_to_cpu cpu_to_be64
317 #define be32_to_cpu cpu_to_be32
318 #define be16_to_cpu cpu_to_be16
320 #undef memset
321 #undef memcpy
323 #define memset fmemset
324 #define memcpy fmemcpy
326 #if defined(__amd64__) || defined(__x86_64__) || defined(__AMD64__) || \
327 defined(_M_X64) || defined(__amd64)
328 # define CO_IN_CACHE_SHIFT 7
329 #elif defined(__i386__) || defined(__x86__) || defined(__X86__) || \
330 defined(_M_IX86) || defined(__i386)
331 # define CO_IN_CACHE_SHIFT 7
332 #elif defined(__ia64__) || defined(__IA64__) || defined(__M_IA64)
333 # define CO_IN_CACHE_SHIFT 6
334 #elif defined(__SPU__)
335 # define CO_IN_CACHE_SHIFT 7
336 #elif defined(__powerpc64__) || defined(__ppc64__) || defined(__PPC64__) || \
337 defined(_ARCH_PPC64)
338 # define CO_IN_CACHE_SHIFT 8
339 #elif defined(__powerpc__) || defined(__ppc__) || defined(__PPC__) || \
340 defined(_ARCH_PPC)
341 # define CO_IN_CACHE_SHIFT 7
342 #elif defined(__sparcv9__) || defined(__sparcv9)
343 # define CO_IN_CACHE_SHIFT 6
344 #elif defined(__sparc_v8__)
345 # define CO_IN_CACHE_SHIFT 5
346 #elif defined(__sparc__) || defined(__sparc)
347 # define CO_IN_CACHE_SHIFT 5
348 #elif defined(__ARM_EABI__)
349 # define CO_IN_CACHE_SHIFT 5
350 #elif defined(__arm__)
351 # define CO_IN_CACHE_SHIFT 5
352 #elif defined(__mips__) || defined(__mips) || defined(__MIPS__)
353 # if defined(_ABIO32)
354 # define CO_IN_CACHE_SHIFT 5
355 # elif defined(_ABIN32)
356 # define CO_IN_CACHE_SHIFT 5
357 # else
358 # define CO_IN_CACHE_SHIFT 6
359 # endif
360 #else
361 # define CO_IN_CACHE_SHIFT 5
362 #endif
364 #ifndef TP_STATUS_TS_SOFTWARE
365 # define TP_STATUS_TS_SOFTWARE (1 << 29)
366 #endif
368 #ifndef TP_STATUS_TS_SYS_HARDWARE
369 # define TP_STATUS_TS_SYS_HARDWARE (1 << 30)
370 #endif
372 #ifndef TP_STATUS_TS_RAW_HARDWARE
373 # define TP_STATUS_TS_RAW_HARDWARE (1 << 31)
374 #endif
376 #ifndef PACKET_QDISC_BYPASS
377 # define PACKET_QDISC_BYPASS 20
378 #endif
380 #ifndef ARPHRD_IEEE802154_MONITOR
381 # define ARPHRD_IEEE802154_MONITOR 805
382 #endif
384 #ifndef ARPHRD_IP6GRE
385 # define ARPHRD_IP6GRE 823
386 #endif
388 #ifndef ARPHRD_NETLINK
389 # define ARPHRD_NETLINK 824
390 #endif
392 #ifndef PACKET_USER
393 # define PACKET_USER 6
394 #endif
396 #ifndef PACKET_KERNEL
397 # define PACKET_KERNEL 7
398 #endif
400 #ifndef DEFFILEMODE
401 # define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) /* 0666 */
402 #endif
404 #endif /* BUILT_IN_H */