virutil.h 7.4 KB
Newer Older
1
/*
2
 * virutil.h: common, generic utility functions
3
 *
4
 * Copyright (C) 2010-2014 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2006, 2007 Binary Karma
 * Copyright (C) 2006 Shuveb Hussain
 *
 * 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
19
 * License along with this library.  If not, see
O
Osier Yang 已提交
20
 * <http://www.gnu.org/licenses/>.
21 22 23 24
 *
 * File created Jul 18, 2007 - Shuveb Hussain <shuveb@binarykarma.com>
 */

25
#ifndef __VIR_UTIL_H__
26
# define __VIR_UTIL_H__
27

28 29 30
# include "internal.h"
# include <unistd.h>
# include <sys/types.h>
31

32 33 34
# ifndef MIN
#  define MIN(a, b) ((a) < (b) ? (a) : (b))
# endif
L
Laine Stump 已提交
35 36 37
# ifndef MAX
#  define MAX(a, b) ((a) > (b) ? (a) : (b))
# endif
38

J
Ján Tomko 已提交
39

40
int virSetBlocking(int fd, bool blocking) ATTRIBUTE_RETURN_CHECK;
41
int virSetNonBlock(int fd) ATTRIBUTE_RETURN_CHECK;
E
Eric Blake 已提交
42
int virSetInherit(int fd, bool inherit) ATTRIBUTE_RETURN_CHECK;
43
int virSetCloseExec(int fd) ATTRIBUTE_RETURN_CHECK;
44
int virSetSockReuseAddr(int fd, bool fatal) ATTRIBUTE_RETURN_CHECK;
45

46 47
int virPipeReadUntilEOF(int outfd, int errfd,
                        char **outbuf, char **errbuf);
48

49 50 51
int virSetUIDGID(uid_t uid, gid_t gid, gid_t *groups, int ngroups);
int virSetUIDGIDWithCaps(uid_t uid, gid_t gid, gid_t *groups, int ngroups,
                         unsigned long long capBits,
52
                         bool clearExistingCaps);
L
Laine Stump 已提交
53

J
John Ferlan 已提交
54 55
void virWaitForDevices(void);

56 57 58 59
int virScaleInteger(unsigned long long *value, const char *suffix,
                    unsigned long long scale, unsigned long long limit)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;

60 61
int virHexToBin(unsigned char c);

62
int virParseNumber(const char **str);
63 64
int virParseVersionString(const char *str, unsigned long *version,
                          bool allowMissing);
65

D
Daniel P. Berrange 已提交
66 67
char *virFormatIntDecimal(char *buf, size_t buflen, int val)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_RETURN_CHECK;
68

69 70 71 72
unsigned long long
virFormatIntPretty(unsigned long long val,
                   const char **unit);

73
int virDiskNameParse(const char *name, int *disk, int *partition);
74
int virDiskNameToIndex(const char* str);
75
char *virIndexToDiskName(int idx, const char *prefix);
76 77 78 79 80 81 82 83 84

int virEnumFromString(const char *const*types,
                      unsigned int ntypes,
                      const char *type);

const char *virEnumToString(const char *const*types,
                            unsigned int ntypes,
                            int type);

85 86 87 88 89 90 91 92 93 94 95 96
# define VIR_ENUM_IMPL(name, lastVal, ...) \
    static const char *const name ## TypeList[] = { __VA_ARGS__ }; \
    verify(ARRAY_CARDINALITY(name ## TypeList) == lastVal); \
    const char *name ## TypeToString(int type) { \
        return virEnumToString(name ## TypeList, \
                               ARRAY_CARDINALITY(name ## TypeList), \
                               type); \
    } \
    int name ## TypeFromString(const char *type) { \
        return virEnumFromString(name ## TypeList, \
                                 ARRAY_CARDINALITY(name ## TypeList), \
                                 type); \
97 98
    }

99 100
# define VIR_ENUM_DECL(name) \
    const char *name ## TypeToString(int type); \
101 102
    int name ## TypeFromString(const char*type);

103
/* No-op workarounds for functionality missing in mingw.  */
104
# ifndef HAVE_GETUID
105 106
static inline int getuid(void)
{ return 0; }
107
# endif
D
Daniel P. Berrange 已提交
108

109
# ifndef HAVE_GETEUID
110 111
static inline int geteuid(void)
{ return 0; }
112 113
# endif

114
# ifndef HAVE_GETGID
115 116
static inline int getgid(void)
{ return 0; }
117
# endif
D
Daniel P. Berrange 已提交
118

119
# ifndef HAVE_GETEGID
120 121
static inline int getegid(void)
{ return 0; }
122 123 124 125 126 127 128 129 130 131 132 133 134
# endif

# ifdef FUNC_PTHREAD_SIGMASK_BROKEN
#  undef pthread_sigmask
static inline int pthread_sigmask(int how,
                                  const void *set,
                                  void *old)
{
    (void) how;
    (void) set;
    (void) old;
    return 0;
}
135 136
# endif

137
char *virGetHostname(void);
138
char *virGetHostnameQuiet(void);
139

140
char *virGetUserDirectory(void);
D
Dan Walsh 已提交
141
char *virGetUserDirectoryByUID(uid_t uid);
142 143 144
char *virGetUserConfigDirectory(void);
char *virGetUserCacheDirectory(void);
char *virGetUserRuntimeDirectory(void);
145
char *virGetUserShell(uid_t uid);
146 147
char *virGetUserName(uid_t uid) ATTRIBUTE_NOINLINE;
char *virGetGroupName(gid_t gid) ATTRIBUTE_NOINLINE;
E
Eric Blake 已提交
148 149
int virGetGroupList(uid_t uid, gid_t group, gid_t **groups)
    ATTRIBUTE_NONNULL(3);
150
int virGetUserID(const char *name,
151
                 uid_t *uid) ATTRIBUTE_RETURN_CHECK;
152
int virGetGroupID(const char *name,
153
                  gid_t *gid) ATTRIBUTE_RETURN_CHECK;
154

155 156
bool virDoesUserExist(const char *name);
bool virDoesGroupExist(const char *name);
157 158


159
bool virIsDevMapperDevice(const char *dev_name) ATTRIBUTE_NONNULL(1);
160

O
Osier Yang 已提交
161 162
bool virValidateWWN(const char *wwn);

163 164 165 166 167 168 169 170 171
int virGetDeviceID(const char *path,
                   int *maj,
                   int *min);
int virSetDeviceUnprivSGIO(const char *path,
                           const char *sysfs_dir,
                           int unpriv_sgio);
int virGetDeviceUnprivSGIO(const char *path,
                           const char *sysfs_dir,
                           int *unpriv_sgio);
172 173
char *virGetUnprivSGIOSysfsPath(const char *path,
                                const char *sysfs_dir);
174

M
Martin Kletzander 已提交
175 176
int virParseOwnershipIds(const char *label, uid_t *uidPtr, gid_t *gidPtr);

177 178 179 180
const char *virGetEnvBlockSUID(const char *name);
const char *virGetEnvAllowSUID(const char *name);
bool virIsSUID(void);

181 182 183 184

time_t virGetSelfLastChanged(void);
void virUpdateSelfLastChanged(const char *path);

J
Ján Tomko 已提交
185 186 187 188 189 190 191 192
typedef enum {
    VIR_TRISTATE_BOOL_ABSENT = 0,
    VIR_TRISTATE_BOOL_YES,
    VIR_TRISTATE_BOOL_NO,

    VIR_TRISTATE_BOOL_LAST
} virTristateBool;

J
Ján Tomko 已提交
193 194 195 196 197 198 199 200
typedef enum {
    VIR_TRISTATE_SWITCH_ABSENT = 0,
    VIR_TRISTATE_SWITCH_ON,
    VIR_TRISTATE_SWITCH_OFF,

    VIR_TRISTATE_SWITCH_LAST
} virTristateSwitch;

J
Ján Tomko 已提交
201
VIR_ENUM_DECL(virTristateBool)
J
Ján Tomko 已提交
202
VIR_ENUM_DECL(virTristateSwitch)
J
Ján Tomko 已提交
203

204 205 206
virTristateBool virTristateBoolFromBool(bool val);
virTristateSwitch virTristateSwitchFromBool(bool val);

207 208 209 210 211 212
/* the two enums must be in sync to be able to use helpers interchangeably in
 * some special cases */
verify((int)VIR_TRISTATE_BOOL_YES == (int)VIR_TRISTATE_SWITCH_ON);
verify((int)VIR_TRISTATE_BOOL_NO == (int)VIR_TRISTATE_SWITCH_OFF);
verify((int)VIR_TRISTATE_BOOL_ABSENT == (int)VIR_TRISTATE_SWITCH_ABSENT);

213
unsigned int virGetListenFDs(void);
214
char *virGetUNIXSocketPath(int fd);
215

216 217
long virGetSystemPageSize(void) ATTRIBUTE_NOINLINE;
long virGetSystemPageSizeKB(void) ATTRIBUTE_NOINLINE;
218

219 220
unsigned long long virMemoryLimitTruncate(unsigned long long value);
bool virMemoryLimitIsSet(unsigned long long value);
221
unsigned long long virMemoryMaxValue(bool ulong) ATTRIBUTE_NOINLINE;
222

223 224
bool virHostHasIOMMU(void);

225 226
char *virHostGetDRMRenderNode(void);

227 228 229 230 231 232 233 234
/**
 * VIR_ASSIGN_IS_OVERFLOW:
 * @rvalue: value that is checked (evaluated twice)
 * @lvalue: value that the check is against (used in typeof())
 *
 * This macro assigns @lvalue to @rvalue and evaluates as true if the value of
 * @rvalue did not fit into the @lvalue.
 */
235
# define VIR_ASSIGN_IS_OVERFLOW(lvalue, rvalue) \
236 237
    (((lvalue) = (rvalue)) != (rvalue))

238
#endif /* __VIR_UTIL_H__ */