•  
      request #41831 Panic when a Tuleap Function allocate more initial memory than allowed
    Infos
    #41831
    Thomas Gerbet (tgerbet)
    2025-02-24 12:25
    2025-02-12 16:26
    43507
    Details
    Panic when a Tuleap Function allocate more initial memory than allowed

    It works fine (i.e. we get the expected error) if the memory is allocated during the runtime with the grow instruction but it crashes when the memory is allocated from the memory section.

    The panic is not great since it will crash the PHP process that started the call.

    Easiest way to reproduce is with the following minimal WAT file:

    (module
      (memory 65536)
    )
    

    Trace:

    thread 'tests::tests::wasm_module_allocate_too_much_memory' panicked at src/lib.rs:208:10:
    Failed to instantiate imported instance: memory minimum size of 65536 pages exceeds memory limits
    note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
    thread 'tests::tests::wasm_module_allocate_too_much_memory' panicked at core/src/panicking.rs:221:5:
    panic in a function that cannot unwind
    
    Tuleap Functions
    Empty
    Empty
    • [ ] enhancement
    • [ ] internal improvement
    Empty
    Stage
    Thomas Gerbet (tgerbet)
    Closed
    2025-02-24
    Attachments
    Empty
    References

    Follow-ups

    User avatar
    Thomas Gerbet (tgerbet)2025-02-21 15:47

    • Summary
      -Panic when a Tuleap Function more memory than allowed 
      +Panic when a Tuleap Function allocate more initial memory than allowed 
    • Status changed from Verified to Under review