util.h 10.7 KB
Newer Older
1 2 3
/*
 * utils.h: common, generic utility functions
 *
4
 * Copyright (C) 2010-2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * File created Jul 18, 2007 - Shuveb Hussain <shuveb@binarykarma.com>
 */

25
#ifndef __VIR_UTIL_H__
26
# define __VIR_UTIL_H__
27

28 29 30 31 32
# include "verify.h"
# include "internal.h"
# include <unistd.h>
# include <sys/select.h>
# include <sys/types.h>
E
Eric Blake 已提交
33
# include <stdarg.h>
34

35 36 37 38
# ifndef MIN
#  define MIN(a, b) ((a) < (b) ? (a) : (b))
# endif

E
Eric Blake 已提交
39
ssize_t saferead(int fd, void *buf, size_t count) ATTRIBUTE_RETURN_CHECK;
40 41 42 43
ssize_t safewrite(int fd, const void *buf, size_t count)
    ATTRIBUTE_RETURN_CHECK;
int safezero(int fd, int flags, off_t offset, off_t len)
    ATTRIBUTE_RETURN_CHECK;
D
Daniel P. Berrange 已提交
44

45 46 47 48
enum {
    VIR_EXEC_NONE   = 0,
    VIR_EXEC_NONBLOCK = (1 << 0),
    VIR_EXEC_DAEMON = (1 << 1),
49
    VIR_EXEC_CLEAR_CAPS = (1 << 2),
50 51
};

52
int virSetBlocking(int fd, bool blocking) ATTRIBUTE_RETURN_CHECK;
53
int virSetNonBlock(int fd) ATTRIBUTE_RETURN_CHECK;
E
Eric Blake 已提交
54
int virSetInherit(int fd, bool inherit) ATTRIBUTE_RETURN_CHECK;
55
int virSetCloseExec(int fd) ATTRIBUTE_RETURN_CHECK;
56

57 58 59 60
/* This will execute in the context of the first child
 * after fork() but before execve() */
typedef int (*virExecHook)(void *data);

61
int virExecDaemonize(const char *const*argv,
62 63 64 65 66 67
                     const char *const*envp,
                     const fd_set *keepfd,
                     pid_t *retpid,
                     int infd, int *outfd, int *errfd,
                     int flags,
                     virExecHook hook,
68
                     void *data,
69
                     char *pidfile) ATTRIBUTE_RETURN_CHECK;
70
int virExecWithHook(const char *const*argv,
71 72 73 74 75 76 77 78
                    const char *const*envp,
                    const fd_set *keepfd,
                    int *retpid,
                    int infd,
                    int *outfd,
                    int *errfd,
                    int flags,
                    virExecHook hook,
79
                    void *data,
80
                    char *pidfile) ATTRIBUTE_RETURN_CHECK;
81
int virExec(const char *const*argv,
82
            const char *const*envp,
83
            const fd_set *keepfd,
84
            pid_t *retpid,
85 86 87
            int infd,
            int *outfd,
            int *errfd,
88
            int flags) ATTRIBUTE_RETURN_CHECK;
89 90
int virRun(const char *const*argv, int *status) ATTRIBUTE_RETURN_CHECK;
int virRunWithHook(const char *const*argv,
L
Laine Stump 已提交
91 92
                   virExecHook hook, void *data,
                   int *status) ATTRIBUTE_RETURN_CHECK;
93 94
int virPipeReadUntilEOF(int outfd, int errfd,
                        char **outbuf, char **errbuf);
L
Laine Stump 已提交
95
int virFork(pid_t *pid);
96

L
Laine Stump 已提交
97 98
int virSetUIDGID(uid_t uid, gid_t gid);

99
int virFileReadLimFD(int fd, int maxlen, char **buf) ATTRIBUTE_RETURN_CHECK;
100

101
int virFileReadAll(const char *path, int maxlen, char **buf) ATTRIBUTE_RETURN_CHECK;
102

103 104
int virFileWriteStr(const char *path, const char *str, mode_t mode)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_RETURN_CHECK;
M
Mark McLoughlin 已提交
105

106 107 108 109 110 111 112
int virFileMatchesNameSuffix(const char *file,
                             const char *name,
                             const char *suffix);

int virFileHasSuffix(const char *str,
                     const char *suffix);

113
int virFileStripSuffix(char *str,
114
                       const char *suffix) ATTRIBUTE_RETURN_CHECK;
115

116 117
int virFileLinkPointsTo(const char *checkLink,
                        const char *checkDest);
118

D
Daniel P. Berrange 已提交
119
int virFileResolveLink(const char *linkpath,
120
                       char **resultpath) ATTRIBUTE_RETURN_CHECK;
D
Daniel P. Berrange 已提交
121

122 123
char *virFindFileInPath(const char *file);

124 125
bool virFileExists(const char *file) ATTRIBUTE_NONNULL(1);
bool virFileIsExecutable(const char *file) ATTRIBUTE_NONNULL(1);
126

127 128
char *virFileSanitizePath(const char *path);

129
enum {
130 131 132
    VIR_FILE_OP_NONE        = 0,
    VIR_FILE_OP_AS_UID      = (1 << 0),
    VIR_FILE_OP_FORCE_PERMS = (1 << 1),
133
};
134 135 136 137 138
typedef int (*virFileOperationHook)(int fd, void *data);
int virFileOperation(const char *path, int openflags, mode_t mode,
                     uid_t uid, gid_t gid,
                     virFileOperationHook hook, void *hookdata,
                     unsigned int flags) ATTRIBUTE_RETURN_CHECK;
139

140 141 142 143 144 145
enum {
    VIR_DIR_CREATE_NONE        = 0,
    VIR_DIR_CREATE_AS_UID      = (1 << 0),
    VIR_DIR_CREATE_FORCE_PERMS = (1 << 1),
    VIR_DIR_CREATE_ALLOW_EXIST = (1 << 2),
};
146 147
int virDirCreate(const char *path, mode_t mode, uid_t uid, gid_t gid,
                 unsigned int flags) ATTRIBUTE_RETURN_CHECK;
148
int virFileMakePath(const char *path) ATTRIBUTE_RETURN_CHECK;
149 150 151 152 153

int virFileBuildPath(const char *dir,
                     const char *name,
                     const char *ext,
                     char *buf,
154
                     unsigned int buflen) ATTRIBUTE_RETURN_CHECK;
155

A
Amy Griffis 已提交
156
int virFileAbsPath(const char *path,
157
                   char **abspath) ATTRIBUTE_RETURN_CHECK;
A
Amy Griffis 已提交
158

159 160 161
int virFileOpenTty(int *ttymaster,
                   char **ttyName,
                   int rawmode);
162 163 164 165
int virFileOpenTtyAt(const char *ptmx,
                     int *ttymaster,
                     char **ttyName,
                     int rawmode);
166

167 168
char* virFilePid(const char *dir,
                 const char *name);
169

170
int virFileWritePidPath(const char *path,
171
                        pid_t pid) ATTRIBUTE_RETURN_CHECK;
172 173
int virFileWritePid(const char *dir,
                    const char *name,
174
                    pid_t pid) ATTRIBUTE_RETURN_CHECK;
175 176
int virFileReadPid(const char *dir,
                   const char *name,
177
                   pid_t *pid) ATTRIBUTE_RETURN_CHECK;
178 179
int virFileDeletePid(const char *dir,
                     const char *name);
180

181 182
char *virArgvToString(const char *const *argv);

D
Daniel P. Berrange 已提交
183
int virStrToLong_i(char const *s,
184 185 186 187 188 189 190 191
                     char **end_ptr,
                     int base,
                     int *result);

int virStrToLong_ui(char const *s,
                    char **end_ptr,
                    int base,
                    unsigned int *result);
192 193 194 195 196 197 198 199
int virStrToLong_l(char const *s,
                   char **end_ptr,
                   int base,
                   long *result);
int virStrToLong_ul(char const *s,
                    char **end_ptr,
                    int base,
                    unsigned long *result);
200 201 202 203
int virStrToLong_ll(char const *s,
                    char **end_ptr,
                    int base,
                    long long *result);
D
Daniel P. Berrange 已提交
204 205 206 207
int virStrToLong_ull(char const *s,
                     char **end_ptr,
                     int base,
                     unsigned long long *result);
208 209 210
int virStrToDouble(char const *s,
                   char **end_ptr,
                   double *result);
D
Daniel P. Berrange 已提交
211

212 213
int virHexToBin(unsigned char c);

D
Daniel P. Berrange 已提交
214
int virMacAddrCompare (const char *mac1, const char *mac2);
215

216 217
void virSkipSpaces(const char **str);
int virParseNumber(const char **str);
218
int virParseVersionString(const char *str, unsigned long *version);
E
Eric Blake 已提交
219 220 221 222
int virAsprintf(char **strp, const char *fmt, ...)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_FMT_PRINTF(2, 3);
int virVasprintf(char **strp, const char *fmt, va_list list)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_FMT_PRINTF(2, 0);
C
Chris Lalancette 已提交
223 224 225 226
char *virStrncpy(char *dest, const char *src, size_t n, size_t destbytes)
    ATTRIBUTE_RETURN_CHECK;
char *virStrcpy(char *dest, const char *src, size_t destbytes)
    ATTRIBUTE_RETURN_CHECK;
227
# define virStrcpyStatic(dest, src) virStrcpy((dest), (src), sizeof(dest))
228

229 230 231
# define VIR_MAC_BUFLEN 6
# define VIR_MAC_PREFIX_BUFLEN 3
# define VIR_MAC_STRING_BUFLEN VIR_MAC_BUFLEN * 3
232 233

int virParseMacAddr(const char* str,
234
                    unsigned char *addr) ATTRIBUTE_RETURN_CHECK;
235 236 237 238
void virFormatMacAddr(const unsigned char *addr,
                      char *str);
void virGenerateMacAddr(const unsigned char *prefix,
                        unsigned char *addr);
239

240
int virDiskNameToIndex(const char* str);
241
char *virIndexToDiskName(int idx, const char *prefix);
242 243 244 245 246 247 248 249 250

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

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

251
# define VIR_ENUM_IMPL(name, lastVal, ...)                               \
252
    static const char *const name ## TypeList[] = { __VA_ARGS__ };      \
253
    extern int (* name ## Verify (void)) [verify_true (ARRAY_CARDINALITY(name ## TypeList) == lastVal)]; \
254 255 256 257 258 259 260 261 262 263 264
    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);                                 \
    }

265
# define VIR_ENUM_DECL(name)                             \
266 267 268
    const char *name ## TypeToString(int type);         \
    int name ## TypeFromString(const char*type);

269
# ifndef HAVE_GETUID
D
Daniel P. Berrange 已提交
270
static inline int getuid (void) { return 0; }
271
# endif
D
Daniel P. Berrange 已提交
272

273 274 275 276
# ifndef HAVE_GETEUID
static inline int geteuid (void) { return 0; }
# endif

277
# ifndef HAVE_GETGID
D
Daniel P. Berrange 已提交
278
static inline int getgid (void) { return 0; }
279
# endif
D
Daniel P. Berrange 已提交
280

281
char *virGetHostname(virConnectPtr conn);
282

G
Guido Günther 已提交
283 284
int virKillProcess(pid_t pid, int sig);

285 286 287
char *virGetUserDirectory(uid_t uid);
char *virGetUserName(uid_t uid);
int virGetUserID(const char *name,
288
                 uid_t *uid) ATTRIBUTE_RETURN_CHECK;
289
int virGetGroupID(const char *name,
290
                  gid_t *gid) ATTRIBUTE_RETURN_CHECK;
291

292
int virRandomInitialize(unsigned int seed) ATTRIBUTE_RETURN_CHECK;
293 294
int virRandom(int max);

295 296
char *virFileFindMountPoint(const char *type);

297
void virFileWaitForDevices(void);
D
Daniel P. Berrange 已提交
298

299
# define virBuildPath(path, ...) virBuildPathInternal(path, __VA_ARGS__, NULL)
300 301
int virBuildPathInternal(char **path, ...) ATTRIBUTE_SENTINEL;

302 303
char *virTimestamp(void);

304
bool virIsDevMapperDevice(const char *devname) ATTRIBUTE_NONNULL(1);
305
#endif /* __VIR_UTIL_H__ */