fortify-headers

standalone fortify-source implementation
git clone git://git.2f30.org/fortify-headers
Log | Files | Refs | README | LICENSE

commit 60a707681655d249af66cec6786a6fad8337b49c
parent 74ab2844967648a4e618467237480c6aba37b166
Author: sin <sin@2f30.org>
Date:   Sat, 28 Feb 2015 11:52:02 +0000

Add getdomainname() check

Diffstat:
Minclude/unistd.h | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/include/unistd.h b/include/unistd.h @@ -27,6 +27,19 @@ __fortify_getcwd(char *buf, size_t len) return getcwd(buf, len); } +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +static inline __attribute__ ((always_inline)) +int +__fortify_getdomainname(char *name, size_t len) +{ + size_t bos = __builtin_object_size(name, 0); + + if (len > bos) + __builtin_trap(); + return getdomainname(name, len); +} +#endif + static inline __attribute__ ((always_inline)) int __fortify_gethostname(char *name, size_t len) @@ -86,6 +99,12 @@ __fortify_write(int fd, const void *buf, size_t n) #define confstr(name, buf, len) __fortify_confstr(name, buf, len) #undef getcwd #define getcwd(buf, len) __fortify_getcwd(buf, len) + +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +#undef getdomainname +#define getdomainname(name, len) __fortify_getdomainname(name, len) +#endif + #undef gethostname #define gethostname(name, len) __fortify_gethostname(name, len) #undef getlogin_r