Hello,
while experimenting with 'netem' we have found some strange behaviour. It
seemed that ingress delay as measured by 'ping' command shows up on some
hosts but not on others.
After some investigation I have found that the problem is that skbuff->tstamp
field value depends on whether there are any packet sniffers enabled. That
is:
- if any ptype_all handler is registered, the tstamp field is as expected
- if there are no ptype_all handlers, the tstamp field does not show the delay
I was able to see the problem on RHEL5 (2.6.18 kernel) and Ubuntu/Jaunty
(2.6.28 kernel).
Duplication
-----------
1. Enable ingress delay, e.g. 100ms
# modprobe ifb
# ip link set dev ifb0 up
# tc qdisc add dev eth0 ingress
# tc filter add dev eth0 parent ffff: \
protocol ip u32 match u32 0 0 flowid 1:1 action mirred egress \
redirect dev ifb0
# tc qdisc add dev ifb0 root netem delay 100ms
2. Check that there are no ptype_all handlers registered (stop DHCP, tcpdump,
vmware etc.)
3. ping any other host on the LAN, e.g.
{asid 14:54:24} ping cats
PING cats (192.168.0.33) 56(84) bytes of data.
64 bytes from cats (192.168.0.33): icmp_seq=1 ttl=64 time=0.258 ms
^^^^^^^^^^^^^
Now start tcpdump on any interface (not necessarily eth0)
{asid 15:25:45} ping cats
PING cats (192.168.0.33) 56(84) bytes of data.
64 bytes from cats (192.168.0.33): icmp_seq=1 ttl=64 time=100 ms
^^^^^^^^^^^
The ingress packets are really delayed as can be seen from 'ping -U', even
without tcpdump running:
{asid 15:26:12} ping -U cats
PING cats (192.168.0.33) 56(84) bytes of data.
64 bytes from cats (192.168.0.33): icmp_seq=1 ttl=64 time=100 ms
^^^^^^^^^^^
The problem is that modern 'ping' uses SO_TIMESTAMP facility and for some
reason skb->tstamp is not updated. I was able to verify this with stap script
(printing ...I agree there is an inconsistency, but it seems 100 ms isn't the "right" thing to show here. It shows an internal delay added on ifb by Isn't it when act_mirred calls dev_queue_xmit with dev_queue_xmit_nit? But, as above mentioned, I doubt it's "updated properly" in this case. Jarek P. --
Hi Jarek, thank you for your comments. Yes, I understand that it just looked OK in this I can see that dev_queue_xmit_nit calls net_timestamp(skb) unconditionally. I agree that to fix this properly we need to update tstamp in another place explicitly (in ifb or netem?). Thanks, Alex -- ------------------------------------------------------------------ Alexandre Sidorenko email: asid@hp.com WTEC Linux Hewlett-Packard (Canada) ------------------------------------------------------------------ --
Hmm... I'm not sure how "popular" is netem on ifb, but we could try Stephen's opinion (Cc-ed). Thanks, Jarek P. --
On Wed, 15 Apr 2009 22:26:20 +0200 If you are putting on netem on ingress, the timestamps could happen before or after the added delay. As long as it is consistent, then I have no problem with the existing behavior; ie. it is not a bug, it just works that way. --
Hi Stephen, the timestamps change depending on whether there are any ptype_all handlers registered. Just starting tcpdump changes the behaviour, this probably means 'inconsistent' ? Regards, Alex -- ------------------------------------------------------------------ Alexandre Sidorenko email: asid@hp.com WTEC Linux Hewlett-Packard (Canada) ------------------------------------------------------------------ --
From: Alex Sidorenko <alexandre.sidorenko@hp.com> It changes whether there is a "timestamp user" and packet sniffers are currently defined as such as user. The argument is whether the overhead of making this type of use a "timestamp user" is warranted or not. Turning on timestamps is heavily optimized like this because taking the timestamp on every packet is extremely expensive, especially on large classes of x86 systems. Therefore if we make changes here, they have to have a very specific and limited scope in order to avoid turning this expensive operation on when it's not really necessary. --
From: Alex Sidorenko <alexandre.sidorenko@hp.com> Since IFB completely bypasses netif_rx() and netif_receive_skb() I think it should unconditionally set skb->tstamp.tv64 to zero and invoke net_timestamp() This would match the behavior of loopback and tunnels, and in my opinion this is reasonable. There will be virtually no overhead added unless timestamping is enabled via ping or similar, and in return we get what I think is correctness :-) This also means we need to export net_timestamp() to modules. --
From ifb.c (2.6.29):
109 if (from & AT_EGRESS) {
110 dp->st_rx_frm_egr++;
111 dev_queue_xmit(skb);
112 } else if (from & AT_INGRESS) {
113 dp->st_rx_frm_ing++;
114 skb_pull(skb, skb->dev->hard_header_len);
115 netif_rx(skb);
116 }
Adding skb->tstamp.tv64 = 0 between lines 114 and 115 made 'ping' report the
delay as expected (tested on 2.6.28)
Alex
--
------------------------------------------------------------------
Alexandre Sidorenko email: asid@hp.com
WTEC Linux Hewlett-Packard (Canada)
------------------------------------------------------------------
--
IFB calls netif_rx() and I don't understand why do we need to update
I think we need some consistency in counting or not counting packet
scheduling delays into timestamps. Anyway we should avoid unnecessary
updates like now, so I'm proposing something different (for testing).
Jarek P.
---
net/core/dev.c | 5 +++++
net/sched/sch_netem.c | 8 ++++++++
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index 91d792d..ca740c0 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1336,7 +1336,12 @@ static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
{
struct packet_type *ptype;
+#ifdef CONFIG_NET_CLS_ACT
+ if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS)))
+ net_timestamp(skb);
+#else
net_timestamp(skb);
+#endif
rcu_read_lock();
list_for_each_entry_rcu(ptype, &ptype_all, list) {
diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c
index d876b87..2b88295 100644
--- a/net/sched/sch_netem.c
+++ b/net/sched/sch_netem.c
@@ -280,6 +280,14 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
if (unlikely(!skb))
return NULL;
+#ifdef CONFIG_NET_CLS_ACT
+ /*
+ * If it's at ingress let's pretend the delay is
+ * from the network (tstamp will be updated).
+ */
+ if (G_TC_FROM(skb->tc_verd) & AT_INGRESS)
+ skb->tstamp.tv64 = 0;
+#endif
pr_debug("netem_dequeue: return skb=%p\n", skb);
sch->q.qlen--;
return skb;
--
From: Jarek Poplawski <jarkao2@gmail.com> Ok, now I understand this situation even more clearly, thanks Jarek. I think your patch is the most palatable solution I've seen so far, but I want to consider it some more. Meanwhile, Alexandre can you test Jarek's patch for your case? Thanks! --
I have applied Jarek's patch to 2.6.29.1 and tested with 'ping'. Everything works fine. Alex --
Thanks,
Jarek P.
-------------------->
net: sch_netem: Fix an inconsistency in ingress netem timestamps.
Alex Sidorenko reported:
"while experimenting with 'netem' we have found some strange behaviour. It
seemed that ingress delay as measured by 'ping' command shows up on some
hosts but not on others.
After some investigation I have found that the problem is that skbuff->tstamp
field value depends on whether there are any packet sniffers enabled. That
is:
- if any ptype_all handler is registered, the tstamp field is as expected
- if there are no ptype_all handlers, the tstamp field does not show the delay"
This patch prevents unnecessary update of tstamp in dev_queue_xmit_nit()
on ingress path (with act_mirred) adding a check, so minimal overhead on
the fast path, but only when sniffers etc. are active.
Since netem at ingress seems to logically emulate a network before a host,
tstamp is zeroed to trigger the update and pretend delays are from the
outside.
Reported-by: Alex Sidorenko <alexandre.sidorenko@hp.com>
Tested-by: Alex Sidorenko <alexandre.sidorenko@hp.com>
Signed-off-by: Jarek Poplawski <jarkao2@gmail.com>
---
net/core/dev.c | 5 +++++
net/sched/sch_netem.c | 8 ++++++++
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index 91d792d..ca740c0 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1336,7 +1336,12 @@ static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
{
struct packet_type *ptype;
+#ifdef CONFIG_NET_CLS_ACT
+ if (!(skb->tstamp.tv64 && (G_TC_FROM(skb->tc_verd) & AT_INGRESS)))
+ net_timestamp(skb);
+#else
net_timestamp(skb);
+#endif
rcu_read_lock();
list_for_each_entry_rcu(ptype, &ptype_all, list) {
diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c
index d876b87..2b88295 100644
--- a/net/sched/sch_netem.c
+++ b/net/sched/sch_netem.c
@@ -280,6 +280,14 @@ static struct sk_buff *netem_dequeue(struct Qdisc *sch)
if ...From: Alex Sidorenko <alexandre.sidorenko@hp.com> Ok I'll add Jarek's patch to the tree, thanks for testing. --
