internal.h 7.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

12 13 14 15 16 17 18 19
# 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

20 21 22
# ifdef HAVE_SYS_SYSLIMITS_H
#  include <sys/syslimits.h>
# endif
23

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

E
Eric Blake 已提交
30 31 32 33 34 35
/* 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
36
# include "gettext.h"
E
Eric Blake 已提交
37 38
# define _(str) gettext(str)
# define N_(str) str
39

40 41
# include "libvirt/libvirt.h"
# include "libvirt/virterror.h"
42

43
# include "libvirt_internal.h"
44

45 46 47 48 49 50
/* 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).
 */
51 52 53
# ifndef HOST_NAME_MAX
#  define HOST_NAME_MAX 256
# endif
54

55 56 57
# ifndef IF_NAMESIZE
#  define IF_NAMESIZE 16
# endif
58

59 60 61
# ifndef INET_ADDRSTRLEN
#  define INET_ADDRSTRLEN 16
# endif
62

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

75 76 77 78 79 80
# define STREQ_NULLABLE(a, b)                           \
    ((!(a) && !(b)) || ((a) && (b) && STREQ((a), (b))))
# define STRNEQ_NULLABLE(a, b)                          \
    ((!(a) ^ !(b)) || ((a) && (b) && STRNEQ((a), (b))))


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

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

89
# ifdef __GNUC__
90

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

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

104
#  endif /* __GNUC__ */
105

D
Daniel Veillard 已提交
106 107 108 109 110
/**
 * ATTRIBUTE_UNUSED:
 *
 * Macro to flag conciously unused parameters to functions
 */
111 112 113
#  ifndef ATTRIBUTE_UNUSED
#   define ATTRIBUTE_UNUSED __attribute__((__unused__))
#  endif
114

115 116 117 118 119
/**
 * ATTRIBUTE_SENTINEL:
 *
 * Macro to check for NULL-terminated varargs lists
 */
120 121 122 123 124 125 126
#  ifndef ATTRIBUTE_SENTINEL
#   if __GNUC_PREREQ (4, 0)
#    define ATTRIBUTE_SENTINEL __attribute__((__sentinel__))
#   else
#    define ATTRIBUTE_SENTINEL
#   endif
#  endif
127

128
/**
129
 * ATTRIBUTE_FMT_PRINTF
130
 *
131
 * Macro used to check printf like functions, if compiling
132
 * with gcc.
133 134 135 136
 *
 * We use gnulib which guarentees we always have GNU style
 * printf format specifiers even on broken Win32 platforms
 * hence we have to force 'gnu_printf' for new GCC
137
 */
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
#  ifndef ATTRIBUTE_FMT_PRINTF
#   if __GNUC_PREREQ (4, 4)
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) __attribute__((__format__ (gnu_printf, fmtpos,argpos)))
#   else
#    define ATTRIBUTE_FMT_PRINTF(fmtpos,argpos) __attribute__((__format__ (printf, fmtpos,argpos)))
#   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

154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
/**
 * 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

171 172 173 174 175 176 177 178
#  ifndef ATTRIBUTE_NONNULL
#   if __GNUC_PREREQ (3, 3)
#    define ATTRIBUTE_NONNULL(m) __attribute__((__nonnull__(m)))
#   else
#    define ATTRIBUTE_NONNULL(m)
#   endif
#  endif

179
# else
180 181 182 183 184 185 186 187 188 189
#  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__ */
190

191 192 193
/*
 * Use this when passing possibly-NULL strings to printf-a-likes.
 */
194
# define NULLSTR(s) \
195 196 197
    ((void)verify_true(sizeof *(s) == sizeof (char)), \
     (s) ? (s) : "(null)")

D
Daniel Veillard 已提交
198 199 200 201 202
/**
 * TODO:
 *
 * macro to flag unimplemented blocks
 */
203
# define TODO 								\
D
Daniel Veillard 已提交
204 205 206
    fprintf(stderr, "Unimplemented block at %s:%d\n",			\
            __FILE__, __LINE__);

207 208 209 210 211 212 213 214 215 216 217 218 219
/**
 * 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 已提交
220 221
        unsigned long __unsuppflags = flags & ~(supported);             \
        if (__unsuppflags) {                                            \
222 223 224 225 226 227
            virReportErrorHelper(NULL,                                  \
                                 VIR_FROM_THIS,                         \
                                 VIR_ERR_INVALID_ARG,                   \
                                 __FILE__,                              \
                                 __FUNCTION__,                          \
                                 __LINE__,                              \
C
Chris Lalancette 已提交
228 229
                                 _("%s: unsupported flags (0x%lx)"),    \
                                 __FUNCTION__, __unsuppflags);          \
230 231 232 233
            return retval;                                              \
        }                                                               \
    } while (0)

234
#endif                          /* __VIR_INTERNAL_H__ */