fortify-headers

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

commit 95f63b308458f6459bf9b04142a68a8b01cdd902
parent d548f4a37de5858bcdb9ac3e9c9c02b506827509
Author: sin <sin@2f30.org>
Date:   Tue,  3 Mar 2015 20:36:35 +0000

Add mbstowcs() check

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

diff --git a/include/wchar.h b/include/wchar.h @@ -41,6 +41,17 @@ __fortify_mbsrtowcs(wchar_t *d, const char **s, } static inline __attribute__ ((always_inline)) +size_t +__fortify_mbstowcs(wchar_t *d, const char *s, size_t wn) +{ + size_t bos = __builtin_object_size(d, 0); + + if (wn > bos / sizeof(wchar_t)) + __builtin_trap(); + return mbstowcs(d, s, wn); +} + +static inline __attribute__ ((always_inline)) wchar_t * __fortify_wmemcpy(wchar_t *d, const wchar_t *s, size_t n) { @@ -79,6 +90,8 @@ __fortify_wmemset(wchar_t *s, wchar_t c, size_t n) #define mbsnrtowcs(d, s, n, wn, st) __fortify_mbsnrtowcs(d, s, n, wn, st) #undef mbsrtowcs #define mbsrtowcs(d, s, wn, st) __fortify_mbsrtowcs(d, s, wn, st) +#undef mbstowcs +#define mbstowcs(d, s, wn) __fortify_mbstowcs(d, s, wn) #undef wmemcpy #define wmemcpy(d, s, n) __fortify_wmemcpy(d, s, n) #undef wmemmove