internal.h 14.0 KB
Newer Older
1 2 3 4
/*
 * internal.h: internal definitions just used by code from the library
 */

5
#ifndef __VIR_INTERNAL_H__
6
# define __VIR_INTERNAL_H__
7

8 9 10
# include <errno.h>
# include <limits.h>
# include <verify.h>
11
# include <stdbool.h>
12
# include <stdint.h>
13

14 15 16 17 18 19 20 21
# 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

22 23 24 25
/* The library itself is allowed to use deprecated functions /
 * variables, so effectively undefine the deprecated attribute
 * which would otherwise be defined in libvirt.h.
 */
26
# undef VIR_DEPRECATED
27
# define VIR_DEPRECATED /*empty*/
28

29 30 31
/* The library itself needs to know enum sizes.  */
# define VIR_ENUM_SENTINELS

E
Eric Blake 已提交
32 33 34 35 36 37
/* All uses of _() within the library should pick up translations from
 * libvirt's message files, rather than from the package that is
 * linking in the library.  Setting this macro before including
 * "gettext.h" means that gettext() (and _()) will properly expand to
 * dgettext.  */
# define DEFAULT_TEXT_DOMAIN PACKAGE
38
# include "gettext.h"
E
Eric Blake 已提交
39 40
# define _(str) gettext(str)
# define N_(str) str
41

42
# include "libvirt/libvirt.h"
43
# include "libvirt/libvirt-lxc.h"
44
# include "libvirt/libvirt-qemu.h"
45
# include "libvirt/virterror.h"
46

47
# include "libvirt_internal.h"
48

49
# include "c-strcase.h"
50
# include "ignore-value.h"
51

52 53 54 55 56 57
/* On architectures which lack these limits, define them (ie. Cygwin).
 * Note that the libvirt code should be robust enough to handle the
 * case where actual value is longer than these limits (eg. by setting
 * length correctly in second argument to gethostname and by always
 * using strncpy instead of strcpy).
 */
58 59 60
# ifndef HOST_NAME_MAX
#  define HOST_NAME_MAX 256
# endif
61

62 63 64
# ifndef INET_ADDRSTRLEN
#  define INET_ADDRSTRLEN 16
# endif
65

66
/* String equality tests, suggested by Jim Meyering. */
67
# define STREQ(a,b) (strcmp(a,b) == 0)
68
# define STRCASEEQ(a,b) (c_strcasecmp(a,b) == 0)
69
# define STRNEQ(a,b) (strcmp(a,b) != 0)
70
# define STRCASENEQ(a,b) (c_strcasecmp(a,b) != 0)
71
# define STREQLEN(a,b,n) (strncmp(a,b,n) == 0)
72
# define STRCASEEQLEN(a,b,n) (c_strncasecmp(a,b,n) == 0)
73
# define STRNEQLEN(a,b,n) (strncmp(a,b,n) != 0)
74
# define STRCASENEQLEN(a,b,n) (c_strncasecmp(a,b,n) != 0)
75
# define STRPREFIX(a,b) (strncmp(a,b,strlen(b)) == 0)
76
# define STRSKIP(a,b) (STRPREFIX(a,b) ? (a) + strlen(b) : NULL)
77

78
# define STREQ_NULLABLE(a, b)                           \
79
    ((a) ? (b) && STREQ((a) ? (a) : "", (b) ? (b) : "") : !(b))
80
# define STRNEQ_NULLABLE(a, b)                          \
81
    ((a) ? !(b) || STRNEQ((a) ? (a) : "", (b) ? (b) : "") : !!(b))
82

83
# define NUL_TERMINATE(buf) do { (buf)[sizeof(buf)-1] = '\0'; } while (0)
84
# define ARRAY_CARDINALITY(Array) (sizeof(Array) / sizeof(*(Array)))
85

86
/* C99 uses __func__.  __FUNCTION__ is legacy. */
87 88 89
# ifndef __GNUC__
#  define __FUNCTION__ __func__
# endif
90

91
# ifdef __GNUC__
92

93 94 95
#  ifndef __GNUC_PREREQ
#   if defined __GNUC__ && defined __GNUC_MINOR__
#    define __GNUC_PREREQ(maj, min)                                        \
96
    ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
97 98 99
#   else
#    define __GNUC_PREREQ(maj,min) 0
#   endif
100 101

/* Work around broken limits.h on debian etch */
102 103 104
#   if defined _GCC_LIMITS_H_ && ! defined ULLONG_MAX
#    define ULLONG_MAX   ULONG_LONG_MAX
#   endif
105

106
#  endif /* __GNUC__ */
107

D
Daniel Veillard 已提交
108 109 110
/**
 * ATTRIBUTE_UNUSED:
 *
J
Ján Tomko 已提交
111
 * Macro to flag consciously unused parameters to functions
D
Daniel Veillard 已提交
112
 */
113 114 115
#  ifndef ATTRIBUTE_UNUSED
#   define ATTRIBUTE_UNUSED __attribute__((__unused__))
#  endif
116

117 118 119 120 121 122 123 124 125
/**
 * ATTRIBUTE_NORETURN:
 *
 * Macro to indicate that a function won't return to the caller
 */
#  ifndef ATTRIBUTE_NORETURN
#   define ATTRIBUTE_NORETURN __attribute__((__noreturn__))
#  endif

126 127 128 129 130
/**
 * ATTRIBUTE_SENTINEL:
 *
 * Macro to check for NULL-terminated varargs lists
 */
131 132 133 134 135 136 137
#  ifndef ATTRIBUTE_SENTINEL
#   if __GNUC_PREREQ (4, 0)
#    define ATTRIBUTE_SENTINEL __attribute__((__sentinel__))
#   else
#    define ATTRIBUTE_SENTINEL
#   endif
#  endif
138

139
/**
140
 * ATTRIBUTE_FMT_PRINTF
141
 *
142
 * Macro used to check printf like functions, if compiling
143
 * with gcc.
144
 *
E
Eric Blake 已提交
145
 * We use gnulib which guarantees we always have GNU style
146 147
 * printf format specifiers even on broken Win32 platforms
 * hence we have to force 'gnu_printf' for new GCC
148
 */
149 150
#  ifndef ATTRIBUTE_FMT_PRINTF
#   if __GNUC_PREREQ (4, 4)
151 152
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) \
    __attribute__((__format__ (__gnu_printf__, fmtpos, argpos)))
153
#   else
154 155
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) \
    __attribute__((__format__ (__printf__, fmtpos, argpos)))
156 157 158 159 160 161 162 163 164 165 166
#   endif
#  endif

#  ifndef ATTRIBUTE_RETURN_CHECK
#   if __GNUC_PREREQ (3, 4)
#    define ATTRIBUTE_RETURN_CHECK __attribute__((__warn_unused_result__))
#   else
#    define ATTRIBUTE_RETURN_CHECK
#   endif
#  endif

167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
/**
 * 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)
 */
#  ifndef ATTRIBUTE_PACKED
#   if __GNUC_PREREQ (3, 3)
#    define ATTRIBUTE_PACKED __attribute__((packed))
#   else
#    error "Need an __attribute__((packed)) equivalent"
#   endif
#  endif

184
#  ifndef ATTRIBUTE_NONNULL
185
#   if __GNUC_PREREQ (3, 3) && STATIC_ANALYSIS
186 187 188 189 190 191
#    define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m)))
#   else
#    define ATTRIBUTE_NONNULL(m)
#   endif
#  endif

192
# else
193 194 195 196 197 198 199 200 201 202
#  ifndef ATTRIBUTE_UNUSED
#   define ATTRIBUTE_UNUSED
#  endif
#  ifndef ATTRIBUTE_FMT_PRINTF
#   define ATTRIBUTE_FMT_PRINTF(...)
#  endif
#  ifndef ATTRIBUTE_RETURN_CHECK
#   define ATTRIBUTE_RETURN_CHECK
#  endif
# endif				/* __GNUC__ */
203

204 205 206
/*
 * Use this when passing possibly-NULL strings to printf-a-likes.
 */
207
# define NULLSTR(s) ((s) ? (s) : "(null)")
208

D
Daniel Veillard 已提交
209 210 211 212 213
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
E
Eric Blake 已提交
214
# define TODO								\
D
Daniel Veillard 已提交
215 216 217
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

218 219 220 221 222 223 224 225 226 227 228 229 230
/**
 * 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.
 */
# define virCheckFlags(supported, retval)                               \
    do {                                                                \
C
Chris Lalancette 已提交
231 232
        unsigned long __unsuppflags = flags & ~(supported);             \
        if (__unsuppflags) {                                            \
233 234 235
            virReportInvalidArg(flags,                                  \
                                _("unsupported flags (0x%lx) in function %s"), \
                                __unsuppflags, __FUNCTION__);           \
236 237 238 239
            return retval;                                              \
        }                                                               \
    } while (0)

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
/**
 * 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.
 */
# define virCheckFlagsGoto(supported, label)                            \
    do {                                                                \
        unsigned long __unsuppflags = flags & ~(supported);             \
        if (__unsuppflags) {                                            \
            virReportInvalidArg(flags,                                  \
                                _("unsupported flags (0x%lx) in function %s"), \
                                __unsuppflags, __FUNCTION__);           \
            goto label;                                                 \
        }                                                               \
    } while (0)

262 263 264
# define virCheckNonNullArgReturn(argname, retval)  \
    do {                                            \
        if (argname == NULL) {                      \
265
            virReportInvalidNonNullArg(argname);    \
266 267 268 269 270
            return retval;                          \
        }                                           \
    } while (0)
# define virCheckNullArgGoto(argname, label)        \
    do {                                            \
271
        if (argname != NULL) {                      \
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
            virReportInvalidNullArg(argname);       \
            goto label;                             \
        }                                           \
    } while (0)
# define virCheckNonNullArgGoto(argname, label)     \
    do {                                            \
        if (argname == NULL) {                      \
            virReportInvalidNonNullArg(argname);    \
            goto label;                             \
        }                                           \
    } while (0)
# define virCheckPositiveArgGoto(argname, label)    \
    do {                                            \
        if (argname <= 0) {                         \
            virReportInvalidPositiveArg(argname);   \
            goto label;                             \
        }                                           \
    } while (0)
# define virCheckNonZeroArgGoto(argname, label)     \
    do {                                            \
        if (argname == 0) {                         \
            virReportInvalidNonZeroArg(argname);    \
            goto label;                             \
        }                                           \
    } while (0)
# define virCheckZeroArgGoto(argname, label)        \
    do {                                            \
        if (argname != 0) {                         \
            virReportInvalidNonZeroArg(argname);    \
            goto label;                             \
        }                                           \
    } while (0)
# define virCheckNonNegativeArgGoto(argname, label)     \
    do {                                                \
        if (argname < 0) {                              \
            virReportInvalidNonNegativeArg(argname);    \
            goto label;                                 \
        }                                               \
    } while (0)


313 314 315
/* divide value by size, rounding up */
# define VIR_DIV_UP(value, size) (((value) + (size) - 1) / (size))

316

317
# if WITH_DTRACE_PROBES
318 319
#  ifndef LIBVIRT_PROBES_H
#   define LIBVIRT_PROBES_H
320
#   include "libvirt_probes.h"
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
#  endif /* LIBVIRT_PROBES_H */

/* Systemtap 1.2 headers have a bug where they cannot handle a
 * variable declared with array type.  Work around this by casting all
 * arguments.  This is some gross use of the preprocessor because
 * PROBE is a var-arg macro, but it is better than the alternative of
 * making all callers to PROBE have to be aware of the issues.  And
 * hopefully, if we ever add a call to PROBE with other than 9
 * end arguments, you can figure out the pattern to extend this hack.
 */
#  define VIR_COUNT_ARGS(...) VIR_ARG11(__VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
#  define VIR_ARG11(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, ...) _11
#  define VIR_ADD_CAST_EXPAND(a, b, ...) VIR_ADD_CAST_PASTE(a, b, __VA_ARGS__)
#  define VIR_ADD_CAST_PASTE(a, b, ...) a##b(__VA_ARGS__)

/* The double cast is necessary to silence gcc warnings; any pointer
 * can safely go to intptr_t and back to void *, which collapses
 * arrays into pointers; while any integer can be widened to intptr_t
 * then cast to void *.  */
#  define VIR_ADD_CAST(a) ((void *)(intptr_t)(a))
#  define VIR_ADD_CAST1(a)                                  \
    VIR_ADD_CAST(a)
#  define VIR_ADD_CAST2(a, b)                               \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b)
#  define VIR_ADD_CAST3(a, b, c)                            \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c)
#  define VIR_ADD_CAST4(a, b, c, d)                         \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d)
#  define VIR_ADD_CAST5(a, b, c, d, e)                      \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d), VIR_ADD_CAST(e)
#  define VIR_ADD_CAST6(a, b, c, d, e, f)                   \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d), VIR_ADD_CAST(e), VIR_ADD_CAST(f)
#  define VIR_ADD_CAST7(a, b, c, d, e, f, g)                \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d), VIR_ADD_CAST(e), VIR_ADD_CAST(f),      \
    VIR_ADD_CAST(g)
#  define VIR_ADD_CAST8(a, b, c, d, e, f, g, h)             \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d), VIR_ADD_CAST(e), VIR_ADD_CAST(f),      \
    VIR_ADD_CAST(g), VIR_ADD_CAST(h)
#  define VIR_ADD_CAST9(a, b, c, d, e, f, g, h, i)          \
    VIR_ADD_CAST(a), VIR_ADD_CAST(b), VIR_ADD_CAST(c),      \
    VIR_ADD_CAST(d), VIR_ADD_CAST(e), VIR_ADD_CAST(f),      \
    VIR_ADD_CAST(g), VIR_ADD_CAST(h), VIR_ADD_CAST(i)

#  define VIR_ADD_CASTS(...)                                            \
    VIR_ADD_CAST_EXPAND(VIR_ADD_CAST, VIR_COUNT_ARGS(__VA_ARGS__),      \
                        __VA_ARGS__)

#  define PROBE_EXPAND(NAME, ARGS) NAME(ARGS)
#  define PROBE(NAME, FMT, ...)                              \
375 376
    VIR_DEBUG_INT(VIR_LOG_FROM_TRACE,                        \
                  __FILE__, __LINE__, __func__,              \
377
                  #NAME ": " FMT, __VA_ARGS__);              \
378 379
    if (LIBVIRT_ ## NAME ## _ENABLED()) {                    \
        PROBE_EXPAND(LIBVIRT_ ## NAME,                       \
380 381 382 383
                     VIR_ADD_CASTS(__VA_ARGS__));            \
    }
# else
#  define PROBE(NAME, FMT, ...)                              \
384 385
    VIR_DEBUG_INT(VIR_LOG_FROM_TRACE,                        \
                  __FILE__, __LINE__, __func__,              \
386 387 388 389
                  #NAME ": " FMT, __VA_ARGS__);
# endif


390
#endif                          /* __VIR_INTERNAL_H__ */