Commit 40b0f174 authored by Rob Herring's avatar Rob Herring

of: Use scope based kfree() cleanups

Use the relatively new scope based kfree() cleanup to simplify error
handling. Doing so reduces the chances of memory leaks and simplifies
error paths by avoiding the need for goto statements.
Reviewed-by: default avatarSaravana Kannan <saravanak@google.com>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://lore.kernel.org/r/20240409-dt-cleanup-free-v2-2-5b419a4af38d@kernel.orgSigned-off-by: default avatarRob Herring <robh@kernel.org>
parent 1c5e3d9b
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#define pr_fmt(fmt) "OF: " fmt #define pr_fmt(fmt) "OF: " fmt
#include <linux/cleanup.h>
#include <linux/console.h> #include <linux/console.h>
#include <linux/ctype.h> #include <linux/ctype.h>
#include <linux/cpu.h> #include <linux/cpu.h>
...@@ -1393,8 +1394,10 @@ int of_parse_phandle_with_args_map(const struct device_node *np, ...@@ -1393,8 +1394,10 @@ int of_parse_phandle_with_args_map(const struct device_node *np,
const char *stem_name, const char *stem_name,
int index, struct of_phandle_args *out_args) int index, struct of_phandle_args *out_args)
{ {
char *cells_name, *map_name = NULL, *mask_name = NULL; char *cells_name __free(kfree) = kasprintf(GFP_KERNEL, "#%s-cells", stem_name);
char *pass_name = NULL; char *map_name __free(kfree) = kasprintf(GFP_KERNEL, "%s-map", stem_name);
char *mask_name __free(kfree) = kasprintf(GFP_KERNEL, "%s-map-mask", stem_name);
char *pass_name __free(kfree) = kasprintf(GFP_KERNEL, "%s-map-pass-thru", stem_name);
struct device_node *cur, *new = NULL; struct device_node *cur, *new = NULL;
const __be32 *map, *mask, *pass; const __be32 *map, *mask, *pass;
static const __be32 dummy_mask[] = { [0 ... MAX_PHANDLE_ARGS] = cpu_to_be32(~0) }; static const __be32 dummy_mask[] = { [0 ... MAX_PHANDLE_ARGS] = cpu_to_be32(~0) };
...@@ -1407,27 +1410,13 @@ int of_parse_phandle_with_args_map(const struct device_node *np, ...@@ -1407,27 +1410,13 @@ int of_parse_phandle_with_args_map(const struct device_node *np,
if (index < 0) if (index < 0)
return -EINVAL; return -EINVAL;
cells_name = kasprintf(GFP_KERNEL, "#%s-cells", stem_name); if (!cells_name || !map_name || !mask_name || !pass_name)
if (!cells_name)
return -ENOMEM; return -ENOMEM;
ret = -ENOMEM;
map_name = kasprintf(GFP_KERNEL, "%s-map", stem_name);
if (!map_name)
goto free;
mask_name = kasprintf(GFP_KERNEL, "%s-map-mask", stem_name);
if (!mask_name)
goto free;
pass_name = kasprintf(GFP_KERNEL, "%s-map-pass-thru", stem_name);
if (!pass_name)
goto free;
ret = __of_parse_phandle_with_args(np, list_name, cells_name, -1, index, ret = __of_parse_phandle_with_args(np, list_name, cells_name, -1, index,
out_args); out_args);
if (ret) if (ret)
goto free; return ret;
/* Get the #<list>-cells property */ /* Get the #<list>-cells property */
cur = out_args->np; cur = out_args->np;
...@@ -1444,8 +1433,7 @@ int of_parse_phandle_with_args_map(const struct device_node *np, ...@@ -1444,8 +1433,7 @@ int of_parse_phandle_with_args_map(const struct device_node *np,
/* Get the <list>-map property */ /* Get the <list>-map property */
map = of_get_property(cur, map_name, &map_len); map = of_get_property(cur, map_name, &map_len);
if (!map) { if (!map) {
ret = 0; return 0;
goto free;
} }
map_len /= sizeof(u32); map_len /= sizeof(u32);
...@@ -1521,12 +1509,6 @@ int of_parse_phandle_with_args_map(const struct device_node *np, ...@@ -1521,12 +1509,6 @@ int of_parse_phandle_with_args_map(const struct device_node *np,
put: put:
of_node_put(cur); of_node_put(cur);
of_node_put(new); of_node_put(new);
free:
kfree(mask_name);
kfree(map_name);
kfree(cells_name);
kfree(pass_name);
return ret; return ret;
} }
EXPORT_SYMBOL(of_parse_phandle_with_args_map); EXPORT_SYMBOL(of_parse_phandle_with_args_map);
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
#define pr_fmt(fmt) "OF: " fmt #define pr_fmt(fmt) "OF: " fmt
#include <linux/cleanup.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/slab.h> #include <linux/slab.h>
...@@ -1019,10 +1020,9 @@ int of_changeset_add_prop_u32_array(struct of_changeset *ocs, ...@@ -1019,10 +1020,9 @@ int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
const u32 *array, size_t sz) const u32 *array, size_t sz)
{ {
struct property prop; struct property prop;
__be32 *val; __be32 *val __free(kfree) = kcalloc(sz, sizeof(__be32), GFP_KERNEL);
int i, ret; int i;
val = kcalloc(sz, sizeof(__be32), GFP_KERNEL);
if (!val) if (!val)
return -ENOMEM; return -ENOMEM;
...@@ -1032,9 +1032,6 @@ int of_changeset_add_prop_u32_array(struct of_changeset *ocs, ...@@ -1032,9 +1032,6 @@ int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
prop.length = sizeof(u32) * sz; prop.length = sizeof(u32) * sz;
prop.value = (void *)val; prop.value = (void *)val;
ret = of_changeset_add_prop_helper(ocs, np, &prop); return of_changeset_add_prop_helper(ocs, np, &prop);
kfree(val);
return ret;
} }
EXPORT_SYMBOL_GPL(of_changeset_add_prop_u32_array); EXPORT_SYMBOL_GPL(of_changeset_add_prop_u32_array);
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
#define pr_fmt(fmt) "OF: resolver: " fmt #define pr_fmt(fmt) "OF: resolver: " fmt
#include <linux/cleanup.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/of.h> #include <linux/of.h>
...@@ -74,11 +75,11 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay, ...@@ -74,11 +75,11 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay,
{ {
struct device_node *refnode; struct device_node *refnode;
struct property *prop; struct property *prop;
char *value, *cur, *end, *node_path, *prop_name, *s; char *value __free(kfree) = kmemdup(prop_fixup->value, prop_fixup->length, GFP_KERNEL);
char *cur, *end, *node_path, *prop_name, *s;
int offset, len; int offset, len;
int err = 0; int err = 0;
value = kmemdup(prop_fixup->value, prop_fixup->length, GFP_KERNEL);
if (!value) if (!value)
return -ENOMEM; return -ENOMEM;
...@@ -89,23 +90,19 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay, ...@@ -89,23 +90,19 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay,
node_path = cur; node_path = cur;
s = strchr(cur, ':'); s = strchr(cur, ':');
if (!s) { if (!s)
err = -EINVAL; return -EINVAL;
goto err_fail;
}
*s++ = '\0'; *s++ = '\0';
prop_name = s; prop_name = s;
s = strchr(s, ':'); s = strchr(s, ':');
if (!s) { if (!s)
err = -EINVAL; return -EINVAL;
goto err_fail;
}
*s++ = '\0'; *s++ = '\0';
err = kstrtoint(s, 10, &offset); err = kstrtoint(s, 10, &offset);
if (err) if (err)
goto err_fail; return err;
refnode = __of_find_node_by_full_path(of_node_get(overlay), node_path); refnode = __of_find_node_by_full_path(of_node_get(overlay), node_path);
if (!refnode) if (!refnode)
...@@ -117,22 +114,16 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay, ...@@ -117,22 +114,16 @@ static int update_usages_of_a_phandle_reference(struct device_node *overlay,
} }
of_node_put(refnode); of_node_put(refnode);
if (!prop) { if (!prop)
err = -ENOENT; return -ENOENT;
goto err_fail;
}
if (offset < 0 || offset + sizeof(__be32) > prop->length) { if (offset < 0 || offset + sizeof(__be32) > prop->length)
err = -EINVAL; return -EINVAL;
goto err_fail;
}
*(__be32 *)(prop->value + offset) = cpu_to_be32(phandle); *(__be32 *)(prop->value + offset) = cpu_to_be32(phandle);
} }
err_fail: return 0;
kfree(value);
return err;
} }
/* compare nodes taking into account that 'name' strips out the @ part */ /* compare nodes taking into account that 'name' strips out the @ part */
......
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