Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port NaCl VMMap as a Rust Library #7

Closed
rennergade opened this issue Jul 25, 2024 · 5 comments
Closed

Port NaCl VMMap as a Rust Library #7

rennergade opened this issue Jul 25, 2024 · 5 comments
Assignees

Comments

@rennergade
Copy link
Contributor

We need an efficient memory map to be able to manage malloc and mmap effectively. It seems like a good start would be to port NaCl's memory map to Rust as a library.

@pranav-bhatt
Copy link

@pranav-bhatt
Copy link

@rennergade @yzhang71 @JustinCappos I've finished a bulk of the implementation of the Vmmap library, but there is still a ton of polishing and testing that needs to be done. Here is the repo link

I started out initially by trying to use BTreeMaps myself, but I had to sit and implement a ton of boilerplate operations for that. Eventually I decided to go library hunting cause I figured surely someone would have needed a non-overlapping interval tree map, and explored several options such as rangemap and rust-bio.

I ran into nodit three days ago, which performed quite well and was just what we needed. So I went ahead and redid the library using it. It provides a ton of useful abstractions, which makes working with intervals a piece of cake, and in future we can expose more of those if needed.

There are a few places where I've deviated from NaCl (mainly for the better), and I've roughly covered those in the above documentation. You can also find which of the functions are done, and which are still left (most are done, or don't need to be implement) in the docs as well.

I would love your feedback and reviews on the code if you feel something needs to be changed. I'm very unclear about the map alignment stuff so any inputs on that would be much appreciated!

@JustinCappos
Copy link
Member

JustinCappos commented Sep 27, 2024 via email

@rennergade
Copy link
Contributor Author

Yeah, I agree the next step here is adding testing. Dennis and I should be able to walk you through that if you have any questions.

@rennergade
Copy link
Contributor Author

rennergade commented Nov 18, 2024

TODOs as of 11/18:

Additional changes/PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants