Is there a way to monitor and redirect file access of a thread or process?
For example a thread wants to read /etc/mysql/my.cnf and I want to change the access to ~/my.cnf or if I run touch /etc/test.config
I want the file to be redirected to ~/somefolder/etc/test.config
.
I am looking for a libary preferably for C, C++ which works for Linux/Unix.
Thanks in advance
In linux, you can use bind mounts to map directory or file to another path, and per-process mount namespaces to do it for specific application.
See this question.
Example 1: use proot
Example 2: use unshare(1)
Example 3: use unshare(2)
See this post: http://glandium.org/blog/?p=217.