{
char *token;
char *saveptr = NULL;
- char *str = strdup(value);
+ char *str;
- if (str == NULL) {
- virReportOOMError();
+ if (VIR_STRDUP(str, value) < 0)
goto error;
- }
token = strtok_r(str, ":", &saveptr);
if (token == NULL) {
goto no_memory;
net->type = VIR_DOMAIN_NET_TYPE_ETHERNET;
- net->data.ethernet.ipaddr = strdup(token);
-
- if (net->data.ethernet.ipaddr == NULL)
- goto no_memory;
+ if (VIR_STRDUP(net->data.ethernet.ipaddr, token) < 0)
+ goto error;
if (VIR_REALLOC_N(def->nets, def->nnets + 1) < 0)
goto no_memory;
goto no_memory;
fs->type = VIR_DOMAIN_FS_TYPE_TEMPLATE;
- fs->src = strdup(temp);
+ if (VIR_STRDUP(fs->src, temp) < 0)
+ goto error;
} else {
/* OSTEMPLATE was not found, VE was booted from a private dir directly */
ret = openvzReadVPSConfigParam(veid, "VE_PRIVATE", &temp);
goto no_memory;
fs->type = VIR_DOMAIN_FS_TYPE_MOUNT;
- fs->src = openvz_replace(temp, "$VEID", veid_str);
+ if (!(fs->src = openvz_replace(temp, "$VEID", veid_str)))
+ goto no_memory;
VIR_FREE(veid_str);
}
- fs->dst = strdup("/");
+ if (VIR_STRDUP(fs->dst, "/") < 0)
+ goto error;
param = "DISKSPACE";
ret = openvzReadVPSConfigParam(veid, param, &temp);
}
}
- if (fs->src == NULL || fs->dst == NULL)
- goto no_memory;
-
if (VIR_REALLOC_N(def->fss, def->nfss + 1) < 0)
goto no_memory;
def->fss[def->nfss++] = fs;
goto cleanup;
}
- if (!(def->os.type = strdup("exe")))
- goto no_memory;
- if (!(def->os.init = strdup("/sbin/init")))
- goto no_memory;
+ if (VIR_STRDUP(def->os.type, "exe") < 0)
+ goto cleanup;
+ if (VIR_STRDUP(def->os.init, "/sbin/init") < 0)
+ goto cleanup;
ret = openvzReadVPSConfigParam(veid, "CPUS", &temp);
if (ret < 0) {
saveptr = NULL;
if ((token = strtok_r(sf, "\"\t\n", &saveptr)) != NULL) {
VIR_FREE(*value);
- *value = strdup(token);
- if (*value == NULL) {
+ if (VIR_STRDUP(*value, token) < 0) {
err = 1;
break;
}
{
const char *conf_dir_list[] = {"/etc/vz/conf", "/usr/local/etc/conf", NULL};
int i=0;
+ char *ret = NULL;
while (conf_dir_list[i]) {
- if (!access(conf_dir_list[i], F_OK))
- return strdup(conf_dir_list[i]);
+ if (!access(conf_dir_list[i], F_OK)) {
+ ignore_value(VIR_STRDUP(ret, conf_dir_list[i]));
+ goto cleanup;
+ }
i++;
}
- return NULL;
+cleanup:
+ return ret;
}
/* Richard Steven's classic readline() function */
void *opaque ATTRIBUTE_UNUSED)
{
/* fill the init path */
- if (STREQ(def->os.type, "exe") && !def->os.init) {
- if (!(def->os.init = strdup("/sbin/init"))) {
- virReportOOMError();
- return -1;
- }
- }
-
+ if (STREQ(def->os.type, "exe") && !def->os.init)
+ return VIR_STRDUP(def->os.init, "/sbin/init") < 0 ? -1 : 0;
return 0;
}
goto cleanup;
}
- if (!(ret = strdup(vm->def->os.type)))
- virReportOOMError();
+ ignore_value(VIR_STRDUP(ret, vm->def->os.type));
cleanup:
if (vm)
static char *
openvzGenerateVethName(int veid, char *dev_name_ve)
{
- char dev_name[32];
int ifNo = 0;
+ char *ret;
if (sscanf(dev_name_ve, "%*[^0-9]%d", &ifNo) != 1)
return NULL;
- if (snprintf(dev_name, sizeof(dev_name), "veth%d.%d", veid, ifNo) < 7)
- return NULL;
- return strdup(dev_name);
+ if (virAsprintf(&ret, "veth%d.%d.", veid, ifNo) < 0)
+ virReportOOMError();
+ return ret;
}
static char *
/* try to get line "^NETIF=..." from config */
if (openvzReadVPSConfigParam(veid, "NETIF", &temp) <= 0) {
- name = strdup("eth0");
+ ignore_value(VIR_STRDUP(name, "eth0"));
} else {
char *saveptr = NULL;
char *s;
}
/* set new name */
- ignore_value(virAsprintf(&name, "eth%d", max + 1));
+ if (virAsprintf(&name, "eth%d", max + 1) < 0)
+ virReportOOMError();
}
VIR_FREE(temp);
- if (name == NULL) {
- virReportOOMError();
- }
-
return name;
}
continue;
}
snprintf(vpsname, sizeof(vpsname), "%d", veid);
- if (!(names[got] = strdup(vpsname))) {
- virReportOOMError();
+ if (VIR_STRDUP(names[got], vpsname) < 0)
goto out;
- }
got ++;
}