netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net PATCH] net: sched: lock imbalance in hhf qdisc
@ 2014-05-01 15:15 John Fastabend
  2014-05-01 15:30 ` Eric Dumazet
  0 siblings, 1 reply; 3+ messages in thread
From: John Fastabend @ 2014-05-01 15:15 UTC (permalink / raw)
  To: edumazet, vtlam; +Cc: netdev

hhf_change() takes the sch_tree_lock and releases it but misses the error
cases. Fix the missed case here.

Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
---
 net/sched/sch_hhf.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net/sched/sch_hhf.c b/net/sched/sch_hhf.c
index edee03d..1803f89 100644
--- a/net/sched/sch_hhf.c
+++ b/net/sched/sch_hhf.c
@@ -565,8 +565,10 @@ static int hhf_change(struct Qdisc *sch, struct nlattr *opt)
 		new_hhf_non_hh_weight = nla_get_u32(tb[TCA_HHF_NON_HH_WEIGHT]);
 
 	non_hh_quantum = (u64)new_quantum * new_hhf_non_hh_weight;
-	if (non_hh_quantum > INT_MAX)
+	if (non_hh_quantum > INT_MAX) {
+		sch_tree_unlock(sch);
 		return -EINVAL;
+	}
 	q->quantum = new_quantum;
 	q->hhf_non_hh_weight = new_hhf_non_hh_weight;
 

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

* Re: [net PATCH] net: sched: lock imbalance in hhf qdisc
  2014-05-01 15:15 [net PATCH] net: sched: lock imbalance in hhf qdisc John Fastabend
@ 2014-05-01 15:30 ` Eric Dumazet
  2014-05-01 16:15   ` John Fastabend
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Dumazet @ 2014-05-01 15:30 UTC (permalink / raw)
  To: John Fastabend; +Cc: edumazet, vtlam, netdev

On Thu, 2014-05-01 at 08:15 -0700, John Fastabend wrote:
> hhf_change() takes the sch_tree_lock and releases it but misses the error
> cases. Fix the missed case here.
> 
> Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
> ---
>  net/sched/sch_hhf.c |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/net/sched/sch_hhf.c b/net/sched/sch_hhf.c
> index edee03d..1803f89 100644
> --- a/net/sched/sch_hhf.c
> +++ b/net/sched/sch_hhf.c
> @@ -565,8 +565,10 @@ static int hhf_change(struct Qdisc *sch, struct nlattr *opt)
>  		new_hhf_non_hh_weight = nla_get_u32(tb[TCA_HHF_NON_HH_WEIGHT]);
>  
>  	non_hh_quantum = (u64)new_quantum * new_hhf_non_hh_weight;
> -	if (non_hh_quantum > INT_MAX)
> +	if (non_hh_quantum > INT_MAX) {
> +		sch_tree_unlock(sch);
>  		return -EINVAL;
> +	}
>  	q->quantum = new_quantum;
>  	q->hhf_non_hh_weight = new_hhf_non_hh_weight;
>  

Good catch, could you refactor a bit more to do all checks before any
change ?

diff --git a/net/sched/sch_hhf.c b/net/sched/sch_hhf.c
index edee03d922e2..6e957c3b9854 100644
--- a/net/sched/sch_hhf.c
+++ b/net/sched/sch_hhf.c
@@ -553,11 +553,6 @@ static int hhf_change(struct Qdisc *sch, struct nlattr *opt)
 	if (err < 0)
 		return err;
 
-	sch_tree_lock(sch);
-
-	if (tb[TCA_HHF_BACKLOG_LIMIT])
-		sch->limit = nla_get_u32(tb[TCA_HHF_BACKLOG_LIMIT]);
-
 	if (tb[TCA_HHF_QUANTUM])
 		new_quantum = nla_get_u32(tb[TCA_HHF_QUANTUM]);
 
@@ -567,6 +562,12 @@ static int hhf_change(struct Qdisc *sch, struct nlattr *opt)
 	non_hh_quantum = (u64)new_quantum * new_hhf_non_hh_weight;
 	if (non_hh_quantum > INT_MAX)
 		return -EINVAL;
+
+	sch_tree_lock(sch);
+
+	if (tb[TCA_HHF_BACKLOG_LIMIT])
+		sch->limit = nla_get_u32(tb[TCA_HHF_BACKLOG_LIMIT]);
+
 	q->quantum = new_quantum;
 	q->hhf_non_hh_weight = new_hhf_non_hh_weight;
 

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

* Re: [net PATCH] net: sched: lock imbalance in hhf qdisc
  2014-05-01 15:30 ` Eric Dumazet
@ 2014-05-01 16:15   ` John Fastabend
  0 siblings, 0 replies; 3+ messages in thread
From: John Fastabend @ 2014-05-01 16:15 UTC (permalink / raw)
  To: Eric Dumazet; +Cc: edumazet, vtlam, netdev

On 05/01/2014 08:30 AM, Eric Dumazet wrote:
> On Thu, 2014-05-01 at 08:15 -0700, John Fastabend wrote:
>> hhf_change() takes the sch_tree_lock and releases it but misses the error
>> cases. Fix the missed case here.
>>
>> Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
>> ---
>>   net/sched/sch_hhf.c |    4 +++-
>>   1 file changed, 3 insertions(+), 1 deletion(-)
>>
>> diff --git a/net/sched/sch_hhf.c b/net/sched/sch_hhf.c
>> index edee03d..1803f89 100644
>> --- a/net/sched/sch_hhf.c
>> +++ b/net/sched/sch_hhf.c
>> @@ -565,8 +565,10 @@ static int hhf_change(struct Qdisc *sch, struct nlattr *opt)
>>   		new_hhf_non_hh_weight = nla_get_u32(tb[TCA_HHF_NON_HH_WEIGHT]);
>>
>>   	non_hh_quantum = (u64)new_quantum * new_hhf_non_hh_weight;
>> -	if (non_hh_quantum > INT_MAX)
>> +	if (non_hh_quantum > INT_MAX) {
>> +		sch_tree_unlock(sch);
>>   		return -EINVAL;
>> +	}
>>   	q->quantum = new_quantum;
>>   	q->hhf_non_hh_weight = new_hhf_non_hh_weight;
>>
>
> Good catch, could you refactor a bit more to do all checks before any
> change ?

Sure. What you have below looks good. I'll submit an official v2 patch.

-- 
John Fastabend         Intel Corporation

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

end of thread, other threads:[~2014-05-01 16:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-01 15:15 [net PATCH] net: sched: lock imbalance in hhf qdisc John Fastabend
2014-05-01 15:30 ` Eric Dumazet
2014-05-01 16:15   ` John Fastabend

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).