lkml.org 
[lkml]   [2011]   [Jun]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[34-longterm 188/247] PCI: sysfs: Fix failure path for addition of "vpd" attribute
    Date
    From: Ben Hutchings <bhutchings@solarflare.com>

    -------------------
    This is a commit scheduled for the next v2.6.34 longterm release.
    If you see a problem with using this for longterm, please comment.
    -------------------

    commit 0f12a4e29368a9476076515881d9ef4e5876c6e2 upstream.

    Commit 280c73d ("PCI: centralize the capabilities code in
    pci-sysfs.c") changed the initialisation of the "rom" and "vpd"
    attributes, and made the failure path for the "vpd" attribute
    incorrect. We must free the new attribute structure (attr), but
    instead we currently free dev->vpd->attr. That will normally be NULL,
    resulting in a memory leak, but it might be a stale pointer, resulting
    in a double-free.

    Found by inspection; compile-tested only.

    Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
    Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
    Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
    ---
    drivers/pci/pci-sysfs.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
    index f5cd68c..e1783bb 100644
    --- a/drivers/pci/pci-sysfs.c
    +++ b/drivers/pci/pci-sysfs.c
    @@ -995,7 +995,7 @@ static int pci_create_capabilities_sysfs(struct pci_dev *dev)
    attr->write = write_vpd_attr;
    retval = sysfs_create_bin_file(&dev->dev.kobj, attr);
    if (retval) {
    - kfree(dev->vpd->attr);
    + kfree(attr);
    return retval;
    }
    dev->vpd->attr = attr;
    --
    1.7.4.4


    \
     
     \ /
      Last update: 2011-06-23 19:41    [W:4.679 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site