1
I am trying to test linux kernel stack size in 64 bit. 

我发现了这种奇怪的行为。我编写了以下代码来使内核崩溃,但奇怪的是它只有在 printk 未注释时才会崩溃,否则运行良好且没有错误/警告!!。

    #include <linux/init.h>
    #include <linux/module.h>
    #include <linux/kernel.h>

    static int __init crash_stack_init(void)
    {
        long arr[1024];
        long *a;

        a = &arr[0];

        //printk("%p\n", &arr[0]);

        return 0;
    }

        enter code here

    static void __exit crash_stack_exit(void)
    {
    }

    module_init(crash_stack_init);
    module_exit(crash_stack_exit);


Here is the "make" output without the printk,

make -C /lib/modules/4.4.0-53-generic/build M=/home/naveenvc/work/ker/crash_stack modules make[1]: 进入目录'/usr/src/linux-headers-4.4.0 -53-generic' CC [M] /home/naveenvc/work/ker/crash_stack/crash_stack.o 构建模块,第 2 阶段。MODPOST 1 模块 CC /home/naveenvc/work/ker/crash_stack/crash_stack.mod.o LD [M] /home/naveenvc/work/ker/crash_stack/crash_stack.ko make[1]: 离开目录'/usr/src/linux-headers-4.4.0-53-generic'

And make output with printk,

make -C /lib/modules/4.4.0-53-generic/build M=/home/naveenvc/work/ker/crash_stack modules make[1]: 进入目录'/usr/src/linux-headers-4.4.0 -53-generic' CC [M] /home/naveenvc/work/ker/crash_stack/crash_stack.o > /home/naveenvc/work/ker/crash_stack/crash_stack.c:在函数'crash_stack_init'中:/home/naveenvc/ work/ker/crash_stack/crash_stack.c:14:1: 警告:8200 字节的帧大小大于 1024 字节 [-Wframe-larger-than=] } ^
构建模块,阶段 2. MODPOST 1 模块 CC
/home /naveenvc/work/ker/crash_stack/crash_stack.mod.o LD [M] /home/naveenvc/work/ker/crash_stack/crash_stack.ko make[1]: 离开目录'/usr/src/linux-headers-4.4 .0-53-通用'

这可能是什么原因造成的?

4

1 回答 1

1

堆栈大小有据可查,上面不是正确的测试方法,特别是在使用大页面支持堆栈的旧内核中,上述代码将跳转到下一个堆栈。

带有 prink 注释的 func __crash_stack_init 是一个叶函数——它不调用任何东西,因此编译器确切地知道本地变量会发生什么。特别是在这段代码中,它看到不需要完整的数组,因此它没有被分配。但是,对 printk 的调用将 arr 传入。编译器不知道 func 将如何处理它,因此它必须在堆栈上保留 1024 * sizeof(long) ,这会导致警告。

堆栈在几年前被撞到了 16KB,你可以从这里开始阅读https://lwn.net/Articles/600644/

于 2017-12-09T22:05:43.400 回答