linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] modpost: abort if a module name is too long
@ 2017-05-20  7:46 Xie XiuQi
  2017-05-25  6:11 ` Wanlong Gao
  2017-05-29  9:10 ` Jessica Yu
  0 siblings, 2 replies; 19+ messages in thread
From: Xie XiuQi @ 2017-05-20  7:46 UTC (permalink / raw)
  To: akpm, jeyu
  Cc: linux-kernel, rusty, john.wanghui, wencongyang2, guijianfeng,
	gaowanlong, Xie XiuQi

From: Wanlong Gao <gaowanlong@huawei.com>

Module name has a limited length, but currently the build system
allows the build finishing even if the module name is too long.

  CC      /root/kprobe_example/abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz.mod.o
/root/kprobe_example/abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz.mod.c:9:2:
warning: initializer-string for array of chars is too long [enabled by default]
  .name = KBUILD_MODNAME,
  ^

but it's merely a warning.

This patch adds the check of the module name length in modpost and stops
the build properly.

Signed-off-by: Wanlong Gao <gaowanlong@huawei.com>
Signed-off-by: Xie XiuQi <xiexiuqi@huawei.com>
---
 scripts/mod/modpost.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 30d752a..db11c57 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -2166,6 +2166,17 @@ static int add_versions(struct buffer *b, struct module *mod)
 {
 	struct symbol *s, *exp;
 	int err = 0;
+	const char *mod_name;
+
+	mod_name = strrchr(mod->name, '/');
+	if (mod_name == NULL)
+		mod_name = mod->name;
+	else
+		mod_name++;
+	if (strlen(mod_name) >= MODULE_NAME_LEN) {
+		merror("module name is too long [%s.ko]\n", mod->name);
+		return 1;
+	}
 
 	for (s = mod->unres; s; s = s->next) {
 		exp = find_symbol(s->name);
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2017-06-22 14:58 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-20  7:46 [PATCH] modpost: abort if a module name is too long Xie XiuQi
2017-05-25  6:11 ` Wanlong Gao
2017-05-27  1:27   ` Rusty Russell
2017-05-29  9:10 ` Jessica Yu
2017-05-31  2:23   ` Wanlong Gao
2017-05-31  3:30     ` Jessica Yu
2017-05-31  3:39       ` Wanlong Gao
2017-05-31  3:48       ` Wanlong Gao
2017-06-01 11:51         ` Wanlong Gao
2017-06-01 23:23         ` Jessica Yu
2017-06-02  3:04           ` Wanlong Gao
2017-06-02  3:44             ` Wanlong Gao
2017-06-05  2:09             ` Jessica Yu
2017-06-06  1:07               ` Wanlong Gao
2017-06-07  3:41                 ` Jessica Yu
2017-06-21 16:09                   ` Jessica Yu
2017-06-22  1:11                     ` Wanlong Gao
2017-06-22 14:25                       ` Jessica Yu
2017-06-22 14:57                         ` Wanlong Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).