Skip to content
  • Kostya Kortchinsky's avatar
    f1a54fdf
    [scudo] Bypass Quarantine if its size is set to 0 · f1a54fdf
    Kostya Kortchinsky authored
    Summary:
    In the current state of things, the deallocation path puts a chunk in the
    Quarantine whether it's enabled or not (size of 0). When the Quarantine is
    disabled, this results in the header being loaded (and checked) twice, and
    stored (and checksummed) once, in `deallocate` and `Recycle`.
    
    This change introduces a `quarantineOrDeallocateChunk` function that has a
    fast path to deallocation if the Quarantine is disabled. Even though this is
    not the preferred configuration security-wise, this change saves a sizeable
    amount of processing for that particular situation (which could be adopted by
    low memory devices). Additionally this simplifies a bit `deallocate` and
    `reallocate`.
    
    Reviewers: dvyukov, kcc, alekseyshl
    
    Reviewed By: dvyukov
    
    Subscribers: llvm-commits
    
    Differential Revision: https://reviews.llvm.org/D32310
    
    llvm-svn: 301015
    f1a54fdf
    [scudo] Bypass Quarantine if its size is set to 0
    Kostya Kortchinsky authored
    Summary:
    In the current state of things, the deallocation path puts a chunk in the
    Quarantine whether it's enabled or not (size of 0). When the Quarantine is
    disabled, this results in the header being loaded (and checked) twice, and
    stored (and checksummed) once, in `deallocate` and `Recycle`.
    
    This change introduces a `quarantineOrDeallocateChunk` function that has a
    fast path to deallocation if the Quarantine is disabled. Even though this is
    not the preferred configuration security-wise, this change saves a sizeable
    amount of processing for that particular situation (which could be adopted by
    low memory devices). Additionally this simplifies a bit `deallocate` and
    `reallocate`.
    
    Reviewers: dvyukov, kcc, alekseyshl
    
    Reviewed By: dvyukov
    
    Subscribers: llvm-commits
    
    Differential Revision: https://reviews.llvm.org/D32310
    
    llvm-svn: 301015
Loading