All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: only call get_parent if there is one
@ 2013-09-05 13:33 ` Alex Elder
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Elder @ 2013-09-05 13:33 UTC (permalink / raw)
  To: Mike Turquette; +Cc: linux-arm-kernel, LKML

In __clk_init(), after a clock is mostly initialized, a scan is done
of the orphan clocks to see if the clock being registered is the
parent of any of them.

This code assumes that any clock that provides a get_parent method
actually has at least one parent, and that's not a valid assumption.

As a result, an orphan clock with no parent can return *something*
as the parent index, and that value is blindly used to dereference
the orphan's parent_names[] array (which will be ZERO_SIZE_PTR or
NULL).

Fix this by ensuring get_parent is only called for orphans with at
least one parent.

Signed-off-by: Alex Elder <elder@linaro.org>
---
 drivers/clk/clk.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 54a191c..ea8ff15 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -1628,7 +1628,7 @@ int __clk_init(struct device *dev, struct clk *clk)
 	 * this clock
 	 */
 	hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
-		if (orphan->ops->get_parent) {
+		if (orphan->num_parents && orphan->ops->get_parent) {
 			i = orphan->ops->get_parent(orphan->hw);
 			if (!strcmp(clk->name, orphan->parent_names[i]))
 				__clk_reparent(orphan, clk);
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] clk: only call get_parent if there is one
@ 2013-09-05 13:33 ` Alex Elder
  0 siblings, 0 replies; 3+ messages in thread
From: Alex Elder @ 2013-09-05 13:33 UTC (permalink / raw)
  To: linux-arm-kernel

In __clk_init(), after a clock is mostly initialized, a scan is done
of the orphan clocks to see if the clock being registered is the
parent of any of them.

This code assumes that any clock that provides a get_parent method
actually has at least one parent, and that's not a valid assumption.

As a result, an orphan clock with no parent can return *something*
as the parent index, and that value is blindly used to dereference
the orphan's parent_names[] array (which will be ZERO_SIZE_PTR or
NULL).

Fix this by ensuring get_parent is only called for orphans with at
least one parent.

Signed-off-by: Alex Elder <elder@linaro.org>
---
 drivers/clk/clk.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 54a191c..ea8ff15 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -1628,7 +1628,7 @@ int __clk_init(struct device *dev, struct clk *clk)
 	 * this clock
 	 */
 	hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
-		if (orphan->ops->get_parent) {
+		if (orphan->num_parents && orphan->ops->get_parent) {
 			i = orphan->ops->get_parent(orphan->hw);
 			if (!strcmp(clk->name, orphan->parent_names[i]))
 				__clk_reparent(orphan, clk);
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH] clk: only call get_parent if there is one
  2013-09-05 13:33 ` Alex Elder
  (?)
@ 2013-09-06 21:17 ` Mike Turquette
  -1 siblings, 0 replies; 3+ messages in thread
From: Mike Turquette @ 2013-09-06 21:17 UTC (permalink / raw)
  To: linux-arm-kernel

Quoting Alex Elder (2013-09-05 06:33:24)
> In __clk_init(), after a clock is mostly initialized, a scan is done
> of the orphan clocks to see if the clock being registered is the
> parent of any of them.
> 
> This code assumes that any clock that provides a get_parent method
> actually has at least one parent, and that's not a valid assumption.
> 
> As a result, an orphan clock with no parent can return *something*
> as the parent index, and that value is blindly used to dereference
> the orphan's parent_names[] array (which will be ZERO_SIZE_PTR or
> NULL).
> 
> Fix this by ensuring get_parent is only called for orphans with at
> least one parent.
> 
> Signed-off-by: Alex Elder <elder@linaro.org>

Thanks for the fix Alex. I'll take this in towards 3.13.

Regards,
Mike

> ---
>  drivers/clk/clk.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 54a191c..ea8ff15 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -1628,7 +1628,7 @@ int __clk_init(struct device *dev, struct clk *clk)
>          * this clock
>          */
>         hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) {
> -               if (orphan->ops->get_parent) {
> +               if (orphan->num_parents && orphan->ops->get_parent) {
>                         i = orphan->ops->get_parent(orphan->hw);
>                         if (!strcmp(clk->name, orphan->parent_names[i]))
>                                 __clk_reparent(orphan, clk);
> -- 
> 1.7.9.5

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-09-06 21:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-05 13:33 [PATCH] clk: only call get_parent if there is one Alex Elder
2013-09-05 13:33 ` Alex Elder
2013-09-06 21:17 ` Mike Turquette

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.