confile: use lxc_list_new() everywhere

parent dee51406
...@@ -621,17 +621,14 @@ static int set_config_net_ipv4_address(const char *key, const char *value, ...@@ -621,17 +621,14 @@ static int set_config_net_ipv4_address(const char *key, const char *value,
if (!netdev) if (!netdev)
return ret_errno(EINVAL); return ret_errno(EINVAL);
inetdev = malloc(sizeof(*inetdev)); inetdev = zalloc(sizeof(*inetdev));
if (!inetdev) if (!inetdev)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(inetdev, 0, sizeof(*inetdev));
list = malloc(sizeof(*list)); list = lxc_list_new();
if (!list) if (!list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
lxc_list_init(list);
addr = strdup(value); addr = strdup(value);
if (!addr) if (!addr)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -708,7 +705,7 @@ static int set_config_net_ipv4_gateway(const char *key, const char *value, ...@@ -708,7 +705,7 @@ static int set_config_net_ipv4_gateway(const char *key, const char *value,
__do_free struct in_addr *gw = NULL; __do_free struct in_addr *gw = NULL;
int ret; int ret;
gw = malloc(sizeof(*gw)); gw = zalloc(sizeof(*gw));
if (!gw) if (!gw)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -744,16 +741,14 @@ static int set_config_net_veth_ipv4_route(const char *key, const char *value, ...@@ -744,16 +741,14 @@ static int set_config_net_veth_ipv4_route(const char *key, const char *value,
EINVAL, "Invalid ipv4 route \"%s\", can only be used with veth network", EINVAL, "Invalid ipv4 route \"%s\", can only be used with veth network",
value); value);
inetdev = malloc(sizeof(*inetdev)); inetdev = zalloc(sizeof(*inetdev));
if (!inetdev) if (!inetdev)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(inetdev, 0, sizeof(*inetdev));
list = malloc(sizeof(*list)); list = lxc_list_new();
if (!list) if (!list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
lxc_list_init(list);
list->elem = inetdev; list->elem = inetdev;
valdup = strdup(value); valdup = strdup(value);
...@@ -802,17 +797,14 @@ static int set_config_net_ipv6_address(const char *key, const char *value, ...@@ -802,17 +797,14 @@ static int set_config_net_ipv6_address(const char *key, const char *value,
if (!netdev) if (!netdev)
return ret_errno(EINVAL); return ret_errno(EINVAL);
inet6dev = malloc(sizeof(*inet6dev)); inet6dev = zalloc(sizeof(*inet6dev));
if (!inet6dev) if (!inet6dev)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(inet6dev, 0, sizeof(*inet6dev));
list = malloc(sizeof(*list)); list = lxc_list_new();
if (!list) if (!list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
lxc_list_init(list);
valdup = strdup(value); valdup = strdup(value);
if (!valdup) if (!valdup)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -864,7 +856,7 @@ static int set_config_net_ipv6_gateway(const char *key, const char *value, ...@@ -864,7 +856,7 @@ static int set_config_net_ipv6_gateway(const char *key, const char *value,
int ret; int ret;
__do_free struct in6_addr *gw = NULL; __do_free struct in6_addr *gw = NULL;
gw = malloc(sizeof(*gw)); gw = zalloc(sizeof(*gw));
if (!gw) if (!gw)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -901,17 +893,14 @@ static int set_config_net_veth_ipv6_route(const char *key, const char *value, ...@@ -901,17 +893,14 @@ static int set_config_net_veth_ipv6_route(const char *key, const char *value,
EINVAL, "Invalid ipv6 route \"%s\", can only be used with veth network", EINVAL, "Invalid ipv6 route \"%s\", can only be used with veth network",
value); value);
inet6dev = malloc(sizeof(*inet6dev)); inet6dev = zalloc(sizeof(*inet6dev));
if (!inet6dev) if (!inet6dev)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(inet6dev, 0, sizeof(*inet6dev));
list = malloc(sizeof(*list)); list = lxc_list_new();
if (!list) if (!list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
lxc_list_init(list);
valdup = strdup(value); valdup = strdup(value);
if (!valdup) if (!valdup)
return -1; return -1;
...@@ -976,7 +965,7 @@ static int add_hook(struct lxc_conf *lxc_conf, int which, __owns char *hook) ...@@ -976,7 +965,7 @@ static int add_hook(struct lxc_conf *lxc_conf, int which, __owns char *hook)
__do_free char *val = hook; __do_free char *val = hook;
struct lxc_list *hooklist; struct lxc_list *hooklist;
hooklist = malloc(sizeof(*hooklist)); hooklist = lxc_list_new();
if (!hooklist) if (!hooklist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -1294,7 +1283,7 @@ static int set_config_group(const char *key, const char *value, ...@@ -1294,7 +1283,7 @@ static int set_config_group(const char *key, const char *value,
lxc_iterate_parts(token, groups, " \t") { lxc_iterate_parts(token, groups, " \t") {
__do_free struct lxc_list *grouplist = NULL; __do_free struct lxc_list *grouplist = NULL;
grouplist = malloc(sizeof(*grouplist)); grouplist = lxc_list_new();
if (!grouplist) if (!grouplist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -1316,7 +1305,7 @@ static int set_config_environment(const char *key, const char *value, ...@@ -1316,7 +1305,7 @@ static int set_config_environment(const char *key, const char *value,
if (lxc_config_value_empty(value)) if (lxc_config_value_empty(value))
return lxc_clear_environment(lxc_conf); return lxc_clear_environment(lxc_conf);
list_item = malloc(sizeof(*list_item)); list_item = lxc_list_new();
if (!list_item) if (!list_item)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -1430,7 +1419,7 @@ static int set_config_apparmor_raw(const char *key, ...@@ -1430,7 +1419,7 @@ static int set_config_apparmor_raw(const char *key,
if (lxc_config_value_empty(value)) if (lxc_config_value_empty(value))
return lxc_clear_apparmor_raw(lxc_conf); return lxc_clear_apparmor_raw(lxc_conf);
list = malloc(sizeof(*list)); list = lxc_list_new();
if (!list) if (!list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -1631,14 +1620,13 @@ static int __set_config_cgroup_controller(const char *key, const char *value, ...@@ -1631,14 +1620,13 @@ static int __set_config_cgroup_controller(const char *key, const char *value,
if (*subkey == '\0') if (*subkey == '\0')
return ret_errno(EINVAL); return ret_errno(EINVAL);
cglist = malloc(sizeof(*cglist)); cglist = lxc_list_new();
if (!cglist) if (!cglist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
cgelem = malloc(sizeof(*cgelem)); cgelem = zalloc(sizeof(*cgelem));
if (!cgelem) if (!cgelem)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(cgelem, 0, sizeof(*cgelem));
cgelem->subsystem = strdup(subkey); cgelem->subsystem = strdup(subkey);
if (!cgelem->subsystem) if (!cgelem->subsystem)
...@@ -1802,14 +1790,13 @@ static int set_config_prlimit(const char *key, const char *value, ...@@ -1802,14 +1790,13 @@ static int set_config_prlimit(const char *key, const char *value,
} }
/* allocate list element */ /* allocate list element */
limlist = malloc(sizeof(*limlist)); limlist = lxc_list_new();
if (!limlist) if (!limlist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
limelem = malloc(sizeof(*limelem)); limelem = zalloc(sizeof(*limelem));
if (!limelem) if (!limelem)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(limelem, 0, sizeof(*limelem));
limelem->resource = strdup(key); limelem->resource = strdup(key);
if (!limelem->resource) if (!limelem->resource)
...@@ -1858,10 +1845,9 @@ static int set_config_sysctl(const char *key, const char *value, ...@@ -1858,10 +1845,9 @@ static int set_config_sysctl(const char *key, const char *value,
} }
/* allocate list element */ /* allocate list element */
sysctl_list = zalloc(sizeof(*sysctl_list)); sysctl_list = lxc_list_new();
if (!sysctl_list) if (!sysctl_list)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
lxc_list_init(sysctl_list);
sysctl_elem = zalloc(sizeof(*sysctl_elem)); sysctl_elem = zalloc(sizeof(*sysctl_elem));
if (!sysctl_elem) if (!sysctl_elem)
...@@ -1898,14 +1884,13 @@ static int set_config_proc(const char *key, const char *value, ...@@ -1898,14 +1884,13 @@ static int set_config_proc(const char *key, const char *value,
if (*subkey == '\0') if (*subkey == '\0')
return ret_errno(EINVAL); return ret_errno(EINVAL);
proclist = malloc(sizeof(*proclist)); proclist = lxc_list_new();
if (!proclist) if (!proclist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
procelem = malloc(sizeof(*procelem)); procelem = zalloc(sizeof(*procelem));
if (!procelem) if (!procelem)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(procelem, 0, sizeof(*procelem));
procelem->filename = strdup(subkey); procelem->filename = strdup(subkey);
if (!procelem->filename) if (!procelem->filename)
...@@ -1933,14 +1918,13 @@ static int set_config_idmaps(const char *key, const char *value, ...@@ -1933,14 +1918,13 @@ static int set_config_idmaps(const char *key, const char *value,
if (lxc_config_value_empty(value)) if (lxc_config_value_empty(value))
return lxc_clear_idmaps(lxc_conf); return lxc_clear_idmaps(lxc_conf);
idmaplist = malloc(sizeof(*idmaplist)); idmaplist = lxc_list_new();
if (!idmaplist) if (!idmaplist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
idmap = malloc(sizeof(*idmap)); idmap = zalloc(sizeof(*idmap));
if (!idmap) if (!idmap)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
memset(idmap, 0, sizeof(*idmap));
ret = parse_idmaps(value, &type, &nsid, &hostid, &range); ret = parse_idmaps(value, &type, &nsid, &hostid, &range);
if (ret < 0) if (ret < 0)
...@@ -2096,7 +2080,7 @@ static int set_config_mount(const char *key, const char *value, ...@@ -2096,7 +2080,7 @@ static int set_config_mount(const char *key, const char *value,
if (lxc_config_value_empty(value)) if (lxc_config_value_empty(value))
return lxc_clear_mount_entries(lxc_conf); return lxc_clear_mount_entries(lxc_conf);
mntlist = malloc(sizeof(*mntlist)); mntlist = lxc_list_new();
if (!mntlist) if (!mntlist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -2135,7 +2119,7 @@ static int set_config_cap_keep(const char *key, const char *value, ...@@ -2135,7 +2119,7 @@ static int set_config_cap_keep(const char *key, const char *value,
if (strequal(token, "none")) if (strequal(token, "none"))
lxc_clear_config_keepcaps(lxc_conf); lxc_clear_config_keepcaps(lxc_conf);
keeplist = malloc(sizeof(*keeplist)); keeplist = lxc_list_new();
if (!keeplist) if (!keeplist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -2167,7 +2151,7 @@ static int set_config_cap_drop(const char *key, const char *value, ...@@ -2167,7 +2151,7 @@ static int set_config_cap_drop(const char *key, const char *value,
* split these caps in a single element for the list. * split these caps in a single element for the list.
*/ */
lxc_iterate_parts(token, dropcaps, " \t") { lxc_iterate_parts(token, dropcaps, " \t") {
droplist = malloc(sizeof(*droplist)); droplist = lxc_list_new();
if (!droplist) if (!droplist)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -2507,7 +2491,7 @@ static int set_config_uts_name(const char *key, const char *value, ...@@ -2507,7 +2491,7 @@ static int set_config_uts_name(const char *key, const char *value,
return 0; return 0;
} }
utsname = malloc(sizeof(*utsname)); utsname = zalloc(sizeof(*utsname));
if (!utsname) if (!utsname)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
...@@ -2713,7 +2697,7 @@ static struct new_config_item *parse_new_conf_line(char *buffer) ...@@ -2713,7 +2697,7 @@ static struct new_config_item *parse_new_conf_line(char *buffer)
} }
} }
new = malloc(sizeof(struct new_config_item)); new = zalloc(sizeof(struct new_config_item));
if (!new) if (!new)
return NULL; return NULL;
...@@ -2748,7 +2732,7 @@ int lxc_config_define_add(struct lxc_list *defines, char *arg) ...@@ -2748,7 +2732,7 @@ int lxc_config_define_add(struct lxc_list *defines, char *arg)
{ {
__do_free struct lxc_list *dent = NULL; __do_free struct lxc_list *dent = NULL;
dent = malloc(sizeof(struct lxc_list)); dent = lxc_list_new();
if (!dent) if (!dent)
return ret_errno(ENOMEM); return ret_errno(ENOMEM);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment