Is there any initial task that I can start with?
It is going to be a learning exercise for me at the beginning, but I will learn fast and start contributing value to the project.
There has been some recent work on trying to replace dangerous (or
easily misused) APIs in the kernel with safer alternatives. (See the
recent stracpy() API that was proposed[1].)
[1]
https://www.openwall.com/lists/kernel-hardening/2019/07/23/16I've been keeping a (rather terse) TODO list here:
https://kernsec.org/wiki/index.php/Kernel_Self_Protection_Project/Work#Specific_TODO_ItemsBut I'd like to turn that into an actual bug list on github or the like.
I wonder if working on something like this:
- set_memory_*() needs __must_check and/or atomicity
would be interesting?
The idea there is that set_memory_*() calls can fail, so callers should
likely be handling errors correctly. Adding the "__must_check" attribute
and fixing all the callers would be nice (and certainly touches the
memory management code!)