]> git.proxmox.com Git - mirror_ovs.git/blame - lib/util.h
ovsdb-idl: Fix iteration over tracked rows with no actual data.
[mirror_ovs.git] / lib / util.h
CommitLineData
064af421 1/*
f9ac0f03 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 Nicira, Inc.
064af421 3 *
a14bc59f
BP
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
064af421 7 *
a14bc59f
BP
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
064af421
BP
15 */
16
17#ifndef UTIL_H
18#define UTIL_H 1
19
b2befd5b
BP
20#include <sys/types.h>
21#include <netinet/in.h>
b2fc6a74 22#include <arpa/inet.h>
437d0d22 23#include <inttypes.h>
a656cb77 24#include <limits.h>
91883334 25#include <stdarg.h>
064af421 26#include <stdio.h>
ccc09689 27#include <stdlib.h>
064af421
BP
28#include <string.h>
29#include "compiler.h"
ee89ea7b 30#include "util.h"
b0248b2a 31#include "openvswitch/util.h"
a0f7bf22
YW
32#if defined(__aarch64__) && __GNUC__ >= 6
33#include <arm_neon.h>
34#endif
064af421 35
91e12f0d 36extern char *program_name;
064af421 37
878f1972 38#define __ARRAY_SIZE_NOCHECK(ARRAY) (sizeof(ARRAY) / sizeof((ARRAY)[0]))
274cd1f1 39#if __GNUC__ && !defined(__cplusplus)
878f1972
FL
40/* return 0 for array types, 1 otherwise */
41#define __ARRAY_CHECK(ARRAY) \
42 !__builtin_types_compatible_p(typeof(ARRAY), typeof(&ARRAY[0]))
43
44/* compile-time fail if not array */
45#define __ARRAY_FAIL(ARRAY) (sizeof(char[-2*!__ARRAY_CHECK(ARRAY)]))
46#define __ARRAY_SIZE(ARRAY) \
47 __builtin_choose_expr(__ARRAY_CHECK(ARRAY), \
48 __ARRAY_SIZE_NOCHECK(ARRAY), __ARRAY_FAIL(ARRAY))
274cd1f1
YHW
49#elif defined(__cplusplus)
50#define __ARRAY_SIZE(ARRAY) ( \
51 0 * sizeof(reinterpret_cast<const ::Bad_arg_to_ARRAY_SIZE *>(ARRAY)) + \
52 0 * sizeof(::Bad_arg_to_ARRAY_SIZE::check_type((ARRAY), &(ARRAY))) + \
53 sizeof(ARRAY) / sizeof((ARRAY)[0]) )
54
55struct Bad_arg_to_ARRAY_SIZE {
56 class Is_pointer;
57 class Is_array {};
58 template <typename T>
59 static Is_pointer check_type(const T *, const T * const *);
60 static Is_array check_type(const void *, const void *);
61};
878f1972
FL
62#else
63#define __ARRAY_SIZE(ARRAY) __ARRAY_SIZE_NOCHECK(ARRAY)
64#endif
65
e93ab553 66
e2051008
BP
67/* This system's cache line size, in bytes.
68 * Being wrong hurts performance but not correctness. */
69#define CACHE_LINE_SIZE 64
70BUILD_ASSERT_DECL(IS_POW2(CACHE_LINE_SIZE));
71
73e713fc
BB
72/* Cacheline marking is typically done using zero-sized array.
73 * However MSVC doesn't like zero-sized array in struct/union.
74 * C4200: https://msdn.microsoft.com/en-us/library/79wf64bc.aspx
75 */
76typedef uint8_t OVS_CACHE_LINE_MARKER[1];
77
124f09c9
JR
78static inline void
79ovs_prefetch_range(const void *start, size_t size)
80{
81 const char *addr = (const char *)start;
82 size_t ofs;
83
84 for (ofs = 0; ofs < size; ofs += CACHE_LINE_SIZE) {
85 OVS_PREFETCH(addr + ofs);
86 }
87}
88
064af421
BP
89#ifndef MIN
90#define MIN(X, Y) ((X) < (Y) ? (X) : (Y))
91#endif
92
93#ifndef MAX
94#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
95#endif
96
a489b168
DDP
97/* Comparisons for ints with modular arithmetic */
98#define INT_MOD_LT(a,b) ((int) ((a)-(b)) < 0)
99#define INT_MOD_LEQ(a,b) ((int) ((a)-(b)) <= 0)
100#define INT_MOD_GT(a,b) ((int) ((a)-(b)) > 0)
101#define INT_MOD_GEQ(a,b) ((int) ((a)-(b)) >= 0)
102
103#define INT_MOD_MIN(a, b) ((INT_MOD_LT(a, b)) ? (a) : (b))
104#define INT_MOD_MAX(a, b) ((INT_MOD_GT(a, b)) ? (a) : (b))
105
428b2edd 106#define OVS_NOT_REACHED() abort()
064af421 107
34582733
AS
108/* Use "%"PRIuSIZE to format size_t with printf(). */
109#ifdef _WIN32
110#define PRIdSIZE "Id"
111#define PRIiSIZE "Ii"
112#define PRIoSIZE "Io"
113#define PRIuSIZE "Iu"
114#define PRIxSIZE "Ix"
115#define PRIXSIZE "IX"
116#else
117#define PRIdSIZE "zd"
118#define PRIiSIZE "zi"
119#define PRIoSIZE "zo"
120#define PRIuSIZE "zu"
121#define PRIxSIZE "zx"
122#define PRIXSIZE "zX"
123#endif
124
b57c6aaa
BP
125#ifndef _WIN32
126typedef uint32_t HANDLE;
127#endif
128
064af421
BP
129#ifdef __cplusplus
130extern "C" {
131#endif
132
55d5bb44 133#define set_program_name(name) \
b0248b2a 134 ovs_set_program_name(name, OVS_PACKAGE_VERSION)
064af421 135
bc9fb3a9 136const char *get_subprogram_name(void);
40e7cf56 137 void set_subprogram_name(const char *);
bc9fb3a9 138
ff1d2c16
BB
139unsigned int get_page_size(void);
140long long int get_boot_time(void);
141
9551e80b
IM
142void ctl_timeout_setup(unsigned int secs);
143
55d5bb44 144void ovs_print_version(uint8_t min_ofp, uint8_t max_ofp);
064af421 145
da05d1c8
IM
146void set_memory_locked(void);
147bool memory_locked(void);
148
cab50449 149OVS_NO_RETURN void out_of_memory(void);
064af421
BP
150void *xmalloc(size_t) MALLOC_LIKE;
151void *xcalloc(size_t, size_t) MALLOC_LIKE;
ec6fde61 152void *xzalloc(size_t) MALLOC_LIKE;
064af421
BP
153void *xrealloc(void *, size_t);
154void *xmemdup(const void *, size_t) MALLOC_LIKE;
155char *xmemdup0(const char *, size_t) MALLOC_LIKE;
156char *xstrdup(const char *) MALLOC_LIKE;
2225c0b9 157char *nullable_xstrdup(const char *) MALLOC_LIKE;
aacf18c3 158bool nullable_string_is_equal(const char *a, const char *b);
cab50449
TG
159char *xasprintf(const char *format, ...) OVS_PRINTF_FORMAT(1, 2) MALLOC_LIKE;
160char *xvasprintf(const char *format, va_list) OVS_PRINTF_FORMAT(1, 0) MALLOC_LIKE;
064af421
BP
161void *x2nrealloc(void *p, size_t *n, size_t s);
162
2fec66db
BP
163void *xmalloc_cacheline(size_t) MALLOC_LIKE;
164void *xzalloc_cacheline(size_t) MALLOC_LIKE;
165void free_cacheline(void *);
166
064af421 167void ovs_strlcpy(char *dst, const char *src, size_t size);
71d7c22f 168void ovs_strzcpy(char *dst, const char *src, size_t size);
064af421 169
971f4b39
MW
170int string_ends_with(const char *str, const char *suffix);
171
0de1b425
WT
172void *xmalloc_pagealign(size_t) MALLOC_LIKE;
173void free_pagealign(void *);
174void *xmalloc_size_align(size_t, size_t) MALLOC_LIKE;
175void free_size_align(void *);
176
316d0932
LR
177/* The C standards say that neither the 'dst' nor 'src' argument to
178 * memcpy() may be null, even if 'n' is zero. This wrapper tolerates
179 * the null case. */
180static inline void
181nullable_memcpy(void *dst, const void *src, size_t n)
182{
183 if (n) {
184 memcpy(dst, src, n);
185 }
186}
187
188/* The C standards say that the 'dst' argument to memset may not be
189 * null, even if 'n' is zero. This wrapper tolerates the null case. */
190static inline void
191nullable_memset(void *dst, int c, size_t n)
192{
193 if (n) {
194 memset(dst, c, n);
195 }
196}
197
f9ac0f03
BP
198/* Copy string SRC to DST, but no more bytes than the shorter of DST or SRC.
199 * DST and SRC must both be char arrays, not pointers, and with GNU C, this
200 * raises a compiler error if either DST or SRC is a pointer instead of an
201 * array. */
202#define ovs_strlcpy_arrays(DST, SRC) \
203 ovs_strlcpy(DST, SRC, MIN(ARRAY_SIZE(DST), ARRAY_SIZE(SRC)))
204
cab50449
TG
205OVS_NO_RETURN void ovs_abort(int err_no, const char *format, ...)
206 OVS_PRINTF_FORMAT(2, 3);
207OVS_NO_RETURN void ovs_abort_valist(int err_no, const char *format, va_list)
208 OVS_PRINTF_FORMAT(2, 0);
209OVS_NO_RETURN void ovs_fatal(int err_no, const char *format, ...)
210 OVS_PRINTF_FORMAT(2, 3);
211OVS_NO_RETURN void ovs_fatal_valist(int err_no, const char *format, va_list)
212 OVS_PRINTF_FORMAT(2, 0);
213void ovs_error(int err_no, const char *format, ...) OVS_PRINTF_FORMAT(2, 3);
c1c8308a 214void ovs_error_valist(int err_no, const char *format, va_list)
cab50449 215 OVS_PRINTF_FORMAT(2, 0);
c18ea70d 216const char *ovs_retval_to_string(int);
5fcbed74 217const char *ovs_strerror(int);
064af421
BP
218void ovs_hex_dump(FILE *, const void *, size_t, uintptr_t offset, bool ascii);
219
220bool str_to_int(const char *, int base, int *);
221bool str_to_long(const char *, int base, long *);
222bool str_to_llong(const char *, int base, long long *);
1ab39058 223bool str_to_llong_with_tail(const char *, char **, int base, long long *);
4c21aa06 224bool str_to_uint(const char *, int base, unsigned int *);
c24b3458 225bool str_to_ullong(const char *, int base, unsigned long long *);
1ab39058 226bool str_to_llong_range(const char *, int base, long long *, long long *);
064af421 227
cab50449 228bool ovs_scan(const char *s, const char *format, ...) OVS_SCANF_FORMAT(2, 3);
f071cbba 229bool ovs_scan_len(const char *s, int *n, const char *format, ...);
ed2232fc 230
f38b84ea
BP
231bool str_to_double(const char *, double *);
232
b4e1bfd7 233int hexit_value(unsigned char c);
0429d959 234uintmax_t hexits_value(const char *s, size_t n, bool *ok);
f38b84ea 235
e7ae59f9
JG
236int parse_int_string(const char *s, uint8_t *valuep, int field_width,
237 char **tail);
238
44b4d050
BP
239const char *english_list_delimiter(size_t index, size_t total);
240
daf03c53 241char *get_cwd(void);
3c1150ce 242#ifndef _WIN32
29d4af60 243char *dir_name(const char *file_name);
e1aff6f9 244char *base_name(const char *file_name);
3c1150ce 245#endif
daf03c53 246char *abs_file_name(const char *dir, const char *file_name);
4d8f04b3 247bool is_file_name_absolute(const char *);
29d4af60 248
fee0c963
BP
249char *follow_symlinks(const char *filename);
250
c69ee87c 251void ignore(bool x OVS_UNUSED);
fe9d0898
BP
252\f
253/* Bitwise tests. */
0ee140fb 254
d43d314e
BP
255/* Returns the number of trailing 0-bits in 'n'. Undefined if 'n' == 0. */
256#if __GNUC__ >= 4
0ee140fb 257static inline int
d43d314e 258raw_ctz(uint64_t n)
0ee140fb 259{
d43d314e
BP
260 /* With GCC 4.7 on 32-bit x86, if a 32-bit integer is passed as 'n', using
261 * a plain __builtin_ctzll() here always generates an out-of-line function
262 * call. The test below helps it to emit a single 'bsf' instruction. */
263 return (__builtin_constant_p(n <= UINT32_MAX) && n <= UINT32_MAX
264 ? __builtin_ctz(n)
265 : __builtin_ctzll(n));
0ee140fb 266}
8c947903
JR
267
268static inline int
269raw_clz64(uint64_t n)
270{
271 return __builtin_clzll(n);
272}
25f45143
GS
273#elif _MSC_VER
274static inline int
275raw_ctz(uint64_t n)
276{
277#ifdef _WIN64
99970e95 278 unsigned long r = 0;
25f45143
GS
279 _BitScanForward64(&r, n);
280 return r;
281#else
99970e95 282 unsigned long low = n, high, r = 0;
25f45143
GS
283 if (_BitScanForward(&r, low)) {
284 return r;
285 }
286 high = n >> 32;
287 _BitScanForward(&r, high);
288 return r + 32;
289#endif
290}
291
292static inline int
293raw_clz64(uint64_t n)
294{
295#ifdef _WIN64
99970e95 296 unsigned long r = 0;
25f45143
GS
297 _BitScanReverse64(&r, n);
298 return 63 - r;
299#else
99970e95 300 unsigned long low, high = n >> 32, r = 0;
25f45143
GS
301 if (_BitScanReverse(&r, high)) {
302 return 31 - r;
303 }
304 low = n;
305 _BitScanReverse(&r, low);
306 return 63 - r;
307#endif
308}
0ee140fb
BP
309#else
310/* Defined in util.c. */
d43d314e 311int raw_ctz(uint64_t n);
8c947903 312int raw_clz64(uint64_t n);
0ee140fb
BP
313#endif
314
315/* Returns the number of trailing 0-bits in 'n', or 32 if 'n' is 0. */
316static inline int
d578065e 317ctz32(uint32_t n)
0ee140fb
BP
318{
319 return n ? raw_ctz(n) : 32;
320}
321
cc4c738e
JR
322/* Returns the number of trailing 0-bits in 'n', or 64 if 'n' is 0. */
323static inline int
324ctz64(uint64_t n)
325{
d43d314e 326 return n ? raw_ctz(n) : 64;
cc4c738e 327}
18b9283b 328
8c947903
JR
329/* Returns the number of leading 0-bits in 'n', or 32 if 'n' is 0. */
330static inline int
331clz32(uint32_t n)
332{
333 return n ? raw_clz64(n) - 32 : 32;
334}
335
336/* Returns the number of leading 0-bits in 'n', or 64 if 'n' is 0. */
337static inline int
338clz64(uint64_t n)
339{
340 return n ? raw_clz64(n) : 64;
341}
342
343/* Given a word 'n', calculates floor(log_2('n')). This is equivalent
344 * to finding the bit position of the most significant one bit in 'n'. It is
345 * an error to call this function with 'n' == 0. */
346static inline int
347log_2_floor(uint64_t n)
348{
349 return 63 - raw_clz64(n);
350}
351
352/* Given a word 'n', calculates ceil(log_2('n')). It is an error to
353 * call this function with 'n' == 0. */
354static inline int
355log_2_ceil(uint64_t n)
356{
357 return log_2_floor(n) + !is_pow2(n);
358}
359
381657b3
JR
360/* unsigned int count_1bits(uint64_t x):
361 *
362 * Returns the number of 1-bits in 'x', between 0 and 64 inclusive. */
363#if UINTPTR_MAX == UINT64_MAX
364static inline unsigned int
365count_1bits(uint64_t x)
366{
a0f7bf22 367#if (__GNUC__ >= 4 && __POPCNT__) || (defined(__aarch64__) && __GNUC__ >= 7)
381657b3 368 return __builtin_popcountll(x);
a0f7bf22
YW
369#elif defined(__aarch64__) && __GNUC__ >= 6
370 return vaddv_u8(vcnt_u8(vcreate_u8(x)));
381657b3
JR
371#else
372 /* This portable implementation is the fastest one we know of for 64
373 * bits, and about 3x faster than GCC 4.7 __builtin_popcountll(). */
374 const uint64_t h55 = UINT64_C(0x5555555555555555);
375 const uint64_t h33 = UINT64_C(0x3333333333333333);
376 const uint64_t h0F = UINT64_C(0x0F0F0F0F0F0F0F0F);
377 const uint64_t h01 = UINT64_C(0x0101010101010101);
378 x -= (x >> 1) & h55; /* Count of each 2 bits in-place. */
379 x = (x & h33) + ((x >> 2) & h33); /* Count of each 4 bits in-place. */
380 x = (x + (x >> 4)) & h0F; /* Count of each 8 bits in-place. */
381 return (x * h01) >> 56; /* Sum of all bytes. */
382#endif
383}
384#else /* Not 64-bit. */
385#if __GNUC__ >= 4 && __POPCNT__
c3cc4d2d 386static inline unsigned int
381657b3 387count_1bits_32__(uint32_t x)
c3cc4d2d 388{
c3cc4d2d 389 return __builtin_popcount(x);
381657b3 390}
c3cc4d2d 391#else
381657b3
JR
392#define NEED_COUNT_1BITS_8 1
393extern const uint8_t count_1bits_8[256];
394static inline unsigned int
395count_1bits_32__(uint32_t x)
396{
c3cc4d2d
JR
397 /* This portable implementation is the fastest one we know of for 32 bits,
398 * and faster than GCC __builtin_popcount(). */
399 return (count_1bits_8[x & 0xff] +
400 count_1bits_8[(x >> 8) & 0xff] +
401 count_1bits_8[(x >> 16) & 0xff] +
402 count_1bits_8[x >> 24]);
c3cc4d2d 403}
381657b3 404#endif
c3cc4d2d
JR
405static inline unsigned int
406count_1bits(uint64_t x)
407{
381657b3 408 return count_1bits_32__(x) + count_1bits_32__(x >> 32);
c3cc4d2d 409}
381657b3 410#endif
8c947903 411
fe9d0898
BP
412/* Returns the rightmost 1-bit in 'x' (e.g. 01011000 => 00001000), or 0 if 'x'
413 * is 0. */
414static inline uintmax_t
415rightmost_1bit(uintmax_t x)
416{
417 return x & -x;
418}
419
420/* Returns 'x' with its rightmost 1-bit changed to a zero (e.g. 01011000 =>
421 * 01010000), or 0 if 'x' is 0. */
422static inline uintmax_t
423zero_rightmost_1bit(uintmax_t x)
424{
425 return x & (x - 1);
426}
35bedb61 427
4ed47144
BP
428/* Returns the index of the rightmost 1-bit in 'x' (e.g. 01011000 => 3), or an
429 * undefined value if 'x' is 0. */
795b3288 430static inline int
4ed47144 431rightmost_1bit_idx(uint64_t x)
35bedb61 432{
4ed47144 433 return ctz64(x);
35bedb61
BP
434}
435
4ed47144
BP
436/* Returns the index of the leftmost 1-bit in 'x' (e.g. 01011000 => 6), or an
437 * undefined value if 'x' is 0. */
35bedb61 438static inline uint32_t
4ed47144 439leftmost_1bit_idx(uint64_t x)
35bedb61 440{
4ed47144 441 return log_2_floor(x);
35bedb61 442}
86f35fb5
JR
443
444/* Return a ovs_be32 prefix in network byte order with 'plen' highest bits set.
445 * Shift with 32 is undefined behavior, but we rather use 64-bit shift than
446 * compare. */
447static inline ovs_be32 be32_prefix_mask(int plen)
448{
449 return htonl((uint64_t)UINT32_MAX << (32 - plen));
450}
fe9d0898 451\f
4e413ac8
BP
452/* Returns true if the 1-bits in 'super' are a superset of the 1-bits in 'sub',
453 * false otherwise. */
454static inline bool
455uint_is_superset(uintmax_t super, uintmax_t sub)
456{
457 return (super & sub) == sub;
458}
459
460/* Returns true if the 1-bits in 'super' are a superset of the 1-bits in 'sub',
461 * false otherwise. */
462static inline bool
463be16_is_superset(ovs_be16 super, ovs_be16 sub)
464{
465 return (super & sub) == sub;
466}
467
468/* Returns true if the 1-bits in 'super' are a superset of the 1-bits in 'sub',
469 * false otherwise. */
470static inline bool
471be32_is_superset(ovs_be32 super, ovs_be32 sub)
472{
473 return (super & sub) == sub;
474}
475
476/* Returns true if the 1-bits in 'super' are a superset of the 1-bits in 'sub',
477 * false otherwise. */
478static inline bool
479be64_is_superset(ovs_be64 super, ovs_be64 sub)
480{
481 return (super & sub) == sub;
482}
483\f
53cb9c3e
JR
484bool is_all_zeros(const void *, size_t);
485bool is_all_ones(const void *, size_t);
df1a62cb 486bool is_all_byte(const void *, size_t, uint8_t byte);
e8bf7774 487void or_bytes(void *dst, const void *src, size_t n);
ddc4f8e2
BP
488void bitwise_copy(const void *src, unsigned int src_len, unsigned int src_ofs,
489 void *dst, unsigned int dst_len, unsigned int dst_ofs,
490 unsigned int n_bits);
6cc7ea5e
BP
491void bitwise_zero(void *dst_, unsigned int dst_len, unsigned dst_ofs,
492 unsigned int n_bits);
c2dd4932
BP
493void bitwise_one(void *dst_, unsigned int dst_len, unsigned dst_ofs,
494 unsigned int n_bits);
79a010aa
BP
495bool bitwise_is_all_zeros(const void *, unsigned int len, unsigned int ofs,
496 unsigned int n_bits);
099c06e3
BP
497unsigned int bitwise_scan(const void *, unsigned int len,
498 bool target, unsigned int start, unsigned int end);
95a92d5a
BP
499int bitwise_rscan(const void *, unsigned int len, bool target,
500 int start, int end);
ddc4f8e2
BP
501void bitwise_put(uint64_t value,
502 void *dst, unsigned int dst_len, unsigned int dst_ofs,
503 unsigned int n_bits);
504uint64_t bitwise_get(const void *src, unsigned int src_len,
505 unsigned int src_ofs, unsigned int n_bits);
95a92d5a
BP
506bool bitwise_get_bit(const void *src, unsigned int len, unsigned int ofs);
507void bitwise_put0(void *dst, unsigned int len, unsigned int ofs);
508void bitwise_put1(void *dst, unsigned int len, unsigned int ofs);
509void bitwise_put_bit(void *dst, unsigned int len, unsigned int ofs, bool);
510void bitwise_toggle_bit(void *dst, unsigned int len, unsigned int ofs);
75a75043 511
bdd7ecf5
JS
512/* Returns non-zero if the parameters have equal value. */
513static inline int
2ff8484b 514ovs_u128_equals(const ovs_u128 a, const ovs_u128 b)
bdd7ecf5 515{
2ff8484b 516 return (a.u64.hi == b.u64.hi) && (a.u64.lo == b.u64.lo);
bdd7ecf5
JS
517}
518
557344e3
JS
519/* Returns true if 'val' is 0. */
520static inline bool
2ff8484b 521ovs_u128_is_zero(const ovs_u128 val)
557344e3 522{
2ff8484b 523 return !(val.u64.hi || val.u64.lo);
557344e3
JS
524}
525
526/* Returns true if 'val' is all ones. */
527static inline bool
2ff8484b 528ovs_u128_is_ones(const ovs_u128 val)
557344e3 529{
2ff8484b 530 return ovs_u128_equals(val, OVS_U128_MAX);
557344e3
JS
531}
532
533/* Returns non-zero if the parameters have equal value. */
534static inline int
2ff8484b 535ovs_be128_equals(const ovs_be128 a, const ovs_be128 b)
557344e3 536{
2ff8484b 537 return (a.be64.hi == b.be64.hi) && (a.be64.lo == b.be64.lo);
557344e3
JS
538}
539
540/* Returns true if 'val' is 0. */
541static inline bool
2ff8484b 542ovs_be128_is_zero(const ovs_be128 val)
557344e3 543{
2ff8484b 544 return !(val.be64.hi || val.be64.lo);
557344e3
JS
545}
546
f2d105b5
JS
547static inline ovs_u128
548ovs_u128_and(const ovs_u128 a, const ovs_u128 b)
549{
550 ovs_u128 dst;
551
552 dst.u64.hi = a.u64.hi & b.u64.hi;
553 dst.u64.lo = a.u64.lo & b.u64.lo;
554
555 return dst;
556}
557
4e413ac8
BP
558static inline bool
559ovs_be128_is_superset(ovs_be128 super, ovs_be128 sub)
560{
561 return (be64_is_superset(super.be64.hi, sub.be64.hi) &&
562 be64_is_superset(super.be64.lo, sub.be64.lo));
563}
564
565static inline bool
566ovs_u128_is_superset(ovs_u128 super, ovs_u128 sub)
567{
568 return (uint_is_superset(super.u64.hi, sub.u64.hi) &&
569 uint_is_superset(super.u64.lo, sub.u64.lo));
570}
571
5fd2f418 572void xsleep(unsigned int seconds);
ca3cc1aa 573void xnanosleep(uint64_t nanoseconds);
124f09c9 574
20174b74
QM
575bool is_stdout_a_tty(void);
576
06f14c92
GS
577#ifdef _WIN32
578\f
315ea327 579char *ovs_format_message(int error);
06f14c92 580char *ovs_lasterror_to_string(void);
daa04db8 581int ftruncate(int fd, off_t length);
06f14c92
GS
582#endif
583
064af421
BP
584#ifdef __cplusplus
585}
586#endif
587
588#endif /* util.h */