blob: d5fb6e1e259a84d229d962cf24d1c14e41f4d534 [file] [log] [blame]
bartafe82262008-06-01 08:48:48 +00001/*--------------------------------------------------------------------*/
2/*--- Replacements for strlen() and strnlen(), which run on the ---*/
3/*--- simulated CPU. ---*/
4/*--------------------------------------------------------------------*/
5
6/*
bartbedfd232009-03-26 19:07:15 +00007 This file is part of DRD, a heavyweight Valgrind tool for
8 detecting threading errors. The code below has been extracted
9 from memchec/mc_replace_strmem.c, which has the following copyright
10 notice:
bartafe82262008-06-01 08:48:48 +000011
sewardj03f8d3f2012-08-05 15:46:46 +000012 Copyright (C) 2000-2012 Julian Seward
bartbedfd232009-03-26 19:07:15 +000013 jseward@acm.org
bartafe82262008-06-01 08:48:48 +000014
bartbedfd232009-03-26 19:07:15 +000015 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
bartafe82262008-06-01 08:48:48 +000019
bartbedfd232009-03-26 19:07:15 +000020 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
bartafe82262008-06-01 08:48:48 +000024
bartbedfd232009-03-26 19:07:15 +000025 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
bartafe82262008-06-01 08:48:48 +000029
bartbedfd232009-03-26 19:07:15 +000030 The GNU General Public License is contained in the file COPYING.
bartafe82262008-06-01 08:48:48 +000031*/
32
33#include "pub_tool_basics.h"
34#include "pub_tool_hashtable.h"
35#include "pub_tool_redir.h"
36#include "pub_tool_tooliface.h"
37#include "valgrind.h"
38
39
bartbedfd232009-03-26 19:07:15 +000040#define STRNLEN(soname, fnname) \
bartafe82262008-06-01 08:48:48 +000041 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ); \
42 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ) \
bartbedfd232009-03-26 19:07:15 +000043 { \
44 SizeT i = 0; \
45 while (i < n && str[i] != 0) i++; \
46 return i; \
bartafe82262008-06-01 08:48:48 +000047 }
48
sewardj3c944452011-09-05 20:39:57 +000049#if defined(VGO_linux)
50 STRNLEN(VG_Z_LIBC_SONAME, strnlen)
51#elif defined(VGO_darwin)
52 STRNLEN(VG_Z_LIBC_SONAME, strnlen)
53#endif
bart31b983d2010-02-21 14:52:59 +000054
bartafe82262008-06-01 08:48:48 +000055
56// Note that this replacement often doesn't get used because gcc inlines
57// calls to strlen() with its own built-in version. This can be very
58// confusing if you aren't expecting it. Other small functions in this file
59// may also be inline by gcc.
bartbedfd232009-03-26 19:07:15 +000060#define STRLEN(soname, fnname) \
61 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ); \
62 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ) \
63 { \
64 SizeT i = 0; \
65 while (str[i] != 0) i++; \
66 return i; \
bartafe82262008-06-01 08:48:48 +000067 }
68
njnb4cfbc42009-05-04 04:20:02 +000069#if defined(VGO_linux)
sewardj3c944452011-09-05 20:39:57 +000070 STRLEN(VG_Z_LIBC_SONAME, strlen)
71 STRLEN(VG_Z_LD_LINUX_SO_2, strlen)
72 STRLEN(VG_Z_LD_LINUX_X86_64_SO_2, strlen)
73#elif defined(VGO_darwin)
74 STRLEN(VG_Z_LIBC_SONAME, strlen)
njnb4cfbc42009-05-04 04:20:02 +000075#endif
bartafe82262008-06-01 08:48:48 +000076
77/*--------------------------------------------------------------------*/
78/*--- end ---*/
79/*--------------------------------------------------------------------*/