Skip to content

Commit b9ad3e9

Browse files
Jamie Ileskuba-moo
Jamie Iles
authored andcommitted
bonding: wait for sysfs kobject destruction before freeing struct slave
syzkaller found that with CONFIG_DEBUG_KOBJECT_RELEASE=y, releasing a struct slave device could result in the following splat: kobject: 'bonding_slave' (00000000cecdd4fe): kobject_release, parent 0000000074ceb2b2 (delayed 1000) bond0 (unregistering): (slave bond_slave_1): Releasing backup interface ------------[ cut here ]------------ ODEBUG: free active (active state 0) object type: timer_list hint: workqueue_select_cpu_near kernel/workqueue.c:1549 [inline] ODEBUG: free active (active state 0) object type: timer_list hint: delayed_work_timer_fn+0x0/0x98 kernel/workqueue.c:1600 WARNING: CPU: 1 PID: 842 at lib/debugobjects.c:485 debug_print_object+0x180/0x240 lib/debugobjects.c:485 Kernel panic - not syncing: panic_on_warn set ... CPU: 1 PID: 842 Comm: kworker/u4:4 Tainted: G S 5.9.0-rc8+ #96 Hardware name: linux,dummy-virt (DT) Workqueue: netns cleanup_net Call trace: dump_backtrace+0x0/0x4d8 include/linux/bitmap.h:239 show_stack+0x34/0x48 arch/arm64/kernel/traps.c:142 __dump_stack lib/dump_stack.c:77 [inline] dump_stack+0x174/0x1f8 lib/dump_stack.c:118 panic+0x360/0x7a0 kernel/panic.c:231 __warn+0x244/0x2ec kernel/panic.c:600 report_bug+0x240/0x398 lib/bug.c:198 bug_handler+0x50/0xc0 arch/arm64/kernel/traps.c:974 call_break_hook+0x160/0x1d8 arch/arm64/kernel/debug-monitors.c:322 brk_handler+0x30/0xc0 arch/arm64/kernel/debug-monitors.c:329 do_debug_exception+0x184/0x340 arch/arm64/mm/fault.c:864 el1_dbg+0x48/0xb0 arch/arm64/kernel/entry-common.c:65 el1_sync_handler+0x170/0x1c8 arch/arm64/kernel/entry-common.c:93 el1_sync+0x80/0x100 arch/arm64/kernel/entry.S:594 debug_print_object+0x180/0x240 lib/debugobjects.c:485 __debug_check_no_obj_freed lib/debugobjects.c:967 [inline] debug_check_no_obj_freed+0x200/0x430 lib/debugobjects.c:998 slab_free_hook mm/slub.c:1536 [inline] slab_free_freelist_hook+0x190/0x210 mm/slub.c:1577 slab_free mm/slub.c:3138 [inline] kfree+0x13c/0x460 mm/slub.c:4119 bond_free_slave+0x8c/0xf8 drivers/net/bonding/bond_main.c:1492 __bond_release_one+0xe0c/0xec8 drivers/net/bonding/bond_main.c:2190 bond_slave_netdev_event drivers/net/bonding/bond_main.c:3309 [inline] bond_netdev_event+0x8f0/0xa70 drivers/net/bonding/bond_main.c:3420 notifier_call_chain+0xf0/0x200 kernel/notifier.c:83 __raw_notifier_call_chain kernel/notifier.c:361 [inline] raw_notifier_call_chain+0x44/0x58 kernel/notifier.c:368 call_netdevice_notifiers_info+0xbc/0x150 net/core/dev.c:2033 call_netdevice_notifiers_extack net/core/dev.c:2045 [inline] call_netdevice_notifiers net/core/dev.c:2059 [inline] rollback_registered_many+0x6a4/0xec0 net/core/dev.c:9347 unregister_netdevice_many.part.0+0x2c/0x1c0 net/core/dev.c:10509 unregister_netdevice_many net/core/dev.c:10508 [inline] default_device_exit_batch+0x294/0x338 net/core/dev.c:10992 ops_exit_list.isra.0+0xec/0x150 net/core/net_namespace.c:189 cleanup_net+0x44c/0x888 net/core/net_namespace.c:603 process_one_work+0x96c/0x18c0 kernel/workqueue.c:2269 worker_thread+0x3f0/0xc30 kernel/workqueue.c:2415 kthread+0x390/0x498 kernel/kthread.c:292 ret_from_fork+0x10/0x18 arch/arm64/kernel/entry.S:925 This is a potential use-after-free if the sysfs nodes are being accessed whilst removing the struct slave, so wait for the object destruction to complete before freeing the struct slave itself. Fixes: 07699f9 ("bonding: add sysfs /slave dir for bond slave devices.") Fixes: a068aab ("bonding: Fix reference count leak in bond_sysfs_slave_add.") Cc: Qiushi Wu <[email protected]> Cc: Jay Vosburgh <[email protected]> Cc: Veaceslav Falico <[email protected]> Cc: Andy Gospodarek <[email protected]> Signed-off-by: Jamie Iles <[email protected]> Reviewed-by: Greg Kroah-Hartman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
1 parent 207d0bf commit b9ad3e9

File tree

3 files changed

+52
-35
lines changed

3 files changed

+52
-35
lines changed

drivers/net/bonding/bond_main.c

Lines changed: 43 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,19 +1460,57 @@ static void bond_upper_dev_unlink(struct bonding *bond, struct slave *slave)
14601460
slave->dev->flags &= ~IFF_SLAVE;
14611461
}
14621462

1463-
static struct slave *bond_alloc_slave(struct bonding *bond)
1463+
static void slave_kobj_release(struct kobject *kobj)
1464+
{
1465+
struct slave *slave = to_slave(kobj);
1466+
struct bonding *bond = bond_get_bond_by_slave(slave);
1467+
1468+
cancel_delayed_work_sync(&slave->notify_work);
1469+
if (BOND_MODE(bond) == BOND_MODE_8023AD)
1470+
kfree(SLAVE_AD_INFO(slave));
1471+
1472+
kfree(slave);
1473+
}
1474+
1475+
static struct kobj_type slave_ktype = {
1476+
.release = slave_kobj_release,
1477+
#ifdef CONFIG_SYSFS
1478+
.sysfs_ops = &slave_sysfs_ops,
1479+
#endif
1480+
};
1481+
1482+
static int bond_kobj_init(struct slave *slave)
1483+
{
1484+
int err;
1485+
1486+
err = kobject_init_and_add(&slave->kobj, &slave_ktype,
1487+
&(slave->dev->dev.kobj), "bonding_slave");
1488+
if (err)
1489+
kobject_put(&slave->kobj);
1490+
1491+
return err;
1492+
}
1493+
1494+
static struct slave *bond_alloc_slave(struct bonding *bond,
1495+
struct net_device *slave_dev)
14641496
{
14651497
struct slave *slave = NULL;
14661498

14671499
slave = kzalloc(sizeof(*slave), GFP_KERNEL);
14681500
if (!slave)
14691501
return NULL;
14701502

1503+
slave->bond = bond;
1504+
slave->dev = slave_dev;
1505+
1506+
if (bond_kobj_init(slave))
1507+
return NULL;
1508+
14711509
if (BOND_MODE(bond) == BOND_MODE_8023AD) {
14721510
SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info),
14731511
GFP_KERNEL);
14741512
if (!SLAVE_AD_INFO(slave)) {
1475-
kfree(slave);
1513+
kobject_put(&slave->kobj);
14761514
return NULL;
14771515
}
14781516
}
@@ -1481,17 +1519,6 @@ static struct slave *bond_alloc_slave(struct bonding *bond)
14811519
return slave;
14821520
}
14831521

1484-
static void bond_free_slave(struct slave *slave)
1485-
{
1486-
struct bonding *bond = bond_get_bond_by_slave(slave);
1487-
1488-
cancel_delayed_work_sync(&slave->notify_work);
1489-
if (BOND_MODE(bond) == BOND_MODE_8023AD)
1490-
kfree(SLAVE_AD_INFO(slave));
1491-
1492-
kfree(slave);
1493-
}
1494-
14951522
static void bond_fill_ifbond(struct bonding *bond, struct ifbond *info)
14961523
{
14971524
info->bond_mode = BOND_MODE(bond);
@@ -1678,14 +1705,12 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
16781705
goto err_undo_flags;
16791706
}
16801707

1681-
new_slave = bond_alloc_slave(bond);
1708+
new_slave = bond_alloc_slave(bond, slave_dev);
16821709
if (!new_slave) {
16831710
res = -ENOMEM;
16841711
goto err_undo_flags;
16851712
}
16861713

1687-
new_slave->bond = bond;
1688-
new_slave->dev = slave_dev;
16891714
/* Set the new_slave's queue_id to be zero. Queue ID mapping
16901715
* is set via sysfs or module option if desired.
16911716
*/
@@ -2007,7 +2032,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
20072032
dev_set_mtu(slave_dev, new_slave->original_mtu);
20082033

20092034
err_free:
2010-
bond_free_slave(new_slave);
2035+
kobject_put(&new_slave->kobj);
20112036

20122037
err_undo_flags:
20132038
/* Enslave of first slave has failed and we need to fix master's mac */
@@ -2187,7 +2212,7 @@ static int __bond_release_one(struct net_device *bond_dev,
21872212
if (!netif_is_bond_master(slave_dev))
21882213
slave_dev->priv_flags &= ~IFF_BONDING;
21892214

2190-
bond_free_slave(slave);
2215+
kobject_put(&slave->kobj);
21912216

21922217
return 0;
21932218
}

drivers/net/bonding/bond_sysfs_slave.c

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ static const struct slave_attribute *slave_attrs[] = {
121121
};
122122

123123
#define to_slave_attr(_at) container_of(_at, struct slave_attribute, attr)
124-
#define to_slave(obj) container_of(obj, struct slave, kobj)
125124

126125
static ssize_t slave_show(struct kobject *kobj,
127126
struct attribute *attr, char *buf)
@@ -132,28 +131,15 @@ static ssize_t slave_show(struct kobject *kobj,
132131
return slave_attr->show(slave, buf);
133132
}
134133

135-
static const struct sysfs_ops slave_sysfs_ops = {
134+
const struct sysfs_ops slave_sysfs_ops = {
136135
.show = slave_show,
137136
};
138137

139-
static struct kobj_type slave_ktype = {
140-
#ifdef CONFIG_SYSFS
141-
.sysfs_ops = &slave_sysfs_ops,
142-
#endif
143-
};
144-
145138
int bond_sysfs_slave_add(struct slave *slave)
146139
{
147140
const struct slave_attribute **a;
148141
int err;
149142

150-
err = kobject_init_and_add(&slave->kobj, &slave_ktype,
151-
&(slave->dev->dev.kobj), "bonding_slave");
152-
if (err) {
153-
kobject_put(&slave->kobj);
154-
return err;
155-
}
156-
157143
for (a = slave_attrs; *a; ++a) {
158144
err = sysfs_create_file(&slave->kobj, &((*a)->attr));
159145
if (err) {
@@ -171,6 +157,4 @@ void bond_sysfs_slave_del(struct slave *slave)
171157

172158
for (a = slave_attrs; *a; ++a)
173159
sysfs_remove_file(&slave->kobj, &((*a)->attr));
174-
175-
kobject_put(&slave->kobj);
176160
}

include/net/bonding.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,11 @@ struct slave {
185185
struct rtnl_link_stats64 slave_stats;
186186
};
187187

188+
static inline struct slave *to_slave(struct kobject *kobj)
189+
{
190+
return container_of(kobj, struct slave, kobj);
191+
}
192+
188193
struct bond_up_slave {
189194
unsigned int count;
190195
struct rcu_head rcu;
@@ -750,6 +755,9 @@ extern struct bond_parm_tbl ad_select_tbl[];
750755
/* exported from bond_netlink.c */
751756
extern struct rtnl_link_ops bond_link_ops;
752757

758+
/* exported from bond_sysfs_slave.c */
759+
extern const struct sysfs_ops slave_sysfs_ops;
760+
753761
static inline netdev_tx_t bond_tx_drop(struct net_device *dev, struct sk_buff *skb)
754762
{
755763
atomic_long_inc(&dev->tx_dropped);

0 commit comments

Comments
 (0)