util.h 7.8 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 26 27
#ifndef __VIR_UTIL_H__
#define __VIR_UTIL_H__

28
#include "verify.h"
29
#include <sys/select.h>
30
#include <sys/types.h>
31

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

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

43
int virSetNonBlock(int fd);
44
int virSetCloseExec(int fd);
45

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

50 51 52 53 54 55 56 57
int virExecDaemonize(virConnectPtr conn,
                     const char *const*argv,
                     const char *const*envp,
                     const fd_set *keepfd,
                     pid_t *retpid,
                     int infd, int *outfd, int *errfd,
                     int flags,
                     virExecHook hook,
58 59
                     void *data,
                     char *pidfile);
60 61 62 63 64 65 66 67 68 69
int virExecWithHook(virConnectPtr conn,
                    const char *const*argv,
                    const char *const*envp,
                    const fd_set *keepfd,
                    int *retpid,
                    int infd,
                    int *outfd,
                    int *errfd,
                    int flags,
                    virExecHook hook,
70 71
                    void *data,
                    char *pidfile);
72 73 74
int virExec(virConnectPtr conn,
            const char *const*argv,
            const char *const*envp,
75
            const fd_set *keepfd,
76
            pid_t *retpid,
77 78 79 80
            int infd,
            int *outfd,
            int *errfd,
            int flags);
81
int virRun(virConnectPtr conn, const char *const*argv, int *status);
82

D
Daniel P. Berrange 已提交
83
int virFileReadLimFD(int fd, int maxlen, char **buf);
84

D
Daniel P. Berrange 已提交
85
int virFileReadAll(const char *path, int maxlen, char **buf);
86

M
Mark McLoughlin 已提交
87 88
int virFileWriteStr(const char *path, const char *str);

89 90 91 92 93 94 95
int virFileMatchesNameSuffix(const char *file,
                             const char *name,
                             const char *suffix);

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

96 97 98
int virFileStripSuffix(char *str,
                       const char *suffix);

99 100
int virFileLinkPointsTo(const char *checkLink,
                        const char *checkDest);
101

D
Daniel P. Berrange 已提交
102 103 104
int virFileResolveLink(const char *linkpath,
                       char **resultpath);

105 106
char *virFindFileInPath(const char *file);

107 108
int virFileExists(const char *path);

109 110 111 112 113 114 115 116
int virFileMakePath(const char *path);

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

117 118 119
int virFileOpenTty(int *ttymaster,
                   char **ttyName,
                   int rawmode);
120 121 122 123
int virFileOpenTtyAt(const char *ptmx,
                     int *ttymaster,
                     char **ttyName,
                     int rawmode);
124

125 126
char* virFilePid(const char *dir,
                 const char *name);
127 128
int virFileWritePidPath(const char *path,
                        pid_t pid);
129 130 131 132 133 134 135 136
int virFileWritePid(const char *dir,
                    const char *name,
                    pid_t pid);
int virFileReadPid(const char *dir,
                   const char *name,
                   pid_t *pid);
int virFileDeletePid(const char *dir,
                     const char *name);
137

138 139
char *virArgvToString(const char *const *argv);

D
Daniel P. Berrange 已提交
140
int virStrToLong_i(char const *s,
141 142 143 144 145 146 147 148 149 150 151 152
                     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 已提交
153 154 155 156
int virStrToLong_ull(char const *s,
                     char **end_ptr,
                     int base,
                     unsigned long long *result);
157 158 159
int virStrToDouble(char const *s,
                   char **end_ptr,
                   double *result);
D
Daniel P. Berrange 已提交
160 161

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

163 164
void virSkipSpaces(const char **str);
int virParseNumber(const char **str);
165
int virAsprintf(char **strp, const char *fmt, ...)
166
    ATTRIBUTE_FMT_PRINTF(2, 3);
167

168 169 170 171 172 173 174 175 176 177
#define VIR_MAC_BUFLEN 6
#define VIR_MAC_PREFIX_BUFLEN 3
#define VIR_MAC_STRING_BUFLEN VIR_MAC_BUFLEN * 3

int virParseMacAddr(const char* str,
                    unsigned char *addr);
void virFormatMacAddr(const unsigned char *addr,
                      char *str);
void virGenerateMacAddr(const unsigned char *prefix,
                        unsigned char *addr);
178

179 180
int virDiskNameToIndex(const char* str);

181 182 183 184 185 186 187 188 189 190

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

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

#define VIR_ENUM_IMPL(name, lastVal, ...)                               \
191
    static const char *const name ## TypeList[] = { __VA_ARGS__ };      \
192
    extern int (* name ## Verify (void)) [verify_true (ARRAY_CARDINALITY(name ## TypeList) == lastVal)]; \
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
    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);                                 \
    }

#define VIR_ENUM_DECL(name)                             \
    const char *name ## TypeToString(int type);         \
    int name ## TypeFromString(const char*type);

D
Daniel P. Berrange 已提交
208 209 210 211 212 213 214 215
#ifndef HAVE_GETUID
static inline int getuid (void) { return 0; }
#endif

#ifndef HAVE_GETGID
static inline int getgid (void) { return 0; }
#endif

216 217
char *virGetHostname(void);

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

220 221 222
#ifdef HAVE_GETPWUID_R
char *virGetUserDirectory(virConnectPtr conn,
                          uid_t uid);
223 224
char *virGetUserName(virConnectPtr conn,
                     uid_t uid);
225 226 227 228 229 230
int virGetUserID(virConnectPtr conn,
                 const char *name,
                 uid_t *uid);
int virGetGroupID(virConnectPtr conn,
                  const char *name,
                  gid_t *gid);
231 232
#endif

233 234 235
int virRandomInitialize(unsigned int seed);
int virRandom(int max);

236 237 238 239
#ifdef HAVE_MNTENT_H
char *virFileFindMountPoint(const char *type);
#endif

D
Daniel P. Berrange 已提交
240 241
void virFileWaitForDevices(virConnectPtr conn);

242
#endif /* __VIR_UTIL_H__ */