Annotate additional APIs with GCC attribute access.
authorMartin Sebor <msebor@redhat.com>
Thu, 6 May 2021 16:56:25 +0000 (10:56 -0600)
committerMartin Sebor <msebor@redhat.com>
Thu, 6 May 2021 17:01:05 +0000 (11:01 -0600)
commit26492c0a14966c32c43cd6ca1d0dca5e62c6cfef
tree1d2aceda8438c17113e02f86f2c8c31d58ac7f79
parent3f0808ef4c872afeade0e323c024ac59ec90fc2b
Annotate additional APIs with GCC attribute access.

This change continues the improvements to compile-time out of bounds
checking by decorating more APIs with either attribute access, or by
explicitly providing the array bound in APIs such as tmpnam() that
expect arrays of some minimum size as arguments.  (The latter feature
is new in GCC 11.)

The only effects of the attribute and/or the array bound is to check
and diagnose calls to the functions that fail to provide a sufficient
number of elements, and the definitions of the functions that access
elements outside the specified bounds.  (There is no interplay with
_FORTIFY_SOURCE here yet.)

Tested with GCC 7 through 11 on x86_64-linux.
16 files changed:
inet/if_index.c
io/bits/poll2.h
io/sys/poll.h
libio/stdio.h
misc/sys/uio.h
nss/makedb.c
posix/bug-regex33.c
posix/regex.h
pwd/pwd.h
stdio-common/tmpnam.c
stdio-common/tmpnam_r.c
stdlib/monetary.h
sysdeps/gnu/net/if.h
sysdeps/mach/hurd/if_index.c
sysdeps/unix/sysv/linux/if_index.c
sysdeps/unix/sysv/linux/test-errno-linux.c