internal.h 13.8 KB
Newer Older
1 2
/*
 * internal.h: internal definitions just used by code from the library
E
Eric Blake 已提交
3
 *
4
 * Copyright (C) 2006-2014 Red Hat, Inc.
E
Eric Blake 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
19 20
 */

21 22 23 24 25 26 27 28 29
#pragma once

#include <errno.h>
#include <limits.h>
#include <verify.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
30
#include <stdlib.h>
D
Daniel P. Berrangé 已提交
31
#include <glib.h>
32 33 34 35 36 37 38 39

#if STATIC_ANALYSIS
# undef NDEBUG /* Don't let a prior NDEBUG definition cause trouble.  */
# include <assert.h>
# define sa_assert(expr) assert (expr)
#else
# define sa_assert(expr) /* empty */
#endif
40

41 42 43 44
/* The library itself is allowed to use deprecated functions /
 * variables, so effectively undefine the deprecated attribute
 * which would otherwise be defined in libvirt.h.
 */
45 46
#undef VIR_DEPRECATED
#define VIR_DEPRECATED /*empty*/
47

48
/* The library itself needs to know enum sizes.  */
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
#define VIR_ENUM_SENTINELS

#ifdef HAVE_LIBINTL_H
# define DEFAULT_TEXT_DOMAIN PACKAGE
# include <libintl.h>
# define _(str) dgettext(PACKAGE, str)
#else /* HAVE_LIBINTL_H */
# define _(str) str
#endif /* HAVE_LIBINTL_H */
#define N_(str) str

#include "libvirt/libvirt.h"
#include "libvirt/libvirt-lxc.h"
#include "libvirt/libvirt-qemu.h"
#include "libvirt/libvirt-admin.h"
#include "libvirt/virterror.h"

#include "c-strcase.h"
67
#include "glibcompat.h"
68 69 70 71 72 73 74

/* Merely casting to (void) is not sufficient since the
 * introduction of the "warn_unused_result" attribute
 */
#define ignore_value(x) \
    (__extension__ ({ __typeof__ (x) __x = (x); (void) __x; }))

75

76
/* String equality tests, suggested by Jim Meyering. */
77 78 79 80 81 82 83 84 85 86 87 88 89
#define STREQ(a, b) (strcmp(a, b) == 0)
#define STRCASEEQ(a, b) (c_strcasecmp(a, b) == 0)
#define STRNEQ(a, b) (strcmp(a, b) != 0)
#define STRCASENEQ(a, b) (c_strcasecmp(a, b) != 0)
#define STREQLEN(a, b, n) (strncmp(a, b, n) == 0)
#define STRCASEEQLEN(a, b, n) (c_strncasecmp(a, b, n) == 0)
#define STRNEQLEN(a, b, n) (strncmp(a, b, n) != 0)
#define STRCASENEQLEN(a, b, n) (c_strncasecmp(a, b, n) != 0)
#define STRPREFIX(a, b) (strncmp(a, b, strlen(b)) == 0)
#define STRCASEPREFIX(a, b) (c_strncasecmp(a, b, strlen(b)) == 0)
#define STRSKIP(a, b) (STRPREFIX(a, b) ? (a) + strlen(b) : NULL)

#define STREQ_NULLABLE(a, b) \
90
    ((a) ? (b) && STREQ((a), (b)) : !(b))
91
#define STRNEQ_NULLABLE(a, b) \
92
    ((a) ? !(b) || STRNEQ((a), (b)) : !!(b))
93

94
#define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0)
95

96
/**
97
 * G_GNUC_NO_INLINE:
98
 *
99 100
 * Force compiler not to inline a method. Should be used if
 * the method need to be overridable by test mocks.
101 102
 *
 * TODO: Remove after upgrading to GLib >= 2.58
103
 */
104 105
#ifndef G_GNUC_NO_INLINE
# define G_GNUC_NO_INLINE __attribute__((__noinline__))
106
#endif
107

108 109 110 111 112 113 114 115 116
/**
 * ATTRIBUTE_PACKED
 *
 * force a structure to be packed, i.e. not following architecture and
 * compiler best alignments for its sub components. It's needed for example
 * for the network filetering code when defining the content of raw
 * ethernet packets.
 * Others compiler than gcc may use something different e.g. #pragma pack(1)
 */
117 118 119
#ifndef ATTRIBUTE_PACKED
# define ATTRIBUTE_PACKED __attribute__((packed))
#endif
120

121 122 123 124 125 126 127 128 129
/* gcc's handling of attribute nonnull is less than stellar - it does
 * NOT improve diagnostics, and merely allows gcc to optimize away
 * null code checks even when the caller manages to pass null in spite
 * of the attribute, leading to weird crashes.  Coverity, on the other
 * hand, knows how to do better static analysis based on knowing
 * whether a parameter is nonnull.  Make this attribute conditional
 * based on whether we are compiling for real or for analysis, while
 * still requiring correct gcc syntax when it is turned off.  See also
 * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17308 */
130 131 132 133 134
#ifndef ATTRIBUTE_NONNULL
# if STATIC_ANALYSIS
#  define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m)))
# else
#  define ATTRIBUTE_NONNULL(m) __attribute__(())
135
# endif
136
#endif
137

138 139
/**
 *
140
 * G_GNUC_FALLTHROUGH
141 142 143
 *
 * silence the compiler warning when falling through a switch case
 *
144
 * TODO: Remove after upgrading to GLib >= 2.60
145
 */
146
#ifndef G_GNUC_FALLTHROUGH
147
# if __GNUC_PREREQ (7, 0)
148
#  define G_GNUC_FALLTHROUGH __attribute__((fallthrough))
149
# else
150
#  define G_GNUC_FALLTHROUGH do {} while(0)
151
# endif
152
#endif
153

154
#define VIR_WARNINGS_NO_CAST_ALIGN \
155 156
    _Pragma ("GCC diagnostic push") \
    _Pragma ("GCC diagnostic ignored \"-Wcast-align\"")
157

158
#define VIR_WARNINGS_NO_DEPRECATED \
159 160 161
    _Pragma ("GCC diagnostic push") \
    _Pragma ("GCC diagnostic ignored \"-Wdeprecated-declarations\"")

162 163
#if HAVE_SUGGEST_ATTRIBUTE_FORMAT
# define VIR_WARNINGS_NO_PRINTF \
164 165
    _Pragma ("GCC diagnostic push") \
    _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=format\"")
166 167
#else
# define VIR_WARNINGS_NO_PRINTF \
168
    _Pragma ("GCC diagnostic push")
169
#endif
170

171 172
/* Workaround bogus GCC 6.0 for logical 'or' equal expression warnings.
 * (GCC bz 69602) */
173 174
#if BROKEN_GCC_WLOGICALOP_EQUAL_EXPR
# define VIR_WARNINGS_NO_WLOGICALOP_EQUAL_EXPR \
175
     _Pragma ("GCC diagnostic push") \
176
     _Pragma ("GCC diagnostic ignored \"-Wlogical-op\"")
177
#else
178 179
# define VIR_WARNINGS_NO_WLOGICALOP_EQUAL_EXPR \
     _Pragma ("GCC diagnostic push")
180
#endif
181

182 183
#define VIR_WARNINGS_RESET \
    _Pragma ("GCC diagnostic pop")
184

185 186 187
/*
 * Use this when passing possibly-NULL strings to printf-a-likes.
 */
188
#define NULLSTR(s) ((s) ? (s) : "<null>")
189

190 191 192
/*
 * Turn a NULL string into an empty string
 */
193
#define NULLSTR_EMPTY(s) ((s) ? (s) : "")
194 195 196 197

/*
 * Turn a NULL string into a star
 */
198
#define NULLSTR_STAR(s) ((s) ? (s) : "*")
199 200 201 202

/*
 * Turn a NULL string into a minus sign
 */
203
#define NULLSTR_MINUS(s) ((s) ? (s) : "-")
204

205 206 207 208 209
/**
 * SWAP:
 *
 * In place exchange of two values
 */
210
#define SWAP(a, b) \
211 212 213 214
    do { \
        (a) = (a) ^ (b); \
        (b) = (a) ^ (b); \
        (a) = (a) ^ (b); \
215 216
    } while (0)

217 218 219 220 221 222 223 224 225 226 227
/**
 * virCheckFlags:
 * @supported: an OR'ed set of supported flags
 * @retval: return value in case unsupported flags were passed
 *
 * To avoid memory leaks this macro has to be used before any non-trivial
 * code which could possibly allocate some memory.
 *
 * Returns nothing. Exits the caller function if unsupported flags were
 * passed to it.
 */
228
#define virCheckFlags(supported, retval) \
229 230 231 232
    do { \
        unsigned long __unsuppflags = flags & ~(supported); \
        if (__unsuppflags) { \
            virReportInvalidArg(flags, \
233
                                _("unsupported flags (0x%lx) in function %s"), \
234 235 236
                                __unsuppflags, __FUNCTION__); \
            return retval; \
        } \
237 238
    } while (0)

239 240 241 242 243 244 245 246 247 248 249
/**
 * virCheckFlagsGoto:
 * @supported: an OR'ed set of supported flags
 * @label: label to jump to on error
 *
 * To avoid memory leaks this macro has to be used before any non-trivial
 * code which could possibly allocate some memory.
 *
 * Returns nothing. Jumps to a label if unsupported flags were
 * passed to it.
 */
250
#define virCheckFlagsGoto(supported, label) \
251 252 253 254
    do { \
        unsigned long __unsuppflags = flags & ~(supported); \
        if (__unsuppflags) { \
            virReportInvalidArg(flags, \
255
                                _("unsupported flags (0x%lx) in function %s"), \
256 257 258
                                __unsuppflags, __FUNCTION__); \
            goto label; \
        } \
259 260
    } while (0)

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
/* Macros to help dealing with mutually exclusive flags. */

/**
 * VIR_EXCLUSIVE_FLAGS_RET:
 *
 * @FLAG1: First flag to be checked.
 * @FLAG2: Second flag to be checked.
 * @RET: Return value.
 *
 * Reject mutually exclusive API flags.  The checked flags are compared
 * with flags variable.
 *
 * This helper does an early return and therefore it has to be called
 * before anything that would require cleanup.
 */
276
#define VIR_EXCLUSIVE_FLAGS_RET(FLAG1, FLAG2, RET) \
277 278 279 280 281 282 283 284
    do { \
        if ((flags & FLAG1) && (flags & FLAG2)) { \
            virReportInvalidArg(ctl, \
                                _("Flags '%s' and '%s' are mutually " \
                                  "exclusive"), \
                                #FLAG1, #FLAG2); \
            return RET; \
        } \
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
    } while (0)

/**
 * VIR_EXCLUSIVE_FLAGS_GOTO:
 *
 * @FLAG1: First flag to be checked.
 * @FLAG2: Second flag to be checked.
 * @LABEL: Label to jump to.
 *
 * Reject mutually exclusive API flags.  The checked flags are compared
 * with flags variable.
 *
 * Returns nothing.  Jumps to a label if unsupported flags were
 * passed to it.
 */
300
#define VIR_EXCLUSIVE_FLAGS_GOTO(FLAG1, FLAG2, LABEL) \
301 302 303 304 305 306 307 308
    do { \
        if ((flags & FLAG1) && (flags & FLAG2)) { \
            virReportInvalidArg(ctl, \
                                _("Flags '%s' and '%s' are mutually " \
                                  "exclusive"), \
                                #FLAG1, #FLAG2); \
            goto LABEL; \
        } \
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
    } while (0)

/* Macros to help dealing with flag requirements. */

/**
 * VIR_REQUIRE_FLAG_RET:
 *
 * @FLAG1: First flag to be checked.
 * @FLAG2: Second flag that is required by first flag.
 * @RET: Return value.
 *
 * Check whether required flag is set.  The checked flags are compared
 * with flags variable.
 *
 * This helper does an early return and therefore it has to be called
 * before anything that would require cleanup.
 */
326
#define VIR_REQUIRE_FLAG_RET(FLAG1, FLAG2, RET) \
327 328 329 330 331 332 333
    do { \
        if ((flags & FLAG1) && !(flags & FLAG2)) { \
            virReportInvalidArg(ctl, \
                                _("Flag '%s' is required by flag '%s'"), \
                                #FLAG2, #FLAG1); \
            return RET; \
        } \
334 335 336 337 338 339 340 341 342 343 344 345 346 347
    } while (0)

/**
 * VIR_REQUIRE_FLAG_GOTO:
 *
 * @FLAG1: First flag to be checked.
 * @FLAG2: Second flag that is required by first flag.
 * @LABEL: Label to jump to.
 *
 * Check whether required flag is set.  The checked flags are compared
 * with flags variable.
 *
 * Returns nothing.  Jumps to a label if required flag is not set.
 */
348
#define VIR_REQUIRE_FLAG_GOTO(FLAG1, FLAG2, LABEL) \
349 350 351 352 353 354 355
    do { \
        if ((flags & FLAG1) && !(flags & FLAG2)) { \
            virReportInvalidArg(ctl, \
                                _("Flag '%s' is required by flag '%s'"), \
                                #FLAG2, #FLAG1); \
            goto LABEL; \
        } \
356 357
    } while (0)

358
#define virCheckNonNullArgReturn(argname, retval) \
359 360 361 362 363
    do { \
        if (argname == NULL) { \
            virReportInvalidNonNullArg(argname); \
            return retval; \
        } \
364
    } while (0)
365
#define virCheckNullArgGoto(argname, label) \
366 367 368 369 370
    do { \
        if (argname != NULL) { \
            virReportInvalidNullArg(argname); \
            goto label; \
        } \
371
    } while (0)
372
#define virCheckNonNullArgGoto(argname, label) \
373 374 375 376 377
    do { \
        if (argname == NULL) { \
            virReportInvalidNonNullArg(argname); \
            goto label; \
        } \
378
    } while (0)
379
#define virCheckNonEmptyStringArgGoto(argname, label) \
380 381 382 383 384 385 386 387 388
    do { \
        if (argname == NULL) { \
            virReportInvalidNonNullArg(argname); \
            goto label; \
        } \
        if (*argname == '\0') { \
            virReportInvalidEmptyStringArg(argname); \
            goto label; \
        } \
389
    } while (0)
390
#define virCheckPositiveArgGoto(argname, label) \
391 392 393 394 395
    do { \
        if (argname <= 0) { \
            virReportInvalidPositiveArg(argname); \
            goto label; \
        } \
396
    } while (0)
397
#define virCheckPositiveArgReturn(argname, retval) \
398 399 400 401 402
    do { \
        if (argname <= 0) { \
            virReportInvalidPositiveArg(argname); \
            return retval; \
        } \
403
    } while (0)
404
#define virCheckNonZeroArgGoto(argname, label) \
405 406 407 408 409
    do { \
        if (argname == 0) { \
            virReportInvalidNonZeroArg(argname); \
            goto label; \
        } \
410
    } while (0)
411
#define virCheckZeroArgGoto(argname, label) \
412 413 414 415 416
    do { \
        if (argname != 0) { \
            virReportInvalidNonZeroArg(argname); \
            goto label; \
        } \
417
    } while (0)
418
#define virCheckNonNegativeArgGoto(argname, label) \
419 420 421 422 423
    do { \
        if (argname < 0) { \
            virReportInvalidNonNegativeArg(argname); \
            goto label; \
        } \
424
    } while (0)
425
#define virCheckReadOnlyGoto(flags, label) \
426 427
    do { \
        if ((flags) & VIR_CONNECT_RO) { \
428
            virReportRestrictedError(_("read only access prevents %s"), \
429 430 431
                                     __FUNCTION__); \
            goto label; \
        } \
432 433
    } while (0)

434

435 436 437 438 439 440
/* Count leading zeros in an unsigned int.
 *
 * Wrapper needed as __builtin_clz is undefined if value is zero
 */
#define VIR_CLZ(value) \
    (value ? __builtin_clz(value) : (8 * sizeof(unsigned)))
441

442
/* divide value by size, rounding up */
443
#define VIR_DIV_UP(value, size) (((value) + (size) - 1) / (size))
444

445
/* round up value to the closest multiple of size */
446
#define VIR_ROUND_UP(value, size) (VIR_DIV_UP(value, size) * (size))
447

448 449
/* Round up to the next closest power of 2. It will return rounded number or 0
 * for 0 or number more than 2^31 (for 32bit unsigned int). */
450
#define VIR_ROUND_UP_POWER_OF_TWO(value) \
451
    ((value) > 0 && (value) <= 1U << (sizeof(unsigned int) * 8 - 1) ? \
452
     1U << (sizeof(unsigned int) * 8 - VIR_CLZ((value) - 1)) : 0)
453

454

455 456 457 458 459 460 461
/* Specific error values for use in forwarding programs such as
 * virt-login-shell; these values match what GNU env does.  */
enum {
    EXIT_CANCELED = 125, /* Failed before attempting exec */
    EXIT_CANNOT_INVOKE = 126, /* Exists but couldn't exec */
    EXIT_ENOENT = 127, /* Could not find program to exec */
};
462

463 464 465
#ifndef ENODATA
# define ENODATA EIO
#endif