I am trying to find the kernel address space in which my loadable kernel module is moved using insmod.
I learned that using the -m, -O-switches, while insmod'ing the module, we can only see the table of characters and addresses of the executable sections from the point of view of the module, and not their moved addresses, since this process of moving takes place when we do insmod.
Can someone tell me how to find the moved address of the module in the kernel-memory, that is, the address associated in the kernel where the loaded module is located?
Thank!
PS Please note that I am using the Linux Redhat 2.4 kernel, in which the / proc / modules list does not display the virtual addresses of the loaded modules.
source
share