Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-100334

StackLocator broken by v5 toolchain ASAN

    • Type: Icon: Bug Bug
    • Resolution: Fixed
    • Priority: Icon: Major - P3 Major - P3
    • 8.2.0-rc0
    • Affects Version/s: None
    • Component/s: None
    • None
    • Server Programmability
    • Fully Compatible
    • ALL
    • None
    • None
    • None
    • None
    • None
    • None
    • None

      In Clang 15, the detect_stack_use_after_return ASAN option was enabled by default. This option seems to make automatic storage duration objects not go on the stack. StackLocator assumes such objects are on the stack. See here - the object assumes this is on the stack and compares this to the bounds of the stack (which are determined in a platform-specific way) to estimate how much stack space remains. StackLocator also invokes UB by doing relational comparisons and subtractions on pointers that aren't from the same allocation.

      One possible fix is to use __builtin_frame_address(0) to get the frame pointer instead of using the address of a local variable. However, StackLocator is only used in one place in mozjs here - it controls the amount of stack space available to javascript. Maybe instead of trying to fix StackLocator, we could do something different here like setting the quota to 50% of all stack space?

      There's another minor test-only case here where we make the same assumption about an automatic storage duration variable being on the stack.

            Assignee:
            ryan.berryhill@mongodb.com Ryan Berryhill
            Reporter:
            ryan.berryhill@mongodb.com Ryan Berryhill
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:
              None
              None
              None
              None