Linux kbuild/kconfig development
 help / color / mirror / Atom feed
* gcc extended format checking plugin
@ 2020-04-19 21:55 David Lamparter
  2020-04-19 22:34 ` Masahiro Yamada
  0 siblings, 1 reply; 2+ messages in thread
From: David Lamparter @ 2020-04-19 21:55 UTC (permalink / raw)
  To: linux-kbuild

Hello kernel build hackers,


in case it is of interest to anyone, we've recently added an extended
format string checking plugin in the FRRouting project.  We took
inspiration from the Linux kernel and modified a printf (funnily enough,
the one from FreeBSD) to support things like %pI4, and we wanted better
warnings for this.  Since the scheme is the same as in the Linux kernel,
it may or may not be worth someone's time to take a look.

The plugin is found here:
https://github.com/FRRouting/frr/tree/master/tools/gcc-plugins

It's derived from gcc's "c-format.c", as such it may make sense to look
at the diff instead of the straight source.  The original GCC code is in
the git history there.  It's tested against gcc 9.3.0, YMMV on other
versions.

Note that the plugin needs a single-line GCC source code modification:
https://github.com/FRRouting/frr/blob/master/tools/gcc-plugins/gcc-retain-typeinfo.patch
this is to stop GCC from prematurely stripping information, specifically
from casts in function parameters.  It does work without the change, but
it may produce false-positive/negative warnings.

Aside from %pXX suffix support, the plugin also contains two other
changes that are probably irrelevant to kernel land:
- it makes some typedefs "final" types since these are not guaranteed to
  be consistent in size across platforms and therefore can't be
  printf'd without a cast (e.g. pid_t, uid_t, time_t, etc.)
- it reserves %Lu for uint64_t

Please don't expect too much on its code quality, I'm not a GCC
developer and essentially wrote this by trial and error ;)

Cheers,


-David

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

end of thread, other threads:[~2020-04-19 22:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-19 21:55 gcc extended format checking plugin David Lamparter
2020-04-19 22:34 ` Masahiro Yamada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox