Skip to content

Commit 6dd37fd

Browse files
Jamie Ilesgregkh
Jamie Iles
authored andcommitted
bonding: wait for sysfs kobject destruction before freeing struct slave
[ Upstream commit b9ad3e9 ] 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]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent beead01 commit 6dd37fd

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
@@ -1293,19 +1293,57 @@ static void bond_upper_dev_unlink(struct bonding *bond, struct slave *slave)
12931293
slave->dev->flags &= ~IFF_SLAVE;
12941294
}
12951295

1296-
static struct slave *bond_alloc_slave(struct bonding *bond)
1296+
static void slave_kobj_release(struct kobject *kobj)
1297+
{
1298+
struct slave *slave = to_slave(kobj);
1299+
struct bonding *bond = bond_get_bond_by_slave(slave);
1300+
1301+
cancel_delayed_work_sync(&slave->notify_work);
1302+
if (BOND_MODE(bond) == BOND_MODE_8023AD)
1303+
kfree(SLAVE_AD_INFO(slave));
1304+
1305+
kfree(slave);
1306+
}
1307+
1308+
static struct kobj_type slave_ktype = {
1309+
.release = slave_kobj_release,
1310+
#ifdef CONFIG_SYSFS
1311+
.sysfs_ops = &slave_sysfs_ops,
1312+
#endif
1313+
};
1314+
1315+
static int bond_kobj_init(struct slave *slave)
1316+
{
1317+
int err;
1318+
1319+
err = kobject_init_and_add(&slave->kobj, &slave_ktype,
1320+
&(slave->dev->dev.kobj), "bonding_slave");
1321+
if (err)
1322+
kobject_put(&slave->kobj);
1323+
1324+
return err;
1325+
}
1326+
1327+
static struct slave *bond_alloc_slave(struct bonding *bond,
1328+
struct net_device *slave_dev)
12971329
{
12981330
struct slave *slave = NULL;
12991331

13001332
slave = kzalloc(sizeof(*slave), GFP_KERNEL);
13011333
if (!slave)
13021334
return NULL;
13031335

1336+
slave->bond = bond;
1337+
slave->dev = slave_dev;
1338+
1339+
if (bond_kobj_init(slave))
1340+
return NULL;
1341+
13041342
if (BOND_MODE(bond) == BOND_MODE_8023AD) {
13051343
SLAVE_AD_INFO(slave) = kzalloc(sizeof(struct ad_slave_info),
13061344
GFP_KERNEL);
13071345
if (!SLAVE_AD_INFO(slave)) {
1308-
kfree(slave);
1346+
kobject_put(&slave->kobj);
13091347
return NULL;
13101348
}
13111349
}
@@ -1314,17 +1352,6 @@ static struct slave *bond_alloc_slave(struct bonding *bond)
13141352
return slave;
13151353
}
13161354

1317-
static void bond_free_slave(struct slave *slave)
1318-
{
1319-
struct bonding *bond = bond_get_bond_by_slave(slave);
1320-
1321-
cancel_delayed_work_sync(&slave->notify_work);
1322-
if (BOND_MODE(bond) == BOND_MODE_8023AD)
1323-
kfree(SLAVE_AD_INFO(slave));
1324-
1325-
kfree(slave);
1326-
}
1327-
13281355
static void bond_fill_ifbond(struct bonding *bond, struct ifbond *info)
13291356
{
13301357
info->bond_mode = BOND_MODE(bond);
@@ -1508,14 +1535,12 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
15081535
goto err_undo_flags;
15091536
}
15101537

1511-
new_slave = bond_alloc_slave(bond);
1538+
new_slave = bond_alloc_slave(bond, slave_dev);
15121539
if (!new_slave) {
15131540
res = -ENOMEM;
15141541
goto err_undo_flags;
15151542
}
15161543

1517-
new_slave->bond = bond;
1518-
new_slave->dev = slave_dev;
15191544
/* Set the new_slave's queue_id to be zero. Queue ID mapping
15201545
* is set via sysfs or module option if desired.
15211546
*/
@@ -1837,7 +1862,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev,
18371862
dev_set_mtu(slave_dev, new_slave->original_mtu);
18381863

18391864
err_free:
1840-
bond_free_slave(new_slave);
1865+
kobject_put(&new_slave->kobj);
18411866

18421867
err_undo_flags:
18431868
/* Enslave of first slave has failed and we need to fix master's mac */
@@ -2017,7 +2042,7 @@ static int __bond_release_one(struct net_device *bond_dev,
20172042
if (!netif_is_bond_master(slave_dev))
20182043
slave_dev->priv_flags &= ~IFF_BONDING;
20192044

2020-
bond_free_slave(slave);
2045+
kobject_put(&slave->kobj);
20212046

20222047
return 0;
20232048
}

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
@@ -180,6 +180,11 @@ struct slave {
180180
struct rtnl_link_stats64 slave_stats;
181181
};
182182

183+
static inline struct slave *to_slave(struct kobject *kobj)
184+
{
185+
return container_of(kobj, struct slave, kobj);
186+
}
187+
183188
struct bond_up_slave {
184189
unsigned int count;
185190
struct rcu_head rcu;
@@ -743,6 +748,9 @@ extern struct bond_parm_tbl ad_select_tbl[];
743748
/* exported from bond_netlink.c */
744749
extern struct rtnl_link_ops bond_link_ops;
745750

751+
/* exported from bond_sysfs_slave.c */
752+
extern const struct sysfs_ops slave_sysfs_ops;
753+
746754
static inline void bond_tx_drop(struct net_device *dev, struct sk_buff *skb)
747755
{
748756
atomic_long_inc(&dev->tx_dropped);

0 commit comments

Comments
 (0)