提交 24196f0c 编写于 作者: E Elena Reshetova 提交者: Bjorn Helgaas

PCI: hv: Convert hv_pci_dev.refs from atomic_t to refcount_t

refcount_t type and corresponding API should be used instead of atomic_t
when the variable is used as a reference counter.  This allows to avoid
accidental refcounter overflows that might lead to use-after-free
situations.
Signed-off-by: NElena Reshetova <elena.reshetova@intel.com>
Signed-off-by: NHans Liljestrand <ishkamiel@gmail.com>
Signed-off-by: NKees Cook <keescook@chromium.org>
Signed-off-by: NDavid Windsor <dwindsor@gmail.com>
Reviewed-by: NStephen Hemminger <sthemmin@microsoft.com>
上级 59c58cee
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
#include <asm/apic.h> #include <asm/apic.h>
#include <linux/msi.h> #include <linux/msi.h>
#include <linux/hyperv.h> #include <linux/hyperv.h>
#include <linux/refcount.h>
#include <asm/mshyperv.h> #include <asm/mshyperv.h>
/* /*
...@@ -423,7 +424,7 @@ enum hv_pcidev_ref_reason { ...@@ -423,7 +424,7 @@ enum hv_pcidev_ref_reason {
struct hv_pci_dev { struct hv_pci_dev {
/* List protected by pci_rescan_remove_lock */ /* List protected by pci_rescan_remove_lock */
struct list_head list_entry; struct list_head list_entry;
atomic_t refs; refcount_t refs;
enum hv_pcichild_state state; enum hv_pcichild_state state;
struct pci_function_description desc; struct pci_function_description desc;
bool reported_missing; bool reported_missing;
...@@ -1262,13 +1263,13 @@ static void q_resource_requirements(void *context, struct pci_response *resp, ...@@ -1262,13 +1263,13 @@ static void q_resource_requirements(void *context, struct pci_response *resp,
static void get_pcichild(struct hv_pci_dev *hpdev, static void get_pcichild(struct hv_pci_dev *hpdev,
enum hv_pcidev_ref_reason reason) enum hv_pcidev_ref_reason reason)
{ {
atomic_inc(&hpdev->refs); refcount_inc(&hpdev->refs);
} }
static void put_pcichild(struct hv_pci_dev *hpdev, static void put_pcichild(struct hv_pci_dev *hpdev,
enum hv_pcidev_ref_reason reason) enum hv_pcidev_ref_reason reason)
{ {
if (atomic_dec_and_test(&hpdev->refs)) if (refcount_dec_and_test(&hpdev->refs))
kfree(hpdev); kfree(hpdev);
} }
...@@ -1322,7 +1323,7 @@ static struct hv_pci_dev *new_pcichild_device(struct hv_pcibus_device *hbus, ...@@ -1322,7 +1323,7 @@ static struct hv_pci_dev *new_pcichild_device(struct hv_pcibus_device *hbus,
wait_for_completion(&comp_pkt.host_event); wait_for_completion(&comp_pkt.host_event);
hpdev->desc = *desc; hpdev->desc = *desc;
get_pcichild(hpdev, hv_pcidev_ref_initial); refcount_set(&hpdev->refs, 1);
get_pcichild(hpdev, hv_pcidev_ref_childlist); get_pcichild(hpdev, hv_pcidev_ref_childlist);
spin_lock_irqsave(&hbus->device_list_lock, flags); spin_lock_irqsave(&hbus->device_list_lock, flags);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册