Re: [RFC] ML-KEM (FIPS 203) implementation with reusable decapsulation pool
kstzavertaylo <[email protected]>
| Newsgroups | org.kernel.vger.linux-crypto |
|---|---|
| Message-ID | <CAMho2Rd5GDg=qE6d9azSwRaPvSLFO550-G_-VmnS84M9=8Op0g@mail.gmail.com> |
Hello, I wanted to provide a final update since my previous message. The implementation and its documentation are now complete. I took your earlier feedback regarding the kernel integration into account. In particular, I abandoned the KPP-based design and ported the implementation as a lib/crypto component instead. The kernel port uses the same portable core as the userspace implementation, with a thin kernel-specific integration layer. The v1.4.0 release includes NIST KAT validation, stress tests, timing-leakage testing, stack and memory measurements, and performance comparisons: https://github.com/kstzv/ml-kem/releases/tag/v1.4.0 I understand that your ML-KEM and X-Wing series remains a proof of concept pending a concrete in-kernel user, and that the appropriate workspace and caching model will ultimately depend on that user. I do not want to propose patches without a concrete reason to replace or modify the existing implementation. However, if the completed architecture or results are of interest, I would be glad to continue the technical discussion. If a future in-kernel user makes this approach relevant, I would also be willing to adapt the implementation to its requirements and prepare patches for review. Thank you again for the earlier feedback. It directly influenced the kernel integration design. Best regards, K. S. Zavertailo On Wed, Jun 24, 2026 at 5:44 PM kstzavertaylo <[email protected]> wrote: > > Hello, > > Since our previous discussion, I have significantly updated the > userspace implementation and completed a series of benchmarks and > validation tests. > > The implementation allocates all memory required for a given key > during key creation and subsequently operates entirely within that > preallocated memory until the key is destroyed. > > During decapsulation, the same memory allocated at key creation is > reused across operations, eliminating runtime memory allocations in > the decapsulation path. > > > I compared the implementation against PQClean ML-KEM. The main observations are: > > * Stack usage remains approximately 1 KB regardless of the selected > ML-KEM security level. > * No memory allocations are performed during decapsulation. > * Throughput is generally comparable to PQClean. > * For ML-KEM-1024, the implementation is currently about 5–8% slower > than PQClean. > * The trade-off is increased persistent memory consumption and a more > complex internal architecture based on reusable preallocated > resources. > > I also took your earlier feedback into account and came to the > conclusion that integration through lib/crypto would be a better > direction than the KPP interface. As a result, I am now seriously > considering adapting the implementation for lib/crypto instead. > > In addition, I am continuing to investigate further optimizations in > pure C. If these experiments produce meaningful results, I will > publish them and would be happy to share the findings in the future. > > Benchmark results, methodology, stack usage measurements, memory usage > analysis, and PQClean comparisons are available here: > > Release: > https://github.com/kstzv/ml-kem/releases/tag/v1.1.0 > > Benchmarks: > https://github.com/kstzv/ml-kem/tree/v1.1.0/portable/userspace/benchmarks > > Thank you again for your earlier feedback. > > Best regards, > K. S. Zavertailo > > On Sun, Jun 14, 2026 at 10:50 AM kstzavertaylo <[email protected]> wrote: > > > > Thank you for the detailed feedback and for outlining the historical > > context regarding pools in the crypto subsystem. > > > > > > I understand your point of view and the preference for keeping the > > core implementation simple with per-operation allocations (or > > caller-provided workspaces), especially given the lack of precedent > > for pool-based designs in lib/crypto. My approach with the reusable > > decapsulation pool was driven by a focus on constrained environments > > where minimizing stack usage and relying on reusable preallocated > > working memory during the hot path can be particularly valuable. > > However, I fully agree that concrete data is needed to properly > > evaluate the trade-offs. > > > > > > I see your point regarding preallocated workspaces and caller-managed > > caching. One of the goals of my prototype was to explore a design > > where decapsulation operates on reusable preallocated contexts rather > > than per-call working memory, primarily to reduce stack requirements > > and move memory management into an initialization phase. I need to > > analyze more carefully how much of this can already be achieved > > through a caller-provided workspace model and whether the additional > > complexity of a dedicated pool is actually justified. > > > > > > I am currently working on benchmarks that compare stack consumption, > > allocation behavior, memory footprint, and performance between the > > different approaches. Once I have solid numbers, I will share the > > results and my conclusions. > > > > > > I also appreciate the clarification regarding KPP. My original > > prototype used KPP because it appeared to be the closest existing > > interface for key establishment, but I am not specifically attached to > > that approach and will spend some time evaluating how the same ideas > > could fit into the lib/crypto model as well. In the meantime, I will > > also look into how the pre-allocated workspace support you suggested > > could be integrated. > > > > > > Best regards, > > K. Zavertailo > > > > > > On Fri, Jun 12, 2026 at 9:32 PM Eric Biggers <[email protected]> wrote: > > > > > > On Fri, Jun 12, 2026 at 05:14:54PM +0300, kstzavertaylo wrote: > > > > Thank you for the detailed reply and for pointing me to the existing > > > > ML-KEM/X-Wing patchset. I spent some time reviewing the implementation > > > > to better understand the design choices and how they compare to the > > > > approach I took in my own work. > > > > > > > > After reviewing the patchset, I can see several strengths in the > > > > implementation. It integrates cleanly into the existing lib/crypto > > > > infrastructure, reuses kernel cryptographic primitives, avoids large > > > > stack allocations, and includes KUnit-based validation. The > > > > implementation also appears intentionally compact and well aligned > > > > with existing kernel conventions. > > > > > > > > While reviewing the implementation, I noticed that decapsulation > > > > allocates a temporary workspace for each operation. This is one of the > > > > areas where my design diverged, which is what originally motivated the > > > > reusable pool approach. > > > > > > > > My implementation was developed with a somewhat different goal in > > > > mind. I experimented with a reusable decapsulation workspace model > > > > where memory is allocated during key initialization and then reused > > > > across subsequent decapsulation operations. The main motivation was > > > > reducing allocation frequency and minimizing both stack usage and > > > > repeated memory management during decapsulation. > > > > > > > > As a result, the implementation avoids allocations during > > > > decapsulation entirely by reusing preallocated workspaces associated > > > > with the key context. My original hypothesis was that moving memory > > > > allocation to key initialization, thereby eliminating allocations from > > > > the decapsulation path, could reduce allocation overhead during > > > > repeated decapsulation operations and be beneficial in environments > > > > where allocation activity is considered undesirable. > > > > > > In my ML-KEM code, all the decapsulation memory is consolidated into > > > struct mlkem_decap_workspace. It would be straightforward to support > > > the caller providing a pre-allocated workspace. > > > > > > In the case of X-Wing, we could also support pre-expanding the > > > decapsulation key. > > > > > > It just depends on what is actually going to be needed by the kernel > > > feature(s) that are going to use this. Which we don't really know yet. > > > > > > We do know that it hasn't been found to be useful for the crypto > > > subsystem to provide pools for any other algorithm in the kernel, for a > > > variety of reasons. Usually callers can just allocate per-operation, or > > > they have some sort of object (inode, block device, socket, etc.) that's > > > a natural place for them to cache whatever they need anyway. In the > > > rare cases where some sort of pool is needed it's implemented in the > > > caller, optimized for the particular use case. So I think there's a > > > good chance your pool idea is going off on the wrong track. > > > > > > > Another difference is the integration level. My prototype explored > > > > direct integration through the KPP interface, whereas the patchset > > > > focuses on providing a reusable cryptographic library component within > > > > lib/crypto. These approaches address somewhat different layers of the > > > > kernel crypto stack. > > > > > > We don't need crypto_kpp support, as it's much more complex and harder > > > to use than the crypto library > > > (https://docs.kernel.org/crypto/libcrypto.html). Also it seems it's not > > > really possible anyway, since crypto_kpp is an old design that works for > > > Diffie-Hellman but not KEMs. > > > > > > - Eric