All of lore.kernel.org
 help / color / mirror / Atom feed
* a bug in genksysms/CONFIG_MODVERSIONS w/ __attribute__((foo))?
@ 2019-08-26 21:22 Nick Desaulniers
  2019-08-26 22:57 ` Nick Desaulniers
  0 siblings, 1 reply; 12+ messages in thread
From: Nick Desaulniers @ 2019-08-26 21:22 UTC (permalink / raw)
  To: Ard Biesheuvel, Masahiro Yamada, Linus Torvalds, Greg KH,
	Will Deacon, Arnd Bergmann, Michal Marek
  Cc: LKML

I'm looking into a linkage failure for one of our device kernels, and
it seems that genksyms isn't producing a hash value correctly for
aggregate definitions that contain __attribute__s like
__attribute__((packed)).

Example:
$ echo 'struct foo { int bar; };' | ./scripts/genksyms/genksyms -d
Defn for struct foo == <struct foo { int bar ; } >
Hash table occupancy 1/4096 = 0.000244141
$ echo 'struct __attribute__((packed)) foo { int bar; };' |
./scripts/genksyms/genksyms -d
Hash table occupancy 0/4096 = 0

I assume the __attribute__ part isn't being parsed correctly (looks
like genksyms is a lex/yacc based C parser).

The issue we have in our out of tree driver (*sadface*) is basically a
EXPORT_SYMBOL'd function whose signature contains a packed struct.

Theoretically, there should be nothing wrong with exporting a function
that requires packed structs, and this is just a bug in the lex/yacc
based parser, right?  I assume that not having CONFIG_MODVERSIONS
coverage of packed structs in particular could lead to potentially
not-fun bugs?  Or is using packed structs in exported function symbols
with CONFIG_MODVERSIONS forbidden in some documentation somewhere I
missed?
-- 
Thanks,
~Nick Desaulniers

^ permalink raw reply	[flat|nested] 12+ messages in thread
[parent not found: <CAOGTHR7wWaS+CdA9aR-8wWXa-AC47WBuLe5BEg01pFoKwKBpAw@mail.gmail.com>]

end of thread, other threads:[~2020-07-27 18:03 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-26 21:22 a bug in genksysms/CONFIG_MODVERSIONS w/ __attribute__((foo))? Nick Desaulniers
2019-08-26 22:57 ` Nick Desaulniers
2019-08-27  9:58   ` Nicholas Piggin
2019-08-27 10:49     ` Masahiro Yamada
2019-08-27 12:42       ` Nicholas Piggin
2019-08-27 15:34         ` Ben Hutchings
2019-08-27 17:09           ` Greg KH
2019-08-27 21:11             ` Ben Hutchings
2019-08-28  2:25           ` Nicholas Piggin
2019-08-28 17:17             ` Nick Desaulniers
2019-08-28 21:42               ` Matthias Maennich
     [not found] <CAOGTHR7wWaS+CdA9aR-8wWXa-AC47WBuLe5BEg01pFoKwKBpAw@mail.gmail.com>
2020-07-27 18:03 ` Nick Desaulniers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.