开发者

How do you find the symbol of a specific C function when no symbols are loaded in user mode?

The following code is mentioned in this question.

int (*my_printk)(const char *fmt, ...);
my_printk = find_symbol_address("printk");
(*my_printk)("Hello, world!\n");

How does the OP find the symbol address if the LSM framework doesn开发者_Python百科't export its symbols? The OP's question is in kernel mode; I am curious how to do it in user mode.


Your linked-to question is very different than userspace: because the kernel maintains a complete symbol table (see kernel/module.c function lookup_symbol), it isn't very difficult to scan the table and look for a specific symbol, find its address, and perform the fairly hacky interpositioning he is performing. (I understand his reasoning, but its a pity he didn't just make his source a patch that could be applied to distribution kernels or even included into the mainline kernel tree. Fair enough, his code, his time, his playground, but it does mean he gets to do some pretty hacky things.)

User mode is a little different; if the symbols aren't available, they're just not available. The kernel developers went to some effort to emulate the case of "having symbols available" that is common in userspace, and if you've strip(1)ed your code, they're gone.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜