diff mbox

net_sched: drr: check for NULL pointer in drr_dequeue

Message ID 1453780265-29508-1-git-send-email-bernie.harris@alliedtelesis.co.nz
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

Bernie Harris Jan. 26, 2016, 3:51 a.m. UTC
There are cases where qdisc_dequeue_peeked can return NULL, and the result
is dereferenced later on in the function.

Similarly to the other qdisc dequeue functions, check whether the skb
pointer is NULL and if it is, goto out.

Signed-off-by: Bernie Harris <bernie.harris@alliedtelesis.co.nz>
---
 net/sched/sch_drr.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Cong Wang Jan. 26, 2016, 6:03 p.m. UTC | #1
On Mon, Jan 25, 2016 at 7:51 PM, Bernie Harris
<bernie.harris@alliedtelesis.co.nz> wrote:
> There are cases where qdisc_dequeue_peeked can return NULL, and the result
> is dereferenced later on in the function.
>
> Similarly to the other qdisc dequeue functions, check whether the skb
> pointer is NULL and if it is, goto out.
>
> Signed-off-by: Bernie Harris <bernie.harris@alliedtelesis.co.nz>

Looks good to me, just one minor thing: an unlikely() can be used for this case.


> ---
>  net/sched/sch_drr.c | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/net/sched/sch_drr.c b/net/sched/sch_drr.c
> index f26bdea..8086c3d 100644
> --- a/net/sched/sch_drr.c
> +++ b/net/sched/sch_drr.c
> @@ -403,6 +403,8 @@ static struct sk_buff *drr_dequeue(struct Qdisc *sch)
>                 if (len <= cl->deficit) {
>                         cl->deficit -= len;
>                         skb = qdisc_dequeue_peeked(cl->qdisc);
> +                       if (skb == NULL)
> +                               goto out;
>                         if (cl->qdisc->q.qlen == 0)
>                                 list_del(&cl->alist);
>
> --
> 2.7.0
>
Bernie Harris Jan. 28, 2016, 3:26 a.m. UTC | #2
Thank you. I will add unlikely() and re-submit the patch.
diff mbox

Patch

diff --git a/net/sched/sch_drr.c b/net/sched/sch_drr.c
index f26bdea..8086c3d 100644
--- a/net/sched/sch_drr.c
+++ b/net/sched/sch_drr.c
@@ -403,6 +403,8 @@  static struct sk_buff *drr_dequeue(struct Qdisc *sch)
 		if (len <= cl->deficit) {
 			cl->deficit -= len;
 			skb = qdisc_dequeue_peeked(cl->qdisc);
+			if (skb == NULL)
+				goto out;
 			if (cl->qdisc->q.qlen == 0)
 				list_del(&cl->alist);