I need a Linux file system filter that dynamically executes an ACL policy for file system calls (enable / disable read / write based on data calculated at runtime).
So far I have come across DazukoFS and Related Work .
What I don't like about DazukoFS is that it has to be compiled for every kernel release.
- Is there a user-mode library that can dynamically filter file system calls?
- If not, is there some kernel-mode library that can dynamically filter FS calls, rather than compiling them for each kernel release?
- If not, what is the best choice among DazukoFS and others ?
source
share