util.h 9.5 KB
Newer Older
1

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * utils.h: common, generic utility functions
 *
 * 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>
33

D
Daniel P. Berrange 已提交
34 35
int saferead(int fd, void *buf, size_t count);
ssize_t safewrite(int fd, const void *buf, size_t count);
36
int safezero(int fd, int flags, off_t offset, off_t len);
D
Daniel P. Berrange 已提交
37

38 39 40 41
enum {
    VIR_EXEC_NONE   = 0,
    VIR_EXEC_NONBLOCK = (1 << 0),
    VIR_EXEC_DAEMON = (1 << 1),
42
    VIR_EXEC_CLEAR_CAPS = (1 << 2),
43 44
};

45 46
int virSetNonBlock(int fd) ATTRIBUTE_RETURN_CHECK;
int virSetCloseExec(int fd) ATTRIBUTE_RETURN_CHECK;
47

48 49 50 51
/* This will execute in the context of the first child
 * after fork() but before execve() */
typedef int (*virExecHook)(void *data);

52
int virExecDaemonize(const char *const*argv,
53 54 55 56 57 58
                     const char *const*envp,
                     const fd_set *keepfd,
                     pid_t *retpid,
                     int infd, int *outfd, int *errfd,
                     int flags,
                     virExecHook hook,
59
                     void *data,
60
                     char *pidfile) ATTRIBUTE_RETURN_CHECK;
61
int virExecWithHook(const char *const*argv,
62 63 64 65 66 67 68 69
                    const char *const*envp,
                    const fd_set *keepfd,
                    int *retpid,
                    int infd,
                    int *outfd,
                    int *errfd,
                    int flags,
                    virExecHook hook,
70
                    void *data,
71
                    char *pidfile) ATTRIBUTE_RETURN_CHECK;
72
int virExec(const char *const*argv,
73
            const char *const*envp,
74
            const fd_set *keepfd,
75
            pid_t *retpid,
76 77 78
            int infd,
            int *outfd,
            int *errfd,
79
            int flags) ATTRIBUTE_RETURN_CHECK;
80 81
int virRun(const char *const*argv, int *status) ATTRIBUTE_RETURN_CHECK;
int virRunWithHook(const char *const*argv,
L
Laine Stump 已提交
82 83
                   virExecHook hook, void *data,
                   int *status) ATTRIBUTE_RETURN_CHECK;
84 85
int virPipeReadUntilEOF(int outfd, int errfd,
                        char **outbuf, char **errbuf);
L
Laine Stump 已提交
86
int virFork(pid_t *pid);
87

88
int virFileReadLimFD(int fd, int maxlen, char **buf) ATTRIBUTE_RETURN_CHECK;
89

90
int virFileReadAll(const char *path, int maxlen, char **buf) ATTRIBUTE_RETURN_CHECK;
91

92
int virFileWriteStr(const char *path, const char *str) ATTRIBUTE_RETURN_CHECK;
M
Mark McLoughlin 已提交
93

94 95 96 97 98 99 100
int virFileMatchesNameSuffix(const char *file,
                             const char *name,
                             const char *suffix);

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

101
int virFileStripSuffix(char *str,
102
                       const char *suffix) ATTRIBUTE_RETURN_CHECK;
103

104 105
int virFileLinkPointsTo(const char *checkLink,
                        const char *checkDest);
106

D
Daniel P. Berrange 已提交
107
int virFileResolveLink(const char *linkpath,
108
                       char **resultpath) ATTRIBUTE_RETURN_CHECK;
D
Daniel P. Berrange 已提交
109

110 111
char *virFindFileInPath(const char *file);

112 113
int virFileExists(const char *path);

114
enum {
115 116 117
    VIR_FILE_OP_NONE        = 0,
    VIR_FILE_OP_AS_UID      = (1 << 0),
    VIR_FILE_OP_FORCE_PERMS = (1 << 1),
118
};
119 120 121 122 123
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;
124

125 126 127 128 129 130
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),
};
131 132
int virDirCreate(const char *path, mode_t mode, uid_t uid, gid_t gid,
                 unsigned int flags) ATTRIBUTE_RETURN_CHECK;
133
int virFileMakePath(const char *path) ATTRIBUTE_RETURN_CHECK;
134 135 136 137 138

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

A
Amy Griffis 已提交
141
int virFileAbsPath(const char *path,
142
                   char **abspath) ATTRIBUTE_RETURN_CHECK;
A
Amy Griffis 已提交
143

144 145 146
int virFileOpenTty(int *ttymaster,
                   char **ttyName,
                   int rawmode);
147 148 149 150
int virFileOpenTtyAt(const char *ptmx,
                     int *ttymaster,
                     char **ttyName,
                     int rawmode);
151

152 153
char* virFilePid(const char *dir,
                 const char *name);
154
int virFileWritePidPath(const char *path,
155
                        pid_t pid) ATTRIBUTE_RETURN_CHECK;
156 157
int virFileWritePid(const char *dir,
                    const char *name,
158
                    pid_t pid) ATTRIBUTE_RETURN_CHECK;
159 160
int virFileReadPid(const char *dir,
                   const char *name,
161
                   pid_t *pid) ATTRIBUTE_RETURN_CHECK;
162 163
int virFileDeletePid(const char *dir,
                     const char *name);
164

165 166
char *virArgvToString(const char *const *argv);

D
Daniel P. Berrange 已提交
167
int virStrToLong_i(char const *s,
168 169 170 171 172 173 174 175 176 177 178 179
                     char **end_ptr,
                     int base,
                     int *result);

int virStrToLong_ui(char const *s,
                    char **end_ptr,
                    int base,
                    unsigned int *result);
int virStrToLong_ll(char const *s,
                    char **end_ptr,
                    int base,
                    long long *result);
D
Daniel P. Berrange 已提交
180 181 182 183
int virStrToLong_ull(char const *s,
                     char **end_ptr,
                     int base,
                     unsigned long long *result);
184 185 186
int virStrToDouble(char const *s,
                   char **end_ptr,
                   double *result);
D
Daniel P. Berrange 已提交
187 188

int virMacAddrCompare (const char *mac1, const char *mac2);
189

190 191
void virSkipSpaces(const char **str);
int virParseNumber(const char **str);
192
int virAsprintf(char **strp, const char *fmt, ...) ATTRIBUTE_FMT_PRINTF(2, 3);
C
Chris Lalancette 已提交
193 194 195 196
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;
197
# define virStrcpyStatic(dest, src) virStrcpy((dest), (src), sizeof(dest))
198

199 200 201
# define VIR_MAC_BUFLEN 6
# define VIR_MAC_PREFIX_BUFLEN 3
# define VIR_MAC_STRING_BUFLEN VIR_MAC_BUFLEN * 3
202 203

int virParseMacAddr(const char* str,
204
                    unsigned char *addr) ATTRIBUTE_RETURN_CHECK;
205 206 207 208
void virFormatMacAddr(const unsigned char *addr,
                      char *str);
void virGenerateMacAddr(const unsigned char *prefix,
                        unsigned char *addr);
209

210
int virDiskNameToIndex(const char* str);
211
char *virIndexToDiskName(int idx, const char *prefix);
212 213 214 215 216 217 218 219 220

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

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

221
# define VIR_ENUM_IMPL(name, lastVal, ...)                               \
222
    static const char *const name ## TypeList[] = { __VA_ARGS__ };      \
223
    extern int (* name ## Verify (void)) [verify_true (ARRAY_CARDINALITY(name ## TypeList) == lastVal)]; \
224 225 226 227 228 229 230 231 232 233 234
    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);                                 \
    }

235
# define VIR_ENUM_DECL(name)                             \
236 237 238
    const char *name ## TypeToString(int type);         \
    int name ## TypeFromString(const char*type);

239
# ifndef HAVE_GETUID
D
Daniel P. Berrange 已提交
240
static inline int getuid (void) { return 0; }
241
# endif
D
Daniel P. Berrange 已提交
242

243
# ifndef HAVE_GETGID
D
Daniel P. Berrange 已提交
244
static inline int getgid (void) { return 0; }
245
# endif
D
Daniel P. Berrange 已提交
246

247
char *virGetHostnameLocalhost(int allow_localhost);
248
char *virGetHostname(virConnectPtr conn);
249

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

252 253 254
char *virGetUserDirectory(uid_t uid);
char *virGetUserName(uid_t uid);
int virGetUserID(const char *name,
255
                 uid_t *uid) ATTRIBUTE_RETURN_CHECK;
256
int virGetGroupID(const char *name,
257
                  gid_t *gid) ATTRIBUTE_RETURN_CHECK;
258

259
int virRandomInitialize(unsigned int seed) ATTRIBUTE_RETURN_CHECK;
260 261
int virRandom(int max);

262 263
char *virFileFindMountPoint(const char *type);

264
void virFileWaitForDevices(void);
D
Daniel P. Berrange 已提交
265

266
# define virBuildPath(path, ...) virBuildPathInternal(path, __VA_ARGS__, NULL)
267 268
int virBuildPathInternal(char **path, ...) ATTRIBUTE_SENTINEL;

269
#endif /* __VIR_UTIL_H__ */