Add bcopy() checks

This commit is contained in:
sin 2015-01-29 10:43:00 +00:00
부모 2f6dc9f34f
커밋 52d4c97980

28
include/strings.h Normal file
파일 보기

@ -0,0 +1,28 @@
#ifndef FORTIFY_STRINGS_H_
#define FORTIFY_STRINGS_H_
#include_next <strings.h>
#if defined(_FORTIFY_SOURCE) && _FORTIFY_SOURCE > 0 && defined(__OPTIMIZE__) && __OPTIMIZE__ > 0
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) || defined(_POSIX_SOURCE) \
|| (defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE+0 < 200809L) \
|| (defined(_XOPEN_SOURCE) && _XOPEN_SOURCE+0 < 700)
static inline __attribute__ ((always_inline))
void __fortify_bcopy(const void *__restrict src, void *__restrict dest, size_t n)
{
size_t bos = __builtin_object_size(dest, 0);
if (n > bos)
__builtin_trap();
return bcopy(src, dest, n);
}
#undef bcopy
#define bcopy(src, dest, n) __fortify_bcopy(src, dest, n)
#endif
#endif
#endif