編寫核心模組遍歷程序的PID
阿新 • • 發佈:2019-01-10
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/list.h>
static __init int print_pid(void)
{
struct task_struct *task,*p;
struct list_head *pos;
int count=0;
printk("Hello,let begin\n");
task=&init_task;
list_for_each(pos,&task->tasks)
{
p=list_entry(pos,struct task_struct,tasks);
count++;
printk("%d---->%s\n",p->pid,p->comm);
}
printk("the number of process is:%d\n",count);
return 0;
}
static __exit void print_exit(void)
{
printk("<0>end!\n");
}
module_init(print_pid);
module_exit(print_exit);
我們寫一個Makefile檔案來編譯模組,內容如下:
obj-m:=print_pid.o //檔名
kernel_path=/usr/src/linux-headers-$(shell uname -r)
all:
make -c $(kernel_path)
clean:
make -c $(kernel_path) M=$(PWD)
最後,用make命令執行Makefile.
[email protected]:~/kernel$ make
執行程式碼用:
[email protected]:~/kernel$ sudo insmod print_pid.ko
從核心中移除該模組就可以看到退出時的資訊:
[email protected]:~/kernel$ sudo rmmod print_pid
檢視模組是否正確寫入到核心中去:
[email protected]:~/kernel$ dmesg