From: "Linus Lüssing" <linus.luessing@c0d3.blue>
To: b.a.t.m.a.n@lists.open-mesh.org
Subject: [B.A.T.M.A.N.] [PATCH v2 2/2] batman-adv: fix splat on disabling an interface
Date: Wed, 17 Aug 2016 23:07:59 +0200 [thread overview]
Message-ID: <20160817210759.19357-3-linus.luessing@c0d3.blue> (raw)
In-Reply-To: <20160817210759.19357-1-linus.luessing@c0d3.blue>
As long as there is still a reference for a hard interface held, there
might still be a forwarding packet relying on its attributes.
Therefore avoid setting hard_iface->soft_iface to NULL when disabling a
hard interface.
This fixes the following, potential splat:
~~~~
[ 3082.208900] batman_adv: bat0: Interface deactivated: eth1
[ 3082.209483] batman_adv: bat0: Removing interface: eth1
[ 3092.087816] cgroup: new mount options do not match the existing superblock, will be ignored
[ 3095.774399] batman_adv: bat0: Interface deactivated: eth3
[ 3095.780828] batman_adv: bat0: Removing interface: eth3
[ 3096.344658] ------------[ cut here ]------------
[ 3096.345168] WARNING: CPU: 3 PID: 1986 at ./net/batman-adv/bat_iv_ogm.c:549 batadv_iv_send_outstanding_bat_ogm_packet+0x145/0x643 [batman_adv]
[ 3096.348972] Modules linked in: batman_adv(O-) evdev kvm_amd kvm acpi_cpufreq i2c_piix4 tpm_tis tpm irqbypass i2c_core serio_raw processor button bridge stp llc ipv6 autofs4 dm_mirror dm_region_hash dm_log dm_mod 9p fscache 9pnet_virtio 9pnet ata_generic virtio_pci libata virtio_ring virtio scsi_mod e1000 [last unloaded: batman_adv]
[ 3096.437029] CPU: 3 PID: 1986 Comm: kworker/u8:2 Tainted: G W O 4.6.0-rc6+ #1
[ 3096.439874] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.7.5-20140531_083030-gandalf 04/01/2014
[ 3096.452150] Workqueue: bat_events batadv_iv_send_outstanding_bat_ogm_packet [batman_adv]
[ 3096.452150] 0000000000000000 ffff88001d93bca0 ffffffff8126c26b 0000000000000000
[ 3096.452150] 0000000000000000 ffff88001d93bcf0 ffffffff81051615 ffff88001f19f818
[ 3096.452150] 000002251d93bd68 0000000000000046 ffff88001dc04a00 ffff88001becbe48
[ 3096.452150] Call Trace:
[ 3096.452150] [<ffffffff8126c26b>] dump_stack+0x67/0x90
[ 3096.452150] [<ffffffff81051615>] __warn+0xc7/0xe5
[ 3096.452150] [<ffffffff8105164b>] warn_slowpath_null+0x18/0x1a
[ 3096.452150] [<ffffffffa0356f24>] batadv_iv_send_outstanding_bat_ogm_packet+0x145/0x643 [batman_adv]
[ 3096.452150] [<ffffffff8108b01f>] ? __lock_is_held+0x32/0x54
[ 3096.452150] [<ffffffff810689a2>] process_one_work+0x2a8/0x4f5
[ 3096.452150] [<ffffffff81068856>] ? process_one_work+0x15c/0x4f5
[ 3096.452150] [<ffffffff81068df2>] worker_thread+0x1d5/0x2c0
[ 3096.452150] [<ffffffff81068c1d>] ? process_scheduled_works+0x2e/0x2e
[ 3096.452150] [<ffffffff81068c1d>] ? process_scheduled_works+0x2e/0x2e
[ 3096.452150] [<ffffffff8106dd90>] kthread+0xc0/0xc8
[ 3096.452150] [<ffffffff8144de82>] ret_from_fork+0x22/0x40
[ 3096.452150] [<ffffffff8106dcd0>] ? __init_kthread_worker+0x55/0x55
[ 3096.612402] ---[ end trace 647f9f325123dc05 ]---
~~~~
What happened here is, that there was still a forw_packet (here: a
BATMAN IV OGM) in the queue of eth3 with the forw_packet->if_incoming
set to eth1 and the forw_packet->if_outgoing set to eth3.
When eth3 is to be deactivated and removed, then this thread waits for
the forw_packet queued on eth3 to finish. Because eth1 was deactivated
and removed earlier and by that had forw_packet->if_incoming->soft_iface,
set to NULL, the splat when trying to send/flush the OGM on eth3
occures.
Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
---
Changes in v2:
* none, new patch
---
net/batman-adv/hard-interface.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c
index 08ce361..e034afb 100644
--- a/net/batman-adv/hard-interface.c
+++ b/net/batman-adv/hard-interface.c
@@ -652,7 +652,6 @@ void batadv_hardif_disable_interface(struct batadv_hard_iface *hard_iface,
batadv_softif_destroy_sysfs(hard_iface->soft_iface);
}
- hard_iface->soft_iface = NULL;
batadv_hardif_put(hard_iface);
out:
--
2.1.4
prev parent reply other threads:[~2016-08-17 21:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-17 21:07 [B.A.T.M.A.N.] [PATCH v2 0/2] batman-adv: hard interface removal fixes Linus Lüssing
2016-08-17 21:07 ` [B.A.T.M.A.N.] [PATCH v2 1/2] batman-adv: fix race conditions on interface removal Linus Lüssing
2016-09-29 15:39 ` Sven Eckelmann
2016-09-29 16:05 ` Sven Eckelmann
2016-09-29 16:22 ` Sven Eckelmann
2016-08-17 21:07 ` Linus Lüssing [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=20160817210759.19357-3-linus.luessing@c0d3.blue \
--to=linus.luessing@c0d3.blue \
--cc=b.a.t.m.a.n@lists.open-mesh.org \
/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