mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
c3c80a183e
* qemud/qemud.c (tls_port, tcp_port, mdns_name, tls_allowed_ip_list): (tls_allowed_dn_list): Remove "const", now that we free these. (unix_sock_rw_mask): Rename from unix_sock_rw_perms, so that the latter name can be used as a local string variable, so that the variable name matches the config attribute name. (unix_sock_ro_mask): Rename from unix_sock_ro_perms, likewise. (remoteCheckDN, remoteCheckAccess): Adapt to const removal. (qemudDispatchServer): Check for heap allocation failure. (remoteConfigGetStringList): New function, based on code from Dan Berrangé. (CHECK_TYPE): Remove macro. (checkType): New function. (GET_CONF_INT, GET_CONF_STR): New macros. (remoteReadConfigFile): Use new macros to avoid duplication and to check for allocation failure. * src/conf.h (virConfTypeName): New static inline function.
107 lines
2.6 KiB
C
107 lines
2.6 KiB
C
/**
|
|
* conf.h: parser for a subset of the Python encoded Xen configuration files
|
|
*
|
|
* Copyright (C) 2006, 2007 Red Hat, Inc.
|
|
*
|
|
* See COPYING.LIB for the License of this software
|
|
*
|
|
* Daniel Veillard <veillard@redhat.com>
|
|
*/
|
|
|
|
#ifndef __VIR_CONF_H__
|
|
#define __VIR_CONF_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* virConfType:
|
|
* one of the possible type for a value from the configuration file
|
|
*
|
|
* TODO: we probably need a float too.
|
|
*/
|
|
typedef enum {
|
|
VIR_CONF_NONE = 0, /* undefined */
|
|
VIR_CONF_LONG = 1, /* a long int */
|
|
VIR_CONF_STRING = 2, /* a string */
|
|
VIR_CONF_LIST = 3 /* a list */
|
|
} virConfType;
|
|
|
|
static inline const char *
|
|
virConfTypeName (virConfType t)
|
|
{
|
|
switch (t) {
|
|
case VIR_CONF_LONG:
|
|
return "long";
|
|
case VIR_CONF_STRING:
|
|
return "string";
|
|
case VIR_CONF_LIST:
|
|
return "list";
|
|
default:
|
|
return "*unexpected*";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* virConfValue:
|
|
* a value from the configuration file
|
|
*/
|
|
typedef struct _virConfValue virConfValue;
|
|
typedef virConfValue *virConfValuePtr;
|
|
|
|
struct _virConfValue {
|
|
virConfType type; /* the virConfType */
|
|
virConfValuePtr next; /* next element if in a list */
|
|
long l; /* long integer */
|
|
char *str; /* pointer to 0 terminated string */
|
|
virConfValuePtr list; /* list of a list */
|
|
};
|
|
|
|
/**
|
|
* virConfPtr:
|
|
* a pointer to a parsed configuration file
|
|
*/
|
|
typedef struct _virConf virConf;
|
|
typedef virConf *virConfPtr;
|
|
|
|
virConfPtr __virConfNew (void);
|
|
virConfPtr __virConfReadFile (const char *filename);
|
|
virConfPtr __virConfReadMem (const char *memory,
|
|
int len);
|
|
int __virConfFree (virConfPtr conf);
|
|
|
|
virConfValuePtr __virConfGetValue (virConfPtr conf,
|
|
const char *setting);
|
|
int __virConfSetValue (virConfPtr conf,
|
|
const char *setting,
|
|
virConfValuePtr value);
|
|
int __virConfWriteFile (const char *filename,
|
|
virConfPtr conf);
|
|
int __virConfWriteMem (char *memory,
|
|
int *len,
|
|
virConfPtr conf);
|
|
|
|
#define virConfNew() (__virConfNew())
|
|
#define virConfReadFile(f) (__virConfReadFile((f)))
|
|
#define virConfReadMem(m,l) (__virConfReadMem((m),(l)))
|
|
#define virConfFree(c) (__virConfFree((c)))
|
|
#define virConfGetValue(c,s) (__virConfGetValue((c),(s)))
|
|
#define virConfSetValue(c,s,v) (__virConfSetValue((c),(s),(v)))
|
|
#define virConfWriteFile(f,c) (__virConfWriteFile((f),(c)))
|
|
#define virConfWriteMem(m,l,c) (__virConfWriteMem((m),(l),(c)))
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* __VIR_CONF_H__ */
|
|
|
|
/*
|
|
* Local variables:
|
|
* indent-tabs-mode: nil
|
|
* c-indent-level: 4
|
|
* c-basic-offset: 4
|
|
* tab-width: 4
|
|
* End:
|
|
*/
|