Hi, i am trying to hook readdir call in proc filesystem.
struct file_operations *fops;
fops = proc_root.proc_fops;
readdir_old = fops->readdir;
fops->readdir = readdir_new;
But, proc_root is no longer exported. So, how can I get it?
(No System.map, /dev/kmem ...)
Thank you