Skip to content

Commit

Permalink
Merge tag 'thermal-6.12-rc3' of git://git.kernel.org/pub/scm/linux/ke…
Browse files Browse the repository at this point in the history
…rnel/git/rafael/linux-pm

Pull thermal control fixes from Rafael Wysocki:
 "Address possible use-after-free scenarios during the processing of
  thermal netlink commands and during thermal zone removal (Rafael
  Wysocki)"

* tag 'thermal-6.12-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
  thermal: core: Free tzp copy along with the thermal zone
  thermal: core: Reference count the zone in thermal_zone_get_by_id()
  • Loading branch information
torvalds committed Oct 11, 2024
2 parents 325354c + 827a075 commit f8fafb6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 deletions drivers/thermal/thermal_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -728,6 +728,7 @@ struct thermal_zone_device *thermal_zone_get_by_id(int id)
mutex_lock(&thermal_list_lock);
list_for_each_entry(tz, &thermal_tz_list, node) {
if (tz->id == id) {
get_device(&tz->device);
match = tz;
break;
}
Expand Down Expand Up @@ -1605,14 +1606,12 @@ void thermal_zone_device_unregister(struct thermal_zone_device *tz)
ida_destroy(&tz->ida);

device_del(&tz->device);

kfree(tz->tzp);

put_device(&tz->device);

thermal_notify_tz_delete(tz);

wait_for_completion(&tz->removal);
kfree(tz->tzp);
kfree(tz);
}
EXPORT_SYMBOL_GPL(thermal_zone_device_unregister);
Expand Down
3 changes: 3 additions & 0 deletions drivers/thermal/thermal_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ int for_each_thermal_governor(int (*cb)(struct thermal_governor *, void *),

struct thermal_zone_device *thermal_zone_get_by_id(int id);

DEFINE_CLASS(thermal_zone_get_by_id, struct thermal_zone_device *,
if (_T) put_device(&_T->device), thermal_zone_get_by_id(id), int id)

static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev)
{
return cdev->ops->get_requested_power && cdev->ops->state2power &&
Expand Down
9 changes: 3 additions & 6 deletions drivers/thermal/thermal_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,6 @@ static int thermal_genl_cmd_tz_get_trip(struct param *p)
{
struct sk_buff *msg = p->msg;
const struct thermal_trip_desc *td;
struct thermal_zone_device *tz;
struct nlattr *start_trip;
int id;

Expand All @@ -452,7 +451,7 @@ static int thermal_genl_cmd_tz_get_trip(struct param *p)

id = nla_get_u32(p->attrs[THERMAL_GENL_ATTR_TZ_ID]);

tz = thermal_zone_get_by_id(id);
CLASS(thermal_zone_get_by_id, tz)(id);
if (!tz)
return -EINVAL;

Expand Down Expand Up @@ -488,15 +487,14 @@ static int thermal_genl_cmd_tz_get_trip(struct param *p)
static int thermal_genl_cmd_tz_get_temp(struct param *p)
{
struct sk_buff *msg = p->msg;
struct thermal_zone_device *tz;
int temp, ret, id;

if (!p->attrs[THERMAL_GENL_ATTR_TZ_ID])
return -EINVAL;

id = nla_get_u32(p->attrs[THERMAL_GENL_ATTR_TZ_ID]);

tz = thermal_zone_get_by_id(id);
CLASS(thermal_zone_get_by_id, tz)(id);
if (!tz)
return -EINVAL;

Expand All @@ -514,15 +512,14 @@ static int thermal_genl_cmd_tz_get_temp(struct param *p)
static int thermal_genl_cmd_tz_get_gov(struct param *p)
{
struct sk_buff *msg = p->msg;
struct thermal_zone_device *tz;
int id, ret = 0;

if (!p->attrs[THERMAL_GENL_ATTR_TZ_ID])
return -EINVAL;

id = nla_get_u32(p->attrs[THERMAL_GENL_ATTR_TZ_ID]);

tz = thermal_zone_get_by_id(id);
CLASS(thermal_zone_get_by_id, tz)(id);
if (!tz)
return -EINVAL;

Expand Down

0 comments on commit f8fafb6

Please sign in to comment.