Skip to content

Commit 293ba3b

Browse files
bebarinoMike Turquette
authored and
Mike Turquette
committed
clk: Fix double free due to devm_clk_register()
Now that clk_unregister() frees the struct clk we're unregistering we'll free memory twice: first we'll call kfree() in __clk_release() with an address kmalloc doesn't know about and second we'll call kfree() in the devres layer. Remove the allocation of struct clk in devm_clk_register() and let clk_release() handle it. This fixes slab errors like: ============================================================================= BUG kmalloc-128 (Not tainted): Invalid object pointer 0xed08e8d0 ----------------------------------------------------------------------------- Disabling lock debugging due to kernel taint INFO: Slab 0xeec503f8 objects=25 used=15 fp=0xed08ea00 flags=0x4081 CPU: 2 PID: 73 Comm: rmmod Tainted: G B 3.14.0-11032-g526e9c764381 #34 [<c0014be0>] (unwind_backtrace) from [<c0012240>] (show_stack+0x10/0x14) [<c0012240>] (show_stack) from [<c04b74dc>] (dump_stack+0x70/0xbc) [<c04b74dc>] (dump_stack) from [<c00f6778>] (slab_err+0x74/0x84) [<c00f6778>] (slab_err) from [<c04b6278>] (free_debug_processing+0x2cc/0x31c) [<c04b6278>] (free_debug_processing) from [<c04b6300>] (__slab_free+0x38/0x41c) [<c04b6300>] (__slab_free) from [<c03931bc>] (clk_unregister+0xd4/0x140) [<c03931bc>] (clk_unregister) from [<c02fb774>] (release_nodes+0x164/0x1d8) [<c02fb774>] (release_nodes) from [<c02f8698>] (__device_release_driver+0x60/0xb0) [<c02f8698>] (__device_release_driver) from [<c02f9080>] (driver_detach+0xb4/0xb8) [<c02f9080>] (driver_detach) from [<c02f8480>] (bus_remove_driver+0x5c/0xc4) [<c02f8480>] (bus_remove_driver) from [<c008c9b8>] (SyS_delete_module+0x148/0x1d8) [<c008c9b8>] (SyS_delete_module) from [<c000ef80>] (ret_fast_syscall+0x0/0x48) FIX kmalloc-128: Object at 0xed08e8d0 not freed Fixes: fcb0ee6 (clk: Implement clk_unregister) Cc: Jiada Wang <[email protected]> Cc: Sylwester Nawrocki <[email protected]> Cc: Kyungmin Park <[email protected]> Signed-off-by: Stephen Boyd <[email protected]> Signed-off-by: Mike Turquette <[email protected]> Cc: [email protected]
1 parent 2aa6dd0 commit 293ba3b

File tree

1 file changed

+30
-41
lines changed

1 file changed

+30
-41
lines changed

drivers/clk/clk.c

Lines changed: 30 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1984,9 +1984,28 @@ struct clk *__clk_register(struct device *dev, struct clk_hw *hw)
19841984
}
19851985
EXPORT_SYMBOL_GPL(__clk_register);
19861986

1987-
static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
1987+
/**
1988+
* clk_register - allocate a new clock, register it and return an opaque cookie
1989+
* @dev: device that is registering this clock
1990+
* @hw: link to hardware-specific clock data
1991+
*
1992+
* clk_register is the primary interface for populating the clock tree with new
1993+
* clock nodes. It returns a pointer to the newly allocated struct clk which
1994+
* cannot be dereferenced by driver code but may be used in conjuction with the
1995+
* rest of the clock API. In the event of an error clk_register will return an
1996+
* error code; drivers must test for an error code after calling clk_register.
1997+
*/
1998+
struct clk *clk_register(struct device *dev, struct clk_hw *hw)
19881999
{
19892000
int i, ret;
2001+
struct clk *clk;
2002+
2003+
clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2004+
if (!clk) {
2005+
pr_err("%s: could not allocate clk\n", __func__);
2006+
ret = -ENOMEM;
2007+
goto fail_out;
2008+
}
19902009

19912010
clk->name = kstrdup(hw->init->name, GFP_KERNEL);
19922011
if (!clk->name) {
@@ -2026,7 +2045,7 @@ static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
20262045

20272046
ret = __clk_init(dev, clk);
20282047
if (!ret)
2029-
return 0;
2048+
return clk;
20302049

20312050
fail_parent_names_copy:
20322051
while (--i >= 0)
@@ -2035,36 +2054,6 @@ static int _clk_register(struct device *dev, struct clk_hw *hw, struct clk *clk)
20352054
fail_parent_names:
20362055
kfree(clk->name);
20372056
fail_name:
2038-
return ret;
2039-
}
2040-
2041-
/**
2042-
* clk_register - allocate a new clock, register it and return an opaque cookie
2043-
* @dev: device that is registering this clock
2044-
* @hw: link to hardware-specific clock data
2045-
*
2046-
* clk_register is the primary interface for populating the clock tree with new
2047-
* clock nodes. It returns a pointer to the newly allocated struct clk which
2048-
* cannot be dereferenced by driver code but may be used in conjuction with the
2049-
* rest of the clock API. In the event of an error clk_register will return an
2050-
* error code; drivers must test for an error code after calling clk_register.
2051-
*/
2052-
struct clk *clk_register(struct device *dev, struct clk_hw *hw)
2053-
{
2054-
int ret;
2055-
struct clk *clk;
2056-
2057-
clk = kzalloc(sizeof(*clk), GFP_KERNEL);
2058-
if (!clk) {
2059-
pr_err("%s: could not allocate clk\n", __func__);
2060-
ret = -ENOMEM;
2061-
goto fail_out;
2062-
}
2063-
2064-
ret = _clk_register(dev, hw, clk);
2065-
if (!ret)
2066-
return clk;
2067-
20682057
kfree(clk);
20692058
fail_out:
20702059
return ERR_PTR(ret);
@@ -2173,7 +2162,7 @@ EXPORT_SYMBOL_GPL(clk_unregister);
21732162

21742163
static void devm_clk_release(struct device *dev, void *res)
21752164
{
2176-
clk_unregister(res);
2165+
clk_unregister(*(struct clk **)res);
21772166
}
21782167

21792168
/**
@@ -2188,18 +2177,18 @@ static void devm_clk_release(struct device *dev, void *res)
21882177
struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw)
21892178
{
21902179
struct clk *clk;
2191-
int ret;
2180+
struct clk **clkp;
21922181

2193-
clk = devres_alloc(devm_clk_release, sizeof(*clk), GFP_KERNEL);
2194-
if (!clk)
2182+
clkp = devres_alloc(devm_clk_release, sizeof(*clkp), GFP_KERNEL);
2183+
if (!clkp)
21952184
return ERR_PTR(-ENOMEM);
21962185

2197-
ret = _clk_register(dev, hw, clk);
2198-
if (!ret) {
2199-
devres_add(dev, clk);
2186+
clk = clk_register(dev, hw);
2187+
if (!IS_ERR(clk)) {
2188+
*clkp = clk;
2189+
devres_add(dev, clkp);
22002190
} else {
2201-
devres_free(clk);
2202-
clk = ERR_PTR(ret);
2191+
devres_free(clkp);
22032192
}
22042193

22052194
return clk;

0 commit comments

Comments
 (0)