From: Arthur Jones <ajones@riverbed.com>
To: Greg KH <greg@kroah.com>
Cc: linux-kernel@vger.kernel.org, Doug Thompson <norsk5@yahoo.com>,
bluesmoke-devel@lists.sourceforge.net
Subject: on static kobjects and double frees...
Date: Tue, 10 Jun 2008 08:58:50 -0700 [thread overview]
Message-ID: <20080610155848.GS26334@ajones-laptop.nbttech.com> (raw)
Hi Greg, The edac pci sysfs generic layer uses a static
kobject as a placeholder parent where edac pci drivers
are inserted. An atomic count is used to know when
to kobject_init_add_add or kobject_put the static kobject.
The issue with this is that the name gets double freed
on the second module load as edac does not clear it, and
kobject_cleanup does not clear it.
The quick fix was to clear the static kobj name before
calling kobject_init, but that seems a bit fragile as it
involves knowing the internals of kobject_put. Perhaps
the name should be cleared before calling the kobject
release method? Something like this (not even compile
tested):
diff --git a/lib/kobject.c b/lib/kobject.c
index 718e510..7dfe906 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -552,6 +552,9 @@ static void kobject_cleanup(struct kobject *kobj)
if (t && t->release) {
pr_debug("kobject: '%s' (%p): calling ktype release\n",
kobject_name(kobj), kobj);
+
+ /* avoid double free with static kobjects... */
+ kobj->name = NULL;
t->release(kobj);
}
What do you think? I'm happy to implement and test whatever
you think is best...
The edac code in question is drivers/edac/edac_pci_sysfs.c,
the static kobject is called edac_pci_top_main_kobj...
Arthur
next reply other threads:[~2008-06-10 15:59 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-06-10 15:58 Arthur Jones [this message]
2008-06-10 16:23 ` Greg KH
2008-06-10 16:38 ` Arthur Jones
2008-06-10 16:42 ` Greg KH
2008-06-10 16:58 ` Arthur Jones
2008-06-10 21:14 ` Doug Thompson
2008-06-10 21:39 ` Arthur Jones
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080610155848.GS26334@ajones-laptop.nbttech.com \
--to=ajones@riverbed.com \
--cc=bluesmoke-devel@lists.sourceforge.net \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
--cc=norsk5@yahoo.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®