[LLVMdev] (Not) instrumenting global string literals that end up in .cstrings on Mac

Alexander Potapenko glider at google.com
Thu Mar 21 07:05:05 PDT 2013


(forgot to CC llvmdev)

On Thu, Mar 21, 2013 at 5:54 PM, Alexander Potapenko <glider at google.com> wrote:
> Hey Anna, Nick, Ted,
>
> We've the following problem with string literals under ASan on Mac.
> Some global string constants end up being put into the .cstring
> section, for which the following rules apply:
>  - the strings can't contain zeroes in their bodies
>  - the link editor places only one copy of each literal into the
> output file's section
>
> ASan usually instruments the globals by adding redzones to the end of
> them and creating a structure that contains the size of a global with
> and without the redzone.
> For the aforementioned strings the linker will delete the redzones,
> but leave that structure untouched, which will lead to corrupt shadow
> memory at run time.
>
> Unfortunately at instrumentation time we can't tell for sure whether
> the string constant will be put into the .cstring section or not - the
> decision is taken at lowering time.
> https://code.google.com/p/address-sanitizer/issues/detail?id=171
> contains the writeup of the problem and a couple of suggestions on how
> it can be solved. But we aren't sure that any of the solutions is
> correct.
> I wonder if it's at all possible to understand that a given string
> constant is going to end up in a mergeable section. Otherwise, is it
> possible to make every string literal live in a non-mergeable section
> by setting the section name explicitly?
>
> TIA,
> Alex



More information about the llvm-dev mailing list