Re: [PATCH 4/4] ACPI / PM: Expose lists of device power resources touser space

From: Greg Kroah-Hartman
Date: Tue Jan 22 2013 - 18:56:14 EST


On Tue, Jan 22, 2013 at 03:28:23AM +0100, Rafael J. Wysocki wrote:
> +static struct attribute *attrs[] = {
> + NULL,
> +};

That's "odd"...

> +static void acpi_power_hide_list(struct acpi_device *adev,
> + struct acpi_device_power_state *ps,
> + const char *group_name)
> {
> - if (adev->power.flags.power_resources) {
> - struct acpi_device_power_state *ps;
> - struct acpi_power_resource_entry *entry;
> -
> - ps = &adev->power.states[ACPI_STATE_D0];
> - list_for_each_entry(entry, &ps->resources, node) {
> - struct acpi_power_resource *resource = entry->resource;
> -
> - if (add)
> - acpi_power_add_dependent(resource, adev);
> - else
> - acpi_power_remove_dependent(resource, adev);
> + struct attribute_group attr_group = {
> + .name = group_name,
> + .attrs = attrs,
> + };

This is on the stack, which seems like it would not be good...

> + struct acpi_power_resource_entry *entry;
> +
> + list_for_each_entry_reverse(entry, &ps->resources, node) {
> + struct acpi_device *res_dev = &entry->resource->device;
> +
> + sysfs_remove_link_from_group(&adev->dev.kobj, group_name,
> + dev_name(&res_dev->dev));
> + }
> + sysfs_remove_group(&adev->dev.kobj, &attr_group);

You aren't removing the same group that you created. Well, kind of, but
that's strange, it really works?

> +static void acpi_power_expose_list(struct acpi_device *adev,
> + struct acpi_device_power_state *ps,
> + const char *group_name)
> +{
> + struct attribute_group attr_group = {
> + .name = group_name,
> + .attrs = attrs,
> + };

again a structure on the stack.

Why not just create the attribute groups as static, instead of
"pseudo-dynamically" like you are doing here? I have no idea if sysfs
can properly cope with an attribute group pointer that disappears after
it has been registered with the sysfs core. That seems ripe for
problems, don't you agree?

Oh, and same question about racing userspace, you will have problems
here in that the symlinks will be showing up after the device is
created. Perhaps, to make the whole thing easier, you just change the
acpi core code to hold off on the notification until you get all of
these links and files set up and then tell userspace. That's probably
an easier fix.

thanks,

greg k-h
--
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/