]> sourceware.org Git - glibc.git/commit
Don't add access size hints to fortifiable functions
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Tue, 12 Oct 2021 06:59:13 +0000 (12:29 +0530)
committerSiddhesh Poyarekar <siddhesh@sourceware.org>
Wed, 20 Oct 2021 03:03:31 +0000 (08:33 +0530)
commite938c02748402c50f60ba0eb983273e7b52937d1
tree5784cd55dd66558fbdef877150dac886b1b09e5d
parent46baeb61e16511f26db1b255e19dc9163f590367
Don't add access size hints to fortifiable functions

In the context of a function definition, the size hints imply that the
size of an object pointed to by one parameter is another parameter.
This doesn't make sense for the fortified versions of the functions
since that's the bit it's trying to validate.

This is harmless with __builtin_object_size since it has fairly simple
semantics when it comes to objects passed as function parameters.
With __builtin_dynamic_object_size we could (as my patchset for gcc[1]
already does) use the access attribute to determine the object size in
the general case but it misleads the fortified functions.

Basically the problem occurs when access attributes are present on
regular functions that have inline fortified definitions to generate
_chk variants; the attributes get inherited by these definitions,
causing problems when analyzing them.  For example with poll(fds, nfds,
timeout), nfds is hinted using the __attr_access as being the size of
fds.

Now, when analyzing the inline function definition in bits/poll2.h, the
compiler sees that nfds is the size of fds and tries to use that
information in the function body.  In _FORTIFY_SOURCE=3 case, where the
object size could be a non-constant expression, this information results
in the conclusion that nfds is the size of fds, which defeats the
purpose of the implementation because we're trying to check here if nfds
does indeed represent the size of fds.  Hence for this case, it is best
to not have the access attribute.

With the attributes gone, the expression evaluation should get delayed
until the function is actually inlined into its destinations.

Disable the access attribute for fortified function inline functions
when building at _FORTIFY_SOURCE=3 to make this work better.  The
access attributes remain for the _chk variants since they can be used
by the compiler to warn when the caller is passing invalid arguments.

[1] https://gcc.gnu.org/pipermail/gcc-patches/2021-October/581125.html

Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
io/bits/poll2.h
io/sys/poll.h
libio/bits/stdio2.h
libio/stdio.h
misc/sys/cdefs.h
posix/unistd.h
stdlib/stdlib.h
string/bits/string_fortified.h
string/string.h
This page took 0.043213 seconds and 5 git commands to generate.