Skip to content

Commit 3824c5f

Browse files
martin-ottensgregkh
authored andcommitted
net/sched: netem: account for backlog updates from child qdisc
[ Upstream commit f8d4bc4 ] In general, 'qlen' of any classful qdisc should keep track of the number of packets that the qdisc itself and all of its children holds. In case of netem, 'qlen' only accounts for the packets in its internal tfifo. When netem is used with a child qdisc, the child qdisc can use 'qdisc_tree_reduce_backlog' to inform its parent, netem, about created or dropped SKBs. This function updates 'qlen' and the backlog statistics of netem, but netem does not account for changes made by a child qdisc. 'qlen' then indicates the wrong number of packets in the tfifo. If a child qdisc creates new SKBs during enqueue and informs its parent about this, netem's 'qlen' value is increased. When netem dequeues the newly created SKBs from the child, the 'qlen' in netem is not updated. If 'qlen' reaches the configured sch->limit, the enqueue function stops working, even though the tfifo is not full. Reproduce the bug: Ensure that the sender machine has GSO enabled. Configure netem as root qdisc and tbf as its child on the outgoing interface of the machine as follows: $ tc qdisc add dev <oif> root handle 1: netem delay 100ms limit 100 $ tc qdisc add dev <oif> parent 1:0 tbf rate 50Mbit burst 1542 latency 50ms Send bulk TCP traffic out via this interface, e.g., by running an iPerf3 client on the machine. Check the qdisc statistics: $ tc -s qdisc show dev <oif> Statistics after 10s of iPerf3 TCP test before the fix (note that netem's backlog > limit, netem stopped accepting packets): qdisc netem 1: root refcnt 2 limit 1000 delay 100ms Sent 2767766 bytes 1848 pkt (dropped 652, overlimits 0 requeues 0) backlog 4294528236b 1155p requeues 0 qdisc tbf 10: parent 1:1 rate 50Mbit burst 1537b lat 50ms Sent 2767766 bytes 1848 pkt (dropped 327, overlimits 7601 requeues 0) backlog 0b 0p requeues 0 Statistics after the fix: qdisc netem 1: root refcnt 2 limit 1000 delay 100ms Sent 37766372 bytes 24974 pkt (dropped 9, overlimits 0 requeues 0) backlog 0b 0p requeues 0 qdisc tbf 10: parent 1:1 rate 50Mbit burst 1537b lat 50ms Sent 37766372 bytes 24974 pkt (dropped 327, overlimits 96017 requeues 0) backlog 0b 0p requeues 0 tbf segments the GSO SKBs (tbf_segment) and updates the netem's 'qlen'. The interface fully stops transferring packets and "locks". In this case, the child qdisc and tfifo are empty, but 'qlen' indicates the tfifo is at its limit and no more packets are accepted. This patch adds a counter for the entries in the tfifo. Netem's 'qlen' is only decreased when a packet is returned by its dequeue function, and not during enqueuing into the child qdisc. External updates to 'qlen' are thus accounted for and only the behavior of the backlog statistics changes. As in other qdiscs, 'qlen' then keeps track of how many packets are held in netem and all of its children. As before, sch->limit remains as the maximum number of packets in the tfifo. The same applies to netem's backlog statistics. Fixes: 5061253 ("netem: fix classful handling") Signed-off-by: Martin Ottens <[email protected]> Acked-by: Jamal Hadi Salim <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Jakub Kicinski <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 72dc88e commit 3824c5f

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

net/sched/sch_netem.c

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ struct netem_sched_data {
7878
struct sk_buff *t_head;
7979
struct sk_buff *t_tail;
8080

81+
u32 t_len;
82+
8183
/* optional qdisc for classful handling (NULL at netem init) */
8284
struct Qdisc *qdisc;
8385

@@ -382,6 +384,7 @@ static void tfifo_reset(struct Qdisc *sch)
382384
rtnl_kfree_skbs(q->t_head, q->t_tail);
383385
q->t_head = NULL;
384386
q->t_tail = NULL;
387+
q->t_len = 0;
385388
}
386389

387390
static void tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
@@ -411,6 +414,7 @@ static void tfifo_enqueue(struct sk_buff *nskb, struct Qdisc *sch)
411414
rb_link_node(&nskb->rbnode, parent, p);
412415
rb_insert_color(&nskb->rbnode, &q->t_root);
413416
}
417+
q->t_len++;
414418
sch->q.qlen++;
415419
}
416420

@@ -517,7 +521,7 @@ static int netem_enqueue(struct sk_buff *skb, struct Qdisc *sch,
517521
1<<get_random_u32_below(8);
518522
}
519523

520-
if (unlikely(sch->q.qlen >= sch->limit)) {
524+
if (unlikely(q->t_len >= sch->limit)) {
521525
/* re-link segs, so that qdisc_drop_all() frees them all */
522526
skb->next = segs;
523527
qdisc_drop_all(skb, sch, to_free);
@@ -701,8 +705,8 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
701705
tfifo_dequeue:
702706
skb = __qdisc_dequeue_head(&sch->q);
703707
if (skb) {
704-
qdisc_qstats_backlog_dec(sch, skb);
705708
deliver:
709+
qdisc_qstats_backlog_dec(sch, skb);
706710
qdisc_bstats_update(sch, skb);
707711
return skb;
708712
}
@@ -718,8 +722,7 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
718722

719723
if (time_to_send <= now && q->slot.slot_next <= now) {
720724
netem_erase_head(q, skb);
721-
sch->q.qlen--;
722-
qdisc_qstats_backlog_dec(sch, skb);
725+
q->t_len--;
723726
skb->next = NULL;
724727
skb->prev = NULL;
725728
/* skb->dev shares skb->rbnode area,
@@ -746,16 +749,21 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
746749
if (net_xmit_drop_count(err))
747750
qdisc_qstats_drop(sch);
748751
qdisc_tree_reduce_backlog(sch, 1, pkt_len);
752+
sch->qstats.backlog -= pkt_len;
753+
sch->q.qlen--;
749754
}
750755
goto tfifo_dequeue;
751756
}
757+
sch->q.qlen--;
752758
goto deliver;
753759
}
754760

755761
if (q->qdisc) {
756762
skb = q->qdisc->ops->dequeue(q->qdisc);
757-
if (skb)
763+
if (skb) {
764+
sch->q.qlen--;
758765
goto deliver;
766+
}
759767
}
760768

761769
qdisc_watchdog_schedule_ns(&q->watchdog,
@@ -765,8 +773,10 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
765773

766774
if (q->qdisc) {
767775
skb = q->qdisc->ops->dequeue(q->qdisc);
768-
if (skb)
776+
if (skb) {
777+
sch->q.qlen--;
769778
goto deliver;
779+
}
770780
}
771781
return NULL;
772782
}

0 commit comments

Comments
 (0)