2008-10-24 11:20:08 +00:00
|
|
|
|
2007-07-19 16:22:40 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
2007-12-03 14:30:46 +00:00
|
|
|
#ifndef __VIR_UTIL_H__
|
|
|
|
#define __VIR_UTIL_H__
|
|
|
|
|
2008-06-24 15:00:15 +00:00
|
|
|
#include "verify.h"
|
2009-09-25 13:20:12 +00:00
|
|
|
#include "internal.h"
|
2008-08-27 11:42:52 +00:00
|
|
|
#include <sys/select.h>
|
2008-12-18 11:58:28 +00:00
|
|
|
#include <sys/types.h>
|
2007-12-03 14:30:46 +00:00
|
|
|
|
2008-11-17 11:03:25 +00:00
|
|
|
int saferead(int fd, void *buf, size_t count);
|
|
|
|
ssize_t safewrite(int fd, const void *buf, size_t count);
|
2009-03-20 12:17:56 +00:00
|
|
|
int safezero(int fd, int flags, off_t offset, off_t len);
|
2008-11-17 11:03:25 +00:00
|
|
|
|
2008-08-20 09:24:14 +00:00
|
|
|
enum {
|
|
|
|
VIR_EXEC_NONE = 0,
|
|
|
|
VIR_EXEC_NONBLOCK = (1 << 0),
|
|
|
|
VIR_EXEC_DAEMON = (1 << 1),
|
2009-06-29 17:00:52 +00:00
|
|
|
VIR_EXEC_CLEAR_CAPS = (1 << 2),
|
2008-08-20 09:24:14 +00:00
|
|
|
};
|
|
|
|
|
2009-01-20 16:36:34 +00:00
|
|
|
int virSetNonBlock(int fd);
|
2009-02-05 16:27:17 +00:00
|
|
|
int virSetCloseExec(int fd);
|
2009-01-20 16:36:34 +00:00
|
|
|
|
2009-02-26 16:27:51 +00:00
|
|
|
/* This will execute in the context of the first child
|
|
|
|
* after fork() but before execve() */
|
|
|
|
typedef int (*virExecHook)(void *data);
|
|
|
|
|
2009-05-11 13:34:37 +00:00
|
|
|
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,
|
2009-05-11 13:50:38 +00:00
|
|
|
void *data,
|
|
|
|
char *pidfile);
|
2009-02-26 16:27:51 +00:00
|
|
|
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,
|
2009-05-11 13:50:38 +00:00
|
|
|
void *data,
|
|
|
|
char *pidfile);
|
2008-08-20 09:24:14 +00:00
|
|
|
int virExec(virConnectPtr conn,
|
|
|
|
const char *const*argv,
|
|
|
|
const char *const*envp,
|
2008-08-27 11:42:52 +00:00
|
|
|
const fd_set *keepfd,
|
2008-12-18 11:58:28 +00:00
|
|
|
pid_t *retpid,
|
2008-08-20 09:24:14 +00:00
|
|
|
int infd,
|
|
|
|
int *outfd,
|
|
|
|
int *errfd,
|
|
|
|
int flags);
|
2008-08-08 15:43:38 +00:00
|
|
|
int virRun(virConnectPtr conn, const char *const*argv, int *status);
|
2007-07-19 16:22:40 +00:00
|
|
|
|
2008-11-17 11:03:25 +00:00
|
|
|
int virFileReadLimFD(int fd, int maxlen, char **buf);
|
2008-09-02 10:29:51 +00:00
|
|
|
|
2008-11-17 11:03:25 +00:00
|
|
|
int virFileReadAll(const char *path, int maxlen, char **buf);
|
2007-12-03 14:30:46 +00:00
|
|
|
|
2009-02-13 19:13:06 +00:00
|
|
|
int virFileWriteStr(const char *path, const char *str);
|
|
|
|
|
2007-12-03 14:30:46 +00:00
|
|
|
int virFileMatchesNameSuffix(const char *file,
|
|
|
|
const char *name,
|
|
|
|
const char *suffix);
|
|
|
|
|
|
|
|
int virFileHasSuffix(const char *str,
|
|
|
|
const char *suffix);
|
|
|
|
|
2008-08-20 19:42:36 +00:00
|
|
|
int virFileStripSuffix(char *str,
|
|
|
|
const char *suffix);
|
|
|
|
|
2007-12-03 14:30:46 +00:00
|
|
|
int virFileLinkPointsTo(const char *checkLink,
|
|
|
|
const char *checkDest);
|
2008-02-26 07:05:18 +00:00
|
|
|
|
2009-04-01 10:26:22 +00:00
|
|
|
int virFileResolveLink(const char *linkpath,
|
|
|
|
char **resultpath);
|
|
|
|
|
2009-06-11 13:18:56 +00:00
|
|
|
char *virFindFileInPath(const char *file);
|
|
|
|
|
2008-02-26 07:05:18 +00:00
|
|
|
int virFileExists(const char *path);
|
|
|
|
|
2007-12-03 14:30:46 +00:00
|
|
|
int virFileMakePath(const char *path);
|
|
|
|
|
|
|
|
int virFileBuildPath(const char *dir,
|
|
|
|
const char *name,
|
|
|
|
const char *ext,
|
|
|
|
char *buf,
|
|
|
|
unsigned int buflen);
|
|
|
|
|
2008-08-13 10:52:15 +00:00
|
|
|
int virFileOpenTty(int *ttymaster,
|
|
|
|
char **ttyName,
|
|
|
|
int rawmode);
|
2009-04-22 14:26:50 +00:00
|
|
|
int virFileOpenTtyAt(const char *ptmx,
|
|
|
|
int *ttymaster,
|
|
|
|
char **ttyName,
|
|
|
|
int rawmode);
|
2008-08-13 10:52:15 +00:00
|
|
|
|
2008-12-18 15:22:49 +00:00
|
|
|
char* virFilePid(const char *dir,
|
|
|
|
const char *name);
|
2009-05-11 13:50:38 +00:00
|
|
|
int virFileWritePidPath(const char *path,
|
|
|
|
pid_t pid);
|
2008-08-13 10:52:15 +00:00
|
|
|
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);
|
2007-12-03 14:30:46 +00:00
|
|
|
|
2008-11-05 18:22:10 +00:00
|
|
|
char *virArgvToString(const char *const *argv);
|
|
|
|
|
2008-11-17 11:03:25 +00:00
|
|
|
int virStrToLong_i(char const *s,
|
2008-02-08 09:15:16 +00:00
|
|
|
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);
|
2008-11-17 11:03:25 +00:00
|
|
|
int virStrToLong_ull(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
int base,
|
|
|
|
unsigned long long *result);
|
2009-07-09 13:11:21 +00:00
|
|
|
int virStrToDouble(char const *s,
|
|
|
|
char **end_ptr,
|
|
|
|
double *result);
|
2008-11-17 11:03:25 +00:00
|
|
|
|
|
|
|
int virMacAddrCompare (const char *mac1, const char *mac2);
|
2008-02-27 16:14:44 +00:00
|
|
|
|
2008-02-27 04:35:08 +00:00
|
|
|
void virSkipSpaces(const char **str);
|
|
|
|
int virParseNumber(const char **str);
|
2008-12-17 17:22:43 +00:00
|
|
|
int virAsprintf(char **strp, const char *fmt, ...)
|
Fix misc Win32 compile warnings
GCC >= 4.4 assumes the 'printf' attribute refers to the native
runtime libraries format specifiers. Thanks to gnulib, libvirt
has GNU format specifiers everywhere. This means we need to
use 'gnu_printf' with GCC >= 4.4 to get correct compiler
checking of printf format specifiers.
* HACKING: Document new rules for ATTRIBUTE_FMT_PRINTF
* autobuild.sh, mingw32-libvirt.spec.in: Disable OpenNebula
driver on mingw32 builds
* qemud/dispatch.h, qemud/qemu.h, src/buf.h src/internal.h,
src/logging.h, src/security.h, src/sexpr.h, src/util.h,
src/virterror_internal.h, src/xend_internal.c: Change
over to ATTRIBUTE_FMT_PRINTF.
* src/virsh.c: Disable 'cd' and 'pwd' commands on Win32
since they don't compile
* src/threads-win32.c: Add missing return value check
2009-07-23 15:07:32 +00:00
|
|
|
ATTRIBUTE_FMT_PRINTF(2, 3);
|
2009-08-03 12:37:44 +00:00
|
|
|
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;
|
|
|
|
#define virStrcpyStatic(dest, src) virStrcpy((dest), (src), sizeof(dest))
|
2008-02-27 04:35:08 +00:00
|
|
|
|
2008-10-24 11:20:08 +00:00
|
|
|
#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);
|
2008-03-20 11:24:30 +00:00
|
|
|
|
2008-05-09 16:41:19 +00:00
|
|
|
int virDiskNameToIndex(const char* str);
|
|
|
|
|
2008-06-24 15:00:15 +00:00
|
|
|
|
|
|
|
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, ...) \
|
2009-02-03 13:08:59 +00:00
|
|
|
static const char *const name ## TypeList[] = { __VA_ARGS__ }; \
|
2008-07-11 16:23:36 +00:00
|
|
|
extern int (* name ## Verify (void)) [verify_true (ARRAY_CARDINALITY(name ## TypeList) == lastVal)]; \
|
2008-06-24 15:00:15 +00:00
|
|
|
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);
|
|
|
|
|
2008-09-05 12:03:45 +00:00
|
|
|
#ifndef HAVE_GETUID
|
|
|
|
static inline int getuid (void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_GETGID
|
|
|
|
static inline int getgid (void) { return 0; }
|
|
|
|
#endif
|
|
|
|
|
2009-01-07 10:43:16 +00:00
|
|
|
char *virGetHostname(void);
|
|
|
|
|
2009-01-06 17:46:46 +00:00
|
|
|
int virKillProcess(pid_t pid, int sig);
|
|
|
|
|
2009-01-22 19:41:48 +00:00
|
|
|
#ifdef HAVE_GETPWUID_R
|
|
|
|
char *virGetUserDirectory(virConnectPtr conn,
|
|
|
|
uid_t uid);
|
2009-07-10 10:40:04 +00:00
|
|
|
char *virGetUserName(virConnectPtr conn,
|
|
|
|
uid_t uid);
|
2009-07-15 21:25:01 +00:00
|
|
|
int virGetUserID(virConnectPtr conn,
|
|
|
|
const char *name,
|
|
|
|
uid_t *uid);
|
|
|
|
int virGetGroupID(virConnectPtr conn,
|
|
|
|
const char *name,
|
|
|
|
gid_t *gid);
|
2009-01-22 19:41:48 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-22 20:27:01 +00:00
|
|
|
int virRandomInitialize(unsigned int seed);
|
|
|
|
int virRandom(int max);
|
|
|
|
|
Support configuration of huge pages in guests
Add option to domain XML for
<memoryBacking>
<hugepages/>
</memoryBacking>
* configure.in: Add check for mntent.h
* qemud/libvirtd_qemu.aug, qemud/test_libvirtd_qemu.aug, src/qemu.conf
Add 'hugetlbfs_mount' config parameter
* src/qemu_conf.c, src/qemu_conf.h: Check for -mem-path flag in QEMU,
and pass it when hugepages are requested.
Load hugetlbfs_mount config parameter, search for mount if not given.
* src/qemu_driver.c: Free hugetlbfs_mount/path parameter in driver shutdown.
Create directory for QEMU hugepage usage, chowning if required.
* docs/formatdomain.html.in: Document memoryBacking/hugepages elements
* docs/schemas/domain.rng: Add memoryBacking/hugepages elements to schema
* src/util.c, src/util.h, src/libvirt_private.syms: Add virFileFindMountPoint
helper API
* tests/qemuhelptest.c: Add -mem-path constants
* tests/qemuxml2argvtest.c, tests/qemuxml2xmltest.c: Add tests for hugepage
handling
* tests/qemuxml2argvdata/qemuxml2argv-hugepages.xml,
tests/qemuxml2argvdata/qemuxml2argv-hugepages.args: Data files for
hugepage tests
2009-08-25 14:05:18 +00:00
|
|
|
#ifdef HAVE_MNTENT_H
|
|
|
|
char *virFileFindMountPoint(const char *type);
|
|
|
|
#endif
|
|
|
|
|
2009-09-10 13:21:10 +00:00
|
|
|
void virFileWaitForDevices(virConnectPtr conn);
|
|
|
|
|
2007-12-03 14:30:46 +00:00
|
|
|
#endif /* __VIR_UTIL_H__ */
|