Linux内核Notifier机制

Linux内核使用Notifier机制来实现在模块间的异步事件通知,这种机制采用发布-订阅模型,减少了请求-回复或轮询模式的资源需求。Notifier链包含原子、阻塞、原始和SRCU四种类型,用于不同上下文和锁保护需求。例如,USB核心通过BLOCKING_NOTIFIER_HEAD(usb_notifier_list)来发布通知,允许订阅者(如USB钩子模块)注册回调函数,以便在USB设备插入或移除时接收通知。
摘要由CSDN通过智能技术生成
notifier是kernel的一种异步通信机制,用于告知某些模块产生了一个事件event。

notifier涉及:

1,publisher,类比于server、provider等概念,负责:

  • 提供一个notifier head链表供subscriber注册handler
  • 遍历head链表逐一告知subscriber发生了某个事件

2,subscriber,类比于client、consumer等概念,接收到publisher的事件通知后开行自己的工作



实例:
kernel中针对reboot提供了一个notifier:

notifier.h (include\linux)
extern struct blocking_notifier_head reboot_notifier_list;

sys.c (kernel)
/**
 *	register_reboot_notifier - Register function to be called at reboot time
 *	@nb: Info about notifier function to be called
 */
int register_reboot_notifier(struct notifier_block *nb)

接下来我们实现一个自己的notifier来接收reboot事件:

static int mynotifier_fn(struct notifier_block *nb, unsigned long action, void *data)
{
    printk("%s action: %d\n", __func__, action);
    return NOTIFY_OK;
}


static struct notifier_block mynotifier = {
    .notifier_call = mynotifier_fn,
};


static int mynotifier_init(void)
{
    printk("%s enter\n", __func__);
    return register_reboot_notifier(&mynotifier);
}

late_initcall(mynotifier_init);
reboot后将会接收到这个reboot通知,在handler函数中这里仅仅打印了下action值:



详细资料,参考:

The Crux of Linux Notifier Chains

Linux is monolithic like any other kernel. Its subsystems or modules help to keep the kernel light by being flexible enough to load and unload at runtime. In most cases, the kernel modules are interconnected to one another. An event captured by a certain module might be of interest to another module. For instance, when a USB device is plugged to your kernel, the USB core driver has to communicate to the bus driver sitting at the top. This will allow the bus driver to take care of the rest. Another classic example would be of interfaces. Many kernel modules would be looking for a network interface state change. The lower level module that detects the network interface state change, would communicate this information to the other modules.

Typically, communication systems implement request-reply messaging, or polling. In such models, a program that receives a request will have to send the data available since the last transaction. Such methods sometimes require high bandwidth or they waste polling cycles.

Linux uses a notifier chain, a simple list of functions that is executed when an event occurs. These notifier chains work in a publish-subscribe model. This model is more effective when compared to polling or the request-reply model. In a publish-subscribe model, the ‘client’ (subscriber) that requires notification of a certain event, ‘registers’ itself with the ‘server’ (publisher). The server will inform the client whenever an event of interest occurs. Such a model reduces the bandwidth requirement or the polling cycle requirement, as the client

  • 0
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值