question about drivers/acpi/sysfs.c

From: Julia Lawall
Date: Mon Jan 31 2011 - 11:29:12 EST


The function acpi_tables_sysfs_init contains two calls to
kobject_create_and_add and then a loop,
and then at the end tests a function return value and returns either 0 or
-EINVAL. If the second call to kobject_create_and_add fails, then the
result of the first one is freed, returning -ENOMEM. On the other hand,
inside the loop, there are some possible failures that don't free the
kobject_create_and_add allocated memory. This memory does appear to be
accessible from a global pointer, acpi_kobj, but there is now one -ENOMEM
case where the data has been freed and one case (from inside the loop)
where it has not. Also the data is not freed in the -EINVAL case. (The
code is below).

On failure of an init function, should the data accessible from a global
variable be freed? The loop also puts data in a list that also appears to
be accessible from a global pointer. Should that be freed as well?

Overall, it seems clear that when things are only referenced by local
variables they should be cleaned up, but when they are referenced by
global variables, it is less clear what to do.

thanks,
julia



static int acpi_tables_sysfs_init(void)
{
struct acpi_table_attr *table_attr;
struct acpi_table_header *table_header = NULL;
int table_index = 0;
int result;

tables_kobj = kobject_create_and_add("tables", acpi_kobj);
if (!tables_kobj)
goto err;

dynamic_tables_kobj = kobject_create_and_add("dynamic", tables_kobj);
if (!dynamic_tables_kobj)
goto err_dynamic_tables;

do {
result = acpi_get_table_by_index(table_index, &table_header);
if (!result) {
table_index++;
table_attr = NULL;
table_attr =
kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL);
if (!table_attr)
return -ENOMEM;

acpi_table_attr_init(table_attr, table_header);
result =
sysfs_create_bin_file(tables_kobj,
&table_attr->attr);
if (result) {
kfree(table_attr);
return result;
} else
list_add_tail(&table_attr->node,
&acpi_table_attr_list);
}
} while (!result);
kobject_uevent(tables_kobj, KOBJ_ADD);
kobject_uevent(dynamic_tables_kobj, KOBJ_ADD);
result = acpi_install_table_handler(acpi_sysfs_table_handler, NULL);

return result == AE_OK ? 0 : -EINVAL;
err_dynamic_tables:
kobject_put(tables_kobj);
err:
return -ENOMEM;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/