FORTIFY_SOURCE: fortify strrchr

This change compliments 049e58369c

Change-Id: I27d015d70a520713c7472558a3c427f546d36ee4
This commit is contained in:
Nick Kralevich
2012-12-03 10:36:13 -08:00
parent 60fb68338b
commit 9a4d305340
2 changed files with 30 additions and 2 deletions

View File

@@ -240,6 +240,22 @@ char* strchr(const char *s, int c) {
return __strchr_chk(s, c, bos);
}
__purefunc extern char* __strrchr_real(const char *, int)
__asm__(__USER_LABEL_PREFIX__ "strrchr");
extern char* __strrchr_chk(const char *, int, size_t);
__BIONIC_FORTIFY_INLINE
char* strrchr(const char *s, int c) {
size_t bos = __builtin_object_size(s, 0);
// Compiler doesn't know destination size. Don't call __strrchr_chk
if (bos == __BIONIC_FORTIFY_UNKNOWN_SIZE) {
return __strrchr_real(s, c);
}
return __strrchr_chk(s, c, bos);
}
#endif /* defined(__BIONIC_FORTIFY_INLINE) */