There’s a really cool little mmap gadget that maps the same underlying memory region into two contiguous virtual memory address ranges. When you write past the end of the first mapped region, the remaining bytes end up in the second mapped region (and at the start of the first one). Fabien Giesen calls this a “Magic Ring Buffer”, which is good enough for me.
I wondered whether the virtual memory contortions would survive contact with IO Uring’s registered buffers. It turns out (spoiler alert) that they do, and it’s virtual memory all the way down.
I wrote a little test application, and have published it on my Github with some more comments here.
Essentially, what the app does is:
- Constructs a Magic Buffer (using my
MgCircularBufferimplementation here, I know … it’s not circular) - Uses
io_uring_register_buffersto register the buffer’s “double extent” with the kernel - Writes a kdb IPC message across the “seam” in the magic buffer
- Uses
io_uring_prep_write_fixedto send the message to a couple of connected KDB instances
It works as expected.