Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using Obj-C blocks triggers a false-positive ODR violation #360

Closed
ramosian-glider opened this issue Sep 1, 2015 · 2 comments
Closed

Using Obj-C blocks triggers a false-positive ODR violation #360

ramosian-glider opened this issue Sep 1, 2015 · 2 comments

Comments

@ramosian-glider
Copy link
Member

Originally reported on Google Code with ID 360

On OS X top-of-tree Clang+AddressSanitizer, the following produces a false positive
ODR violation during initialization:

    void f() {
        int y = 7;
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0),
^{
            dispatch_sync(dispatch_get_main_queue(), ^{
                printf("num = %d\n", y);
            });
        });
    }

    =================================================================
    ==98053==ERROR: AddressSanitizer: odr-violation (0x00010cb4ae20):
      [1] size=1 'OBJC_CLASS_NAME_2' /tmp/llvm/projects/compiler-rt/test/asan/TestCases/Darwin/objc-odr.mm
      [2] size=1 'OBJC_CLASS_NAME_' /tmp/llvm/projects/compiler-rt/test/asan/TestCases/Darwin/objc-odr.mm
    These globals were registered at these points:
      [1]:
        #0 0x10cb5989c  (/tmp/llvm-cmake-debug/lib/clang/3.6.0/lib/darwin/libclang_rt.asan_osx_dynamic.dylib+0x889c)
        #1 0x10cb4ac2b  (/tmp/llvm-cmake-debug/projects/compiler-rt/test/asan/64bitConfig/TestCases/Darwin/Output/objc-odr.mm.tmp+0x100001c2b)
        #2 0x7fff67e5acea  (<unknown module>)
        #3 0x7fff67e5ae77  (<unknown module>)
      ...

Apparently, something changed in the way Obj-C globals are generated or instrumented.
See the attached test case.

Reported by kuba.brecka on 2014-12-02 20:09:25


- _Attachment: [objc-odr.mm](https://storage.googleapis.com/google-code-attachments/address-sanitizer/issue-360/comment-0/objc-odr.mm)_
@ramosian-glider
Copy link
Member Author

This is now fixed with http://reviews.llvm.org/D6488 and r223513 and r223514.

Reported by kuba.brecka on 2014-12-09 21:30:25

  • Status changed: Fixed

@ramosian-glider
Copy link
Member Author

Adding Project:AddressSanitizer as part of GitHub migration.

Reported by ramosian.glider on 2015-07-30 09:14:08

  • Labels added: ProjectAddressSanitizer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant