internal.h 13.3 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
#ifndef __VIR_INTERNAL_H__
22
# define __VIR_INTERNAL_H__
23

24 25 26
# include <errno.h>
# include <limits.h>
# include <verify.h>
27
# include <stdbool.h>
28
# include <stdint.h>
29

30 31 32 33 34 35 36 37
# 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

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

45 46 47
/* The library itself needs to know enum sizes.  */
# define VIR_ENUM_SENTINELS

E
Eric Blake 已提交
48 49 50 51 52 53
/* 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
54
# include "gettext.h"
E
Eric Blake 已提交
55 56
# define _(str) gettext(str)
# define N_(str) str
57

58
# include "libvirt/libvirt.h"
59
# include "libvirt/libvirt-lxc.h"
60
# include "libvirt/libvirt-qemu.h"
61
# include "libvirt/virterror.h"
62

63
# include "c-strcase.h"
64
# include "ignore-value.h"
65

66 67 68 69 70 71
/* 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).
 */
72 73 74
# ifndef HOST_NAME_MAX
#  define HOST_NAME_MAX 256
# endif
75

76 77 78
# ifndef INET_ADDRSTRLEN
#  define INET_ADDRSTRLEN 16
# endif
79

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

92
# define STREQ_NULLABLE(a, b)                           \
93
    ((a) ? (b) && STREQ((a) ? (a) : "", (b) ? (b) : "") : !(b))
94
# define STRNEQ_NULLABLE(a, b)                          \
95
    ((a) ? !(b) || STRNEQ((a) ? (a) : "", (b) ? (b) : "") : !!(b))
96

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

100
/* C99 uses __func__.  __FUNCTION__ is legacy. */
101 102 103
# ifndef __GNUC__
#  define __FUNCTION__ __func__
# endif
104

105
# ifdef __GNUC__
106

107 108 109
#  ifndef __GNUC_PREREQ
#   if defined __GNUC__ && defined __GNUC_MINOR__
#    define __GNUC_PREREQ(maj, min)                                        \
110
    ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
111 112 113
#   else
#    define __GNUC_PREREQ(maj,min) 0
#   endif
114 115

/* Work around broken limits.h on debian etch */
116 117 118
#   if defined _GCC_LIMITS_H_ && ! defined ULLONG_MAX
#    define ULLONG_MAX   ULONG_LONG_MAX
#   endif
119

120
#  endif /* __GNUC__ */
121

D
Daniel Veillard 已提交
122 123 124
/**
 * ATTRIBUTE_UNUSED:
 *
J
Ján Tomko 已提交
125
 * Macro to flag consciously unused parameters to functions
D
Daniel Veillard 已提交
126
 */
127 128 129
#  ifndef ATTRIBUTE_UNUSED
#   define ATTRIBUTE_UNUSED __attribute__((__unused__))
#  endif
130

131 132 133 134 135 136 137 138 139
/**
 * ATTRIBUTE_NORETURN:
 *
 * Macro to indicate that a function won't return to the caller
 */
#  ifndef ATTRIBUTE_NORETURN
#   define ATTRIBUTE_NORETURN __attribute__((__noreturn__))
#  endif

140 141 142 143 144
/**
 * ATTRIBUTE_SENTINEL:
 *
 * Macro to check for NULL-terminated varargs lists
 */
145 146 147 148 149 150 151
#  ifndef ATTRIBUTE_SENTINEL
#   if __GNUC_PREREQ (4, 0)
#    define ATTRIBUTE_SENTINEL __attribute__((__sentinel__))
#   else
#    define ATTRIBUTE_SENTINEL
#   endif
#  endif
152

153
/**
154
 * ATTRIBUTE_FMT_PRINTF
155
 *
156
 * Macro used to check printf like functions, if compiling
157
 * with gcc.
158
 *
E
Eric Blake 已提交
159
 * We use gnulib which guarantees we always have GNU style
160 161
 * printf format specifiers even on broken Win32 platforms
 * hence we have to force 'gnu_printf' for new GCC
162
 */
163 164
#  ifndef ATTRIBUTE_FMT_PRINTF
#   if __GNUC_PREREQ (4, 4)
165 166
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) \
    __attribute__((__format__ (__gnu_printf__, fmtpos, argpos)))
167
#   else
168 169
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) \
    __attribute__((__format__ (__printf__, fmtpos, argpos)))
170 171 172 173 174 175 176 177 178 179 180
#   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

181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
/**
 * 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

198 199 200 201 202 203 204 205 206
/* 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 */
207
#  ifndef ATTRIBUTE_NONNULL
208 209 210 211 212 213
#   if __GNUC_PREREQ (3, 3)
#    if STATIC_ANALYSIS
#     define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m)))
#    else
#     define ATTRIBUTE_NONNULL(m) __attribute__(())
#    endif
214 215 216 217 218
#   else
#    define ATTRIBUTE_NONNULL(m)
#   endif
#  endif

219
# else
220 221 222 223 224 225 226 227 228 229
#  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__ */
230

231

232
# if WORKING_PRAGMA_PUSH
233 234 235 236 237 238 239 240 241 242 243
#  define VIR_WARNINGS_NO_CAST_ALIGN \
    _Pragma ("GCC diagnostic push") \
    _Pragma ("GCC diagnostic ignored \"-Wcast-align\"")

#  define VIR_WARNINGS_RESET \
    _Pragma ("GCC diagnostic pop")
# else
#  define VIR_WARNINGS_NO_CAST_ALIGN
#  define VIR_WARNINGS_RESET
# endif

244 245 246
/*
 * Use this when passing possibly-NULL strings to printf-a-likes.
 */
247
# define NULLSTR(s) ((s) ? (s) : "<null>")
248

D
Daniel Veillard 已提交
249 250 251 252 253
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
E
Eric Blake 已提交
254
# define TODO								\
D
Daniel Veillard 已提交
255 256 257
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

258 259 260 261 262 263 264 265 266 267 268 269
/**
 * SWAP:
 *
 * In place exchange of two values
 */
# define SWAP(a, b)         \
    do {                    \
        (a) = (a) ^ (b);    \
        (b) = (a) ^ (b);    \
        (a) = (a) ^ (b);    \
    } while (0)

270 271 272 273 274 275 276 277 278 279 280 281 282
/**
 * 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 已提交
283 284
        unsigned long __unsuppflags = flags & ~(supported);             \
        if (__unsuppflags) {                                            \
285 286 287
            virReportInvalidArg(flags,                                  \
                                _("unsupported flags (0x%lx) in function %s"), \
                                __unsuppflags, __FUNCTION__);           \
288 289 290 291
            return retval;                                              \
        }                                                               \
    } while (0)

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
/**
 * 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)

314 315 316
# define virCheckNonNullArgReturn(argname, retval)  \
    do {                                            \
        if (argname == NULL) {                      \
317
            virReportInvalidNonNullArg(argname);    \
318 319 320 321 322
            return retval;                          \
        }                                           \
    } while (0)
# define virCheckNullArgGoto(argname, label)        \
    do {                                            \
323
        if (argname != NULL) {                      \
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
            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)
363 364 365 366 367 368 369 370 371
# define virCheckReadOnlyGoto(flags, label)                             \
    do {                                                                \
        if ((flags) & VIR_CONNECT_RO) {                                 \
            virReportRestrictedError(_("read only access prevents %s"), \
                                     __FUNCTION__);                     \
            goto label;                                                 \
        }                                                               \
    } while (0)

372 373


374 375 376
/* divide value by size, rounding up */
# define VIR_DIV_UP(value, size) (((value) + (size) - 1) / (size))

377 378 379
/* round up value to the closest multiple of size */
# define VIR_ROUND_UP(value, size) (VIR_DIV_UP(value, size) * (size))

380

381 382 383 384 385 386 387
/* 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 */
};
388

389
#endif                          /* __VIR_INTERNAL_H__ */