Linux内核notify通知笔录

前沿

本篇文章围绕三个问题来讲述,并解释案例代码演示,从而更进一步的了解该机制。

1.Notify机制是什么?

notify是一种内核子模块相互之间通信一种机制。如设备状态变化,电源事件等场景。另外它是一种通过事件驱动的通信机制,允许某个组建在特定事件发生时主动通知其他组件。内核中依据不同的上下文存在多种类型的形式,每种形式都有其特定的功能应用场景。

2.Notify实现原理?

该机制模式就好比发布订阅机制一样,发布者发布消息,订阅者订阅相关的数信息。当有事件发生时,通过通知链调用订阅者提前注册的数据机制,然后订阅者收到对应的消息处理。有中断触发方式,上下文触发方式。

3.Notify内核中如何使用?

发布消息:

cpp 复制代码
#include <linux/module.h>
#include <linux/notifier.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/uaccess.h>

// 定义全局通知链头
BLOCKING_NOTIFIER_HEAD(my_notifier_chain);
EXPORT_SYMBOL(my_notifier_chain);  // 确保正确导出

// 发送通知函数
int send_notification(unsigned long val, void *v)
{

    printk(KERN_INFO "MODULE A: Notifier chain head: %px\n", my_notifier_chain.head);
    if (my_notifier_chain.head == NULL) {
        printk(KERN_ERR "MODULE A: Notifier chain is empty!\n");
    }
    printk(KERN_INFO "MODULE A: Sending notification (val=%lu)\n", val);
    int ret = blocking_notifier_call_chain(&my_notifier_chain, val, v);
    printk(KERN_INFO "MODULE A: Notification result: %d\n", ret);
    return ret;
}
EXPORT_SYMBOL(send_notification);

// 添加设备文件操作以手动触发通知
static ssize_t trigger_write(struct file *filp, const char __user *buf, size_t count, loff_t *off)
{
    char msg[100];
    if (copy_from_user(msg, buf, count))
        return -EFAULT;
    msg[count] = '\0';
    
    send_notification(100, msg);
    return count;
}

static struct file_operations fops = {
    .write = trigger_write,
};

static int major;

static int __init module_a_init(void)
{
    major = register_chrdev(0, "notify_trigger", &fops);
    printk(KERN_INFO "MODULE A: Loaded (major=%d)\n", major);
    printk(KERN_INFO "MODULE A: Use 'echo \"message\" > /dev/notify_trigger' to test\n");
    return 0;
}

static void __exit module_a_exit(void)
{
    unregister_chrdev(major, "notify_trigger");
    printk(KERN_INFO "MODULE A: Unloaded\n");
}

module_init(module_a_init);
module_exit(module_a_exit);
MODULE_LICENSE("GPL");

订阅消息:

cpp 复制代码
#include <linux/module.h>
#include <linux/notifier.h>
#include <linux/kernel.h>

// 声明外部符号
extern struct blocking_notifier_head my_notifier_chain;

// 回调函数
static int my_notifier_call(struct notifier_block *nb, 
                          unsigned long val, void *v)
{
    printk(KERN_INFO "MODULE B: ===== NOTIFICATION RECEIVED =====\n");
    printk(KERN_INFO "MODULE B: Event value: %lu\n", val);
    printk(KERN_INFO "MODULE B: Message: %s\n", (char *)v);
    printk(KERN_INFO "MODULE B: ===== END NOTIFICATION =====\n");
    return NOTIFY_OK;
}

// 定义通知块
static struct notifier_block my_notifier = {
    .notifier_call = my_notifier_call,
    .priority = 0,
};

static int __init module_b_init(void)
{
    int ret;
    
    // 注册通知回调
    ret = blocking_notifier_chain_register(&my_notifier_chain, &my_notifier);
    
    if (ret) {
        printk(KERN_ERR "MODULE B: Registration failed: %d\n", ret);
        return ret;
    }
    
    printk(KERN_INFO "MODULE B: Successfully registered notifier\n");
    printk(KERN_INFO "MODULE B: Current notifier chain: %px\n", &my_notifier_chain);
    return 0;
}

static void __exit module_b_exit(void)
{
    blocking_notifier_chain_unregister(&my_notifier_chain, &my_notifier);
    printk(KERN_INFO "MODULE B: Unregistered notifier\n");
}

module_init(module_b_init);
module_exit(module_b_exit);
MODULE_LICENSE("GPL");
MODULE_SOFTDEP("pre: module_a");

Makefile:

cpp 复制代码
obj-m := module_a.o module_b.o

KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)

all:
	$(MAKE) -C $(KDIR) M=$(PWD) modules

clean:
	$(MAKE) -C $(KDIR) M=$(PWD) clean

按照先写入module_a之后在写入module_b,然后在系统/dev目录下创建设备,之后通过该对应的设备填充信息触发a模块调用通知链从而b模块收到对应的消息。如下输入日志:

cpp 复制代码
[36699.868674] module_a: loading out-of-tree module taints kernel.
[36699.869060] module_a: module verification failed: signature and/or required key missing - tainting kernel
[36699.871047] MODULE A: Loaded (major=242)
[36699.871048] MODULE A: Use 'echo "message" > /dev/notify_trigger' to test
[36705.974380] MODULE B: Successfully registered notifier
[36705.974381] MODULE B: Current notifier chain: ffffffffc09300e0
[36763.437614] MODULE A: Notifier chain head: ffffffffc094d000
[36763.437616] MODULE A: Sending notification (val=100)
[36763.437617] MODULE B: ===== NOTIFICATION RECEIVED =====
[36763.437617] MODULE B: Event value: 100
[36763.437618] MODULE B: Message: Hello World

[36763.437618] MODULE B: ===== END NOTIFICATION =====
[36763.437619] MODULE A: Notification result: 1

以上就是notify学习笔记,后续还会更新内核源代码详细实现过程!

相关推荐
KoiHeng2 小时前
操作系统简要知识
linux·笔记
Johny_Zhao5 小时前
Docker + CentOS 部署 Zookeeper 集群 + Kubernetes Operator 自动化运维方案
linux·网络安全·docker·信息安全·zookeeper·kubernetes·云计算·系统运维
小毛驴8506 小时前
Linux 后台启动java jar 程序 nohup java -jar
java·linux·jar
一心0927 小时前
ubuntu 20.04.6 sudo 源码包在线升级到1.9.17p1
运维·ubuntu·sudo·漏洞升级
好好学习啊天天向上7 小时前
世上最全:ubuntu 上及天河超算上源码编译llvm遇到的坑,cmake,ninja完整过程
linux·运维·ubuntu·自动性能优化
你想考研啊7 小时前
三、jenkins使用tomcat部署项目
运维·tomcat·jenkins
tan180°8 小时前
MySQL表的操作(3)
linux·数据库·c++·vscode·后端·mysql
代码老y8 小时前
Docker:容器化技术的基石与实践指南
运维·docker·容器
典学长编程8 小时前
Linux操作系统从入门到精通!第二天(命令行)
linux·运维·chrome
wuk9989 小时前
基于MATLAB编制的锂离子电池伪二维模型
linux·windows·github