From: Jeremy Fitzhardinge <jeremy@goop.org>
To: Andi Kleen <ak@suse.de>, Sam Ravnborg <sam@ravnborg.org>
Cc: Andrew Morton <akpm@osdl.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
"Eric W. Biederman" <ebiederm@xmission.com>
Subject: [PATCH] Tell modpost that any reference from .note* is OK
Date: Tue, 29 May 2007 13:33:20 -0700 [thread overview]
Message-ID: <465C8E10.8040608@goop.org> (raw)
.note* sections are ELF notes, which are typically used by external
tools to examine the kernel image. Since this is removed from any
runtime consideration, it's OK to reference any section from a .note*
section.
As a side-effect, this changes secref_whitelist to accept a NULL "atsym"
pointer, allowing it to be called when "before" is NULL. This is
needed for .note sections since they don't necessarily have any
symbols, and it also allows the .got2 check to to be folded into the
normal whitelist checks.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
---
scripts/mod/modpost.c | 31 +++++++++++++++++++++----------
1 file changed, 21 insertions(+), 10 deletions(-)
===================================================================
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -639,6 +639,14 @@ static int strrcmp(const char *s, const
* powerpc has a machine desc table for each platform.
* It is mixture of function pointers of .init.text and .text.
* fromsec = .machvec | .machine.desc
+ *
+ * Pattern 11:
+ * Any reference from an ELF note section (.note*) to another section
+ * is OK. ELF notes are only used by tools inspecting the actual
+ * kernel image, so runtime access is not an issue.
+ *
+ * Pattern 12:
+ * powerpc has a GOT table in .got2 section
**/
static int secref_whitelist(const char *modname, const char *tosec,
const char *fromsec, const char *atsym,
@@ -675,7 +683,7 @@ static int secref_whitelist(const char *
f1 = 0;
if (strncmp(fromsec, ".data", strlen(".data")) != 0)
f1 = 0;
- if (strncmp(atsym, "__param", strlen("__param")) != 0)
+ if (!atsym || strncmp(atsym, "__param", strlen("__param")) != 0)
f1 = 0;
if (f1)
@@ -690,7 +698,7 @@ static int secref_whitelist(const char *
f2 = 0;
for (s = pat2sym; *s; s++)
- if (strrcmp(atsym, *s) == 0)
+ if (atsym && strrcmp(atsym, *s) == 0)
f1 = 1;
if (f1 && f2)
return 1;
@@ -720,6 +728,14 @@ static int secref_whitelist(const char *
/* Check for pattern 10 */
if ((strcmp(fromsec, ".machvec") == 0) ||
(strcmp(fromsec, ".machine.desc") == 0))
+ return 1;
+
+ /* Check for pattern 11 */
+ if (strncmp(fromsec, ".note", strlen(".note")) == 0)
+ return 1;
+
+ /* Check for pattern 12 */
+ if (strcmp(fromsec, ".got2") == 0)
return 1;
return 0;
@@ -848,14 +864,9 @@ static void warn_sec_mismatch(const char
refsymname = elf->strtab + refsym->st_name;
/* check whitelist - we may ignore it */
- if (before &&
- secref_whitelist(modname, secname, fromsec,
- elf->strtab + before->st_name, refsymname))
- return;
-
- /* fromsec whitelist - without a valid 'before'
- * powerpc has a GOT table in .got2 section */
- if (strcmp(fromsec, ".got2") == 0)
+ if (secref_whitelist(modname, secname, fromsec,
+ before ? (elf->strtab + before->st_name) : NULL,
+ refsymname))
return;
if (before && after) {
next reply other threads:[~2007-05-29 20:34 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-29 20:33 Jeremy Fitzhardinge [this message]
2007-05-29 21:07 ` [PATCH] Tell modpost that any reference from .note* is OK Sam Ravnborg
2007-05-29 21:13 ` Jeremy Fitzhardinge
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=465C8E10.8040608@goop.org \
--to=jeremy@goop.org \
--cc=ak@suse.de \
--cc=akpm@osdl.org \
--cc=ebiederm@xmission.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sam@ravnborg.org \
/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