Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1499891 > unrolled thread

[BUG] errors in void transport_add_device() function

Started byTahsin Erdogan <tahsin@google.com>
First post2016-10-12 21:00 +0200
Last post2016-10-12 21:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [BUG] errors in void transport_add_device() function Tahsin Erdogan <tahsin@google.com> - 2016-10-12 21:00 +0200

#1499891 — [BUG] errors in void transport_add_device() function

FromTahsin Erdogan <tahsin@google.com>
Date2016-10-12 21:00 +0200
Subject[BUG] errors in void transport_add_device() function
Message-ID<srwUW-8js-9@gated-at.bofh.it>
transport_add_device() is declared as void but it can actually fail.
Since the caller has no knowledge of the error, a later call to
transport_remove_device() may cause a kernel crash.

An example is a memory allocation error in this call path:

int device_private_init(struct device *dev)
{
        dev->p = kzalloc(sizeof(*dev->p), GFP_KERNEL);

device_private_init
device_add
attribute_container_add_class_device
transport_add_class_device
attribute_container_device_trigger
transport_add_device


This results in a NULL pointer access in device_del():

        if (parent)
                klist_del(&dev->p->knode_parent);

klist_del
device_del
attribute_container_class_device_del
transport_remove_classdev
attribute_container_device_trigger
transport_remove_device

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web