Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
587 views
in Technique[技术] by (71.8m points)

c - Does kallsyms have all the symbol of kernel functions?

In the Linux kernel I want to probe the kernel function effective_prio(). It defined as static. When I go to search the symbol of it in the kallsyms I cannot find it. Does kallsyms have all the symbol of the kernel functions? If not, which symbols are not included?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

There are two possibilities for a function not appearing in /proc/kallsyms:

  1. If the function is marked as static, and the compiler decides to inline the function (with or without the inline keyword)
  2. If a config option or another #define removes a function from being compiled, e.g.:

    #ifdef CONFIG_OPT
    void foo(void) {
    }
    #endif
    

As far as I know, if a function does not appear in /proc/kallsyms, it is not possible to call or probe it from a module. However, /proc/kallsyms contains all functions of the kernel, not just the ones exported via EXPORT_SYMBOL/EXPORT_SYMBOL_GPL.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...