From: xuyang2018.jy@fujitsu.com <xuyang2018.jy@fujitsu.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH v4 1/2] network/tc01.sh: Add a regression test for tc qdisc command
Date: Mon, 19 Jul 2021 05:45:34 +0000 [thread overview]
Message-ID: <60F51190.4090906@fujitsu.com> (raw)
In-Reply-To: <1626081029-11258-1-git-send-email-xuyang2018.jy@fujitsu.com>
Hi Alexey
Thanks for your review, I have merged this patch.
Best Regards
Yang Xu
> Reviewed-by: Alexey Kodanev<aleksei.kodanev@bell-sw.com>
> Signed-off-by: Yang Xu<xuyang2018.jy@fujitsu.com>
> ---
> runtest/net.tcp_cmds | 1 +
> testcases/network/tcp_cmds/tc/Makefile | 10 ++++++
> testcases/network/tcp_cmds/tc/tc01.sh | 47 ++++++++++++++++++++++++++
> 3 files changed, 58 insertions(+)
> create mode 100644 testcases/network/tcp_cmds/tc/Makefile
> create mode 100755 testcases/network/tcp_cmds/tc/tc01.sh
>
> diff --git a/runtest/net.tcp_cmds b/runtest/net.tcp_cmds
> index db47dfd5b..7e142de11 100644
> --- a/runtest/net.tcp_cmds
> +++ b/runtest/net.tcp_cmds
> @@ -12,6 +12,7 @@ netstat netstat01.sh
> ping01 ping01.sh
> ping02 ping02.sh
> sendfile sendfile01.sh
> +tc01 tc01.sh
> tcpdump tcpdump01.sh
> telnet telnet01.sh
> iptables iptables01.sh
> diff --git a/testcases/network/tcp_cmds/tc/Makefile b/testcases/network/tcp_cmds/tc/Makefile
> new file mode 100644
> index 000000000..b4d8b86ee
> --- /dev/null
> +++ b/testcases/network/tcp_cmds/tc/Makefile
> @@ -0,0 +1,10 @@
> +# SPDX-License-Identifier: GPL-2.0-or-later
> +# Copyright (c) 2021 FUJITSU LIMITED. All rights reserved.
> +
> +top_srcdir ?= ../../../..
> +
> +include $(top_srcdir)/include/mk/env_pre.mk
> +
> +INSTALL_TARGETS := tc01.sh
> +
> +include $(top_srcdir)/include/mk/generic_leaf_target.mk
> diff --git a/testcases/network/tcp_cmds/tc/tc01.sh b/testcases/network/tcp_cmds/tc/tc01.sh
> new file mode 100755
> index 000000000..a9da45b41
> --- /dev/null
> +++ b/testcases/network/tcp_cmds/tc/tc01.sh
> @@ -0,0 +1,47 @@
> +#!/bin/sh
> +# SPDX-License-Identifier: GPL-2.0-or-later
> +# Copyright (c) 2021 FUJITSU LIMITED. All rights reserved.
> +# Author: Yang Xu<xuyang2018.jy@fujitsu.com>
> +#
> +# When using "tc qdisc add dev teql0 root teql0 command", qdisc_create()
> +# calls teql_qdisc_init() it imediately fails after check "if (m->dev == dev)"
> +# because both devices are teql0, and it does not set qdisc_priv(sch)->m
> +# leaving it zero on error path, then qdisc_create() imediately calls
> +# teql_destroy() which does not expect zero master pointer and we get OOPS
> +# on unpatched kernel.
> +#
> +# If we enable panic_on_oops, this case may crash.
> +#
> +# This kernel bug was introduced by
> +# commit 87b60cfacf9f ("net_sched: fix error recovery at qdisc creation")
> +# and has been fixed by
> +# commit 1ffbc7ea9160 ("net: sched: sch_teql: fix null-pointer dereference")
> +#
> +
> +TST_SETUP="setup"
> +TST_TESTFUNC="do_test"
> +TST_NEEDS_ROOT=1
> +TST_NEEDS_DRIVERS="sch_teql"
> +TST_NEEDS_CMDS="tc modprobe dmesg grep"
> +
> +. tst_test.sh
> +
> +setup()
> +{
> + ROD modprobe $TST_NEEDS_DRIVERS
> +}
> +
> +do_test()
> +{
> + tst_res TINFO "Use tc qdisc command to trigger a null-pointer dereference"
> +
> + EXPECT_FAIL tc qdisc add dev teql0 root teql0
> +
> + if dmesg | grep -q 'RIP:.*sch_teql'; then
> + tst_res TFAIL "This bug is reproduced."
> + else
> + tst_res TPASS "This bug is not reproduced."
> + fi
> +}
> +
> +tst_run
prev parent reply other threads:[~2021-07-19 5:45 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-07 9:22 [LTP] [PATCH] network/tc01.sh: Add a regression test for tc qdisc command Yang Xu
2021-07-07 14:03 ` Alexey Kodanev
2021-07-08 6:22 ` xuyang2018.jy
2021-07-08 8:42 ` [LTP] [PATCH v2] " Yang Xu
2021-07-09 10:05 ` Alexey Kodanev
2021-07-12 2:18 ` [LTP] [PATCH v3] " Yang Xu
2021-07-12 8:19 ` Alexey Kodanev
2021-07-12 9:10 ` [LTP] [PATCH v4 1/2] " Yang Xu
2021-07-12 9:10 ` [LTP] [PATCH v4 2/2] testcase/network: Remove useless MAKE_TARGETS Yang Xu
2021-07-21 17:14 ` Petr Vorel
2021-07-19 5:45 ` xuyang2018.jy [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=60F51190.4090906@fujitsu.com \
--to=xuyang2018.jy@fujitsu.com \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox