virutil.h 7.1 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
int virDiskNameParse(const char *name, int *disk, int *partition);
70
int virDiskNameToIndex(const char* str);
71
char *virIndexToDiskName(int idx, const char *prefix);
72 73 74 75 76 77 78 79 80

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

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

81 82 83 84 85 86 87 88 89 90 91 92
# 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); \
93 94
    }

95 96
# define VIR_ENUM_DECL(name) \
    const char *name ## TypeToString(int type); \
97 98
    int name ## TypeFromString(const char*type);

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

105
# ifndef HAVE_GETEUID
106 107
static inline int geteuid(void)
{ return 0; }
108 109
# endif

110
# ifndef HAVE_GETGID
111 112
static inline int getgid(void)
{ return 0; }
113
# endif
D
Daniel P. Berrange 已提交
114

115
# ifndef HAVE_GETEGID
116 117
static inline int getegid(void)
{ return 0; }
118 119 120 121 122 123 124 125 126 127 128 129 130
# 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;
}
131 132
# endif

133
char *virGetHostname(void);
134
char *virGetHostnameQuiet(void);
135

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

151
bool virIsDevMapperDevice(const char *dev_name) ATTRIBUTE_NONNULL(1);
152

O
Osier Yang 已提交
153 154
bool virValidateWWN(const char *wwn);

155 156 157 158 159 160 161 162 163
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);
164 165
char *virGetUnprivSGIOSysfsPath(const char *path,
                                const char *sysfs_dir);
166

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

169 170 171 172
const char *virGetEnvBlockSUID(const char *name);
const char *virGetEnvAllowSUID(const char *name);
bool virIsSUID(void);

173 174 175 176

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

J
Ján Tomko 已提交
177 178 179 180 181 182 183 184
typedef enum {
    VIR_TRISTATE_BOOL_ABSENT = 0,
    VIR_TRISTATE_BOOL_YES,
    VIR_TRISTATE_BOOL_NO,

    VIR_TRISTATE_BOOL_LAST
} virTristateBool;

J
Ján Tomko 已提交
185 186 187 188 189 190 191 192
typedef enum {
    VIR_TRISTATE_SWITCH_ABSENT = 0,
    VIR_TRISTATE_SWITCH_ON,
    VIR_TRISTATE_SWITCH_OFF,

    VIR_TRISTATE_SWITCH_LAST
} virTristateSwitch;

J
Ján Tomko 已提交
193
VIR_ENUM_DECL(virTristateBool)
J
Ján Tomko 已提交
194
VIR_ENUM_DECL(virTristateSwitch)
J
Ján Tomko 已提交
195

196 197 198
virTristateBool virTristateBoolFromBool(bool val);
virTristateSwitch virTristateSwitchFromBool(bool val);

199 200 201 202 203 204
/* 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);

205 206
unsigned int virGetListenFDs(void);

207 208
long virGetSystemPageSize(void) ATTRIBUTE_NOINLINE;
long virGetSystemPageSizeKB(void) ATTRIBUTE_NOINLINE;
209

210 211
unsigned long long virMemoryLimitTruncate(unsigned long long value);
bool virMemoryLimitIsSet(unsigned long long value);
212
unsigned long long virMemoryMaxValue(bool ulong) ATTRIBUTE_NOINLINE;
213

214 215 216 217 218 219 220 221
/**
 * 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.
 */
222
# define VIR_ASSIGN_IS_OVERFLOW(lvalue, rvalue) \
223 224
    (((lvalue) = (rvalue)) != (rvalue))

225
#endif /* __VIR_UTIL_H__ */