Rework or get rid of scratch space #1302

issue real-or-random openend this issue on May 10, 2023
  1. real-or-random commented at 1:30 pm on May 10, 2023: contributor

    Our confidence in the scratch space code isn’t particularly high. It reinvents bump allocation, but it had a few issues in the past. All the code that uses scratch space is currently unreachable from the public API (except that we have secp256k1_scratch_create and secp256k1_scratch_destroy themselves in the public API.

    A much simpler alternative is to get rid of scratch spaces and just assume the existence of malloc/free and use these directly. The disadvantage of this is that it’s a bit harder for platforms that don’t have malloc.

    Another alternative is to rework the scratch space code. It may be possible to simply it and improve its usability.

    I think our future directions on this should be guided by whatever we feel is best for our cases:

    • batch validation (see #1087 and #1134)
    • possibly musig2 key aggregation (maybe this is something people want to do run on hardware wallets?)
  2. apoelstra commented at 1:34 pm on May 10, 2023: contributor

    In secp256k1-zkp the scratch space gets actual usage, and I find it has a much nicer API than malloc/free. The API lets us:

    • Allocate a slab up-front (or rather, check that the user passed in enough memory)
    • As we are writing code, bump-allocate from the slab, asserting that we have enough, which sanity checks our up-front calculation
    • Before doing something branch-heavy, checkpointing the allocator, then in the end just resetting to that, rather than having to wrory about correct cleanup logic in every branch

    So I think it has more benefit than just replacing malloc and free for freestanding systems. Though it may still make sense to drop the code here and have it exclusively live in secp-zkp for a while.

  3. sipa commented at 3:50 pm on May 11, 2023: contributor

    @apoelstra We’ve discussed this a bit IRL, and it seems to me there are just a whole lot of only vaguely-overlapping concerns:

    • The fact that the scratch space API forces us to write code which has predictable (and settable) memory usage, is both very useful (but only to some users) and a large source of the complexity of accomodating the current scratch space API. However, nothing prevents us from having that property too in different ways (e.g. by passing a “max memory usage” argument to functions).
    • I believe there are reasonable extensions to the scratch space API which in fact keep the API, but break the predictable memory usage property. E.g. have the ability to initialize a scratch object with “just defer to malloc whenever memory is needed”.
    • Just because we have a scratch space API does not necessarily imply that all memory-demanding functionality needs to use it.
    • The scratch space today, as-is, is useless. It’s arguably a bug it’s even exposed, for two reasons:
      • It’s designed so that memory-demanding code can work in environments without malloc… however, that functionality isn’t currently exposed.
      • There are no APIs currently using it (though batch validation would use it, and musig might).

    My thinking is that the interface at least needs to be dropped from the API today, because it serves no purpose, and it seems to be guiding our thinking for future APIs. We can keep the internal logic for now - and possibly bring it back if it makes sense for a particular use case - but it’s easier to discuss all of that without being pre-biased by the scratch API.

  4. apoelstra commented at 4:04 pm on May 11, 2023: contributor
    @sipa these are all good points. concept ACK from me on removing the API from this library.
  5. real-or-random added the label assurance on May 11, 2023
  6. real-or-random added the label feature on May 11, 2023
  7. jonasnick commented at 1:52 pm on October 23, 2023: contributor

    The fact that the scratch space API forces us to write code which has predictable (and settable) memory usage, is both very useful (but only to some users) and a large source of the complexity of accomodating the current scratch space API. However, nothing prevents us from having that property too in different ways (e.g. by passing a “max memory usage” argument to functions).

    In the case of ecmult_multi, it can be argued that we could achieve similar predictability by adding a max_batch_size argument to ecmult_multi and the user-facing API (e.g., schnorrsig_batch_verify and musig_keyagg). This would have the advantage of freeing us from the complexity of dealing with memory usage.

    The predictability of max_batch_size is arguably similar because even with max_memory_usage and the current scratch space’s size, developers concerned about memory usage should test the functions they call with a large number of inputs. This is best practice and allows measuring actual memory usage (which is different due to overhead in the malloc implementation). If testing with a large number of inputs is necessary anyway, developers could run the same tests to determine a suitable max_batch_size.

    A downside of this approach is that adding more functions that dynamically allocate memory besides ecmult_multi risks leaking more max_... arguments to user-facing APIs in addition to max_batch_size.

  8. jonasnick added this to the milestone 0.5.0 on Jan 5, 2024
  9. real-or-random referenced this in commit 3660fe5e2a on Oct 7, 2024
  10. jonasnick commented at 1:57 pm on October 30, 2024: contributor
    The scratch space has been removed from the public API in #1620.
  11. jonasnick removed this from the milestone 0.6.0 on Oct 30, 2024
  12. real-or-random commented at 4:10 pm on November 1, 2024: contributor

    The scratch space has been removed from the public API in #1620.

    Should we close this then? AFAIU there’s nothing actionable for this particular issue. Of course, we still need to think about this when work on #1087 or MuSig2 key aggregation is continue.

  13. jonasnick commented at 4:12 pm on November 1, 2024: contributor
    I didn’t close this yet because we still have a scratch space in the code base that we intend to rework.
  14. real-or-random commented at 10:21 pm on November 1, 2024: contributor

    I didn’t close this yet because we still have a scratch space in the code base that we intend to rework.

    Ok, sure, it’s still in the code, just not in the public API. Nevermind.


github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin-core/secp256k1. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-21 15:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me