Commit 34bb61f9 authored by James Bottomley's avatar James Bottomley Committed by Linus Torvalds

[PATCH] fix klist semantics for lists which have elements removed on traversal

The problem is that klists claim to provide semantics for safe traversal of
lists which are being modified.  The failure case is when traversal of a
list causes element removal (a fairly common case).  The issue is that
although the list node is refcounted, if it is embedded in an object (which
is universally the case), then the object will be freed regardless of the
klist refcount leading to slab corruption because the klist iterator refers
to the prior element to get the next.

The solution is to make the klist take and release references to the
embedding object meaning that the embedding object won't be released until
the list relinquishes the reference to it.

(akpm: fast-track this because it's needed for the 2.6.13 scsi merge)
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent df4edad1
...@@ -568,6 +568,36 @@ static void bus_remove_attrs(struct bus_type * bus) ...@@ -568,6 +568,36 @@ static void bus_remove_attrs(struct bus_type * bus)
} }
} }
static void klist_devices_get(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_bus);
get_device(dev);
}
static void klist_devices_put(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_bus);
put_device(dev);
}
static void klist_drivers_get(struct klist_node *n)
{
struct device_driver *drv = container_of(n, struct device_driver,
knode_bus);
get_driver(drv);
}
static void klist_drivers_put(struct klist_node *n)
{
struct device_driver *drv = container_of(n, struct device_driver,
knode_bus);
put_driver(drv);
}
/** /**
* bus_register - register a bus with the system. * bus_register - register a bus with the system.
* @bus: bus. * @bus: bus.
...@@ -602,8 +632,8 @@ int bus_register(struct bus_type * bus) ...@@ -602,8 +632,8 @@ int bus_register(struct bus_type * bus)
if (retval) if (retval)
goto bus_drivers_fail; goto bus_drivers_fail;
klist_init(&bus->klist_devices); klist_init(&bus->klist_devices, klist_devices_get, klist_devices_put);
klist_init(&bus->klist_drivers); klist_init(&bus->klist_drivers, klist_drivers_get, klist_drivers_put);
bus_add_attrs(bus); bus_add_attrs(bus);
pr_debug("bus type '%s' registered\n", bus->name); pr_debug("bus type '%s' registered\n", bus->name);
......
...@@ -191,6 +191,20 @@ void device_remove_file(struct device * dev, struct device_attribute * attr) ...@@ -191,6 +191,20 @@ void device_remove_file(struct device * dev, struct device_attribute * attr)
} }
} }
static void klist_children_get(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_parent);
get_device(dev);
}
static void klist_children_put(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_parent);
put_device(dev);
}
/** /**
* device_initialize - init device structure. * device_initialize - init device structure.
...@@ -207,7 +221,8 @@ void device_initialize(struct device *dev) ...@@ -207,7 +221,8 @@ void device_initialize(struct device *dev)
{ {
kobj_set_kset_s(dev, devices_subsys); kobj_set_kset_s(dev, devices_subsys);
kobject_init(&dev->kobj); kobject_init(&dev->kobj);
klist_init(&dev->klist_children); klist_init(&dev->klist_children, klist_children_get,
klist_children_put);
INIT_LIST_HEAD(&dev->dma_pools); INIT_LIST_HEAD(&dev->dma_pools);
init_MUTEX(&dev->sem); init_MUTEX(&dev->sem);
} }
......
...@@ -142,6 +142,19 @@ void put_driver(struct device_driver * drv) ...@@ -142,6 +142,19 @@ void put_driver(struct device_driver * drv)
kobject_put(&drv->kobj); kobject_put(&drv->kobj);
} }
static void klist_devices_get(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_driver);
get_device(dev);
}
static void klist_devices_put(struct klist_node *n)
{
struct device *dev = container_of(n, struct device, knode_driver);
put_device(dev);
}
/** /**
* driver_register - register driver with bus * driver_register - register driver with bus
...@@ -157,7 +170,7 @@ void put_driver(struct device_driver * drv) ...@@ -157,7 +170,7 @@ void put_driver(struct device_driver * drv)
*/ */
int driver_register(struct device_driver * drv) int driver_register(struct device_driver * drv)
{ {
klist_init(&drv->klist_devices); klist_init(&drv->klist_devices, klist_devices_get, klist_devices_put);
init_completion(&drv->unloaded); init_completion(&drv->unloaded);
return bus_add_driver(drv); return bus_add_driver(drv);
} }
......
...@@ -17,15 +17,17 @@ ...@@ -17,15 +17,17 @@
#include <linux/kref.h> #include <linux/kref.h>
#include <linux/list.h> #include <linux/list.h>
struct klist_node;
struct klist { struct klist {
spinlock_t k_lock; spinlock_t k_lock;
struct list_head k_list; struct list_head k_list;
void (*get)(struct klist_node *);
void (*put)(struct klist_node *);
}; };
extern void klist_init(struct klist * k); extern void klist_init(struct klist * k, void (*get)(struct klist_node *),
void (*put)(struct klist_node *));
struct klist_node { struct klist_node {
struct klist * n_klist; struct klist * n_klist;
......
...@@ -42,12 +42,23 @@ ...@@ -42,12 +42,23 @@
/** /**
* klist_init - Initialize a klist structure. * klist_init - Initialize a klist structure.
* @k: The klist we're initializing. * @k: The klist we're initializing.
* @get: The get function for the embedding object (NULL if none)
* @put: The put function for the embedding object (NULL if none)
*
* Initialises the klist structure. If the klist_node structures are
* going to be embedded in refcounted objects (necessary for safe
* deletion) then the get/put arguments are used to initialise
* functions that take and release references on the embedding
* objects.
*/ */
void klist_init(struct klist * k) void klist_init(struct klist * k, void (*get)(struct klist_node *),
void (*put)(struct klist_node *))
{ {
INIT_LIST_HEAD(&k->k_list); INIT_LIST_HEAD(&k->k_list);
spin_lock_init(&k->k_lock); spin_lock_init(&k->k_lock);
k->get = get;
k->put = put;
} }
EXPORT_SYMBOL_GPL(klist_init); EXPORT_SYMBOL_GPL(klist_init);
...@@ -74,6 +85,8 @@ static void klist_node_init(struct klist * k, struct klist_node * n) ...@@ -74,6 +85,8 @@ static void klist_node_init(struct klist * k, struct klist_node * n)
init_completion(&n->n_removed); init_completion(&n->n_removed);
kref_init(&n->n_ref); kref_init(&n->n_ref);
n->n_klist = k; n->n_klist = k;
if (k->get)
k->get(n);
} }
...@@ -110,9 +123,12 @@ EXPORT_SYMBOL_GPL(klist_add_tail); ...@@ -110,9 +123,12 @@ EXPORT_SYMBOL_GPL(klist_add_tail);
static void klist_release(struct kref * kref) static void klist_release(struct kref * kref)
{ {
struct klist_node * n = container_of(kref, struct klist_node, n_ref); struct klist_node * n = container_of(kref, struct klist_node, n_ref);
void (*put)(struct klist_node *) = n->n_klist->put;
list_del(&n->n_node); list_del(&n->n_node);
complete(&n->n_removed); complete(&n->n_removed);
n->n_klist = NULL; n->n_klist = NULL;
if (put)
put(n);
} }
static int klist_dec_and_del(struct klist_node * n) static int klist_dec_and_del(struct klist_node * n)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment