linux内核通知链基础

1.通知链表简介

大多数内核子系统都是相互独立的,因此某个子系统可能对其它子系统产生的事件感兴趣。为了满足这个需求,也即是让某个子系统在发生某个事件时通知其它的子系统,Linux内核提供了通知链的机制。通知链表只能够在内核的子系统之间使用,而不能够在内核与用户空间之间进行事件的通知。

通知链表是一个函数链表,链表上的每一个节点都注册了一个函数。当某个事情发生时,链表上所有节点对应的函数就会被执行。所以对于通知链表来说有一个通知方与一个接收方。在通知这个事件时所运行的函数由被通知方决定,实际上也即是被通知方注册了某个函数,在发生某个事件时这些函数就得到执行。其实和系统调用signal的思想差不多。

2.通知链表数据结构

通知链表的节点类型为notifier_block,其定义如下:

struct notifier_block

{

int (*notifier_call)(struct notifier_block *self, unsigned long, void *);

struct notifier_block *next;

int priority;

};

其中最重要的就是notifier_call这个函数指针,表示了这个节点所对应的要运行的那个函数。

next指向下一个节点,即当前事件发生时还要继续执行的那些节点。

1

2

3.注册通知链

在通知链注册时,需要有一个链表头,它指向这个通知链表的第一个元素。这样,之后的事件对该链表通知时就会根据这个链表头而找到这个链表中所有的元素。

注册的函数是:

int notifier_chain_register(struct notifier_block **nl, struct notifier_block *n)

也即是将新的节点n加入到nl所指向的链表中去。

卸载的函数是:

int notifier_chain_unregister(strut notifier_block **nl, struct notifier_block *n)

也即是将节点n从nl所指向的链表中删除。

4.通知链表

当有事件发生时,就使用notifier_call_chain向某个通知链表发送消息。

int notifier_call_chain(struct notifier_block **nl, unsigned long val, void *v)

这个函数是按顺序运行nl指向的链表上的所有节点上注册的函数。简单地说,如下所示:

struct notifier_block *nb = *n;

while (nb)

{

    ret = nb->notifier_call(nb, val, v);

    if (ret & NOTIFY_STOP_MASK)

    {

        return ret;

    }

    nb = nb->next;

}

1

2

3

4

5

6

7

8

9

5.示例

在这里,写了一个简单的通知链表的代码。

实际上,整个通知链的编写也就两个过程:

首先是定义自己的通知链的头节点,并将要执行的函数注册到自己的通知链中。

其次则是由另外的子系统来通知这个链,让其上面注册的函数运行。

我这里将第一个过程分成了两步来写,第一步是定义了头节点和一些自定义的注册函数

(针对该头节点的),第二步则是使用自定义的注册函数注册了一些通知链节点。

分别在代码buildchain.c与regchain.c中。

发送通知信息的代码为notify.c。

1

2

3

4

5

6

7

代码1 buildchain.c

它的作用是自定义一个通知链表test_chain,然后再自定义两个函数分别向这个通知链中加入或删除节点,最后再定义一个函数通知这个test_chain链。

#include <asm/uaccess.h>

#include <linux/types.h>

#include <linux/kernel.h>

#include <linux/sched.h>

#include <linux/notifier.h>

#include <linux/init.h>

#include <linux/types.h>

#include <linux/module.h>

MODULE_LICENSE(“GPL”);

/*

定义自己的通知链头结点以及注册和卸载通知链的外包函数

*/

/*

RAW_NOTIFIER_HEAD是定义一个通知链的头部结点,

通过这个头部结点可以找到这个链中的其它所有的notifier_block

*/

static RAW_NOTIFIER_HEAD(test_chain);

/*

自定义的注册函数,将notifier_block节点加到刚刚定义的test_chain这个链表中来

raw_notifier_chain_register会调用notifier_chain_register

*/

int register_test_notifier(struct notifier_block *nb)

{

return raw_notifier_chain_register(&test_chain, nb);

}

EXPORT_SYMBOL(register_test_notifier);

int unregister_test_notifier(struct notifier_block *nb)

{

return raw_notifier_chain_unregister(&test_chain, nb);

}

EXPORT_SYMBOL(unregister_test_notifier);

/*

自定义的通知链表的函数,即通知test_chain指向的链表中的所有节点执行相应的函数

*/

int test_notifier_call_chain(unsigned long val, void *v)

{

return raw_notifier_call_chain(&test_chain, val, v);

}

EXPORT_SYMBOL(test_notifier_call_chain);

/*

init and exit

*/

static int __init init_notifier(void)

{

printk(“init_notifier\n”);

return 0;

}

static void __exit exit_notifier(void)

{

printk(“exit_notifier\n”);

}

module_init(init_notifier);

module_exit(exit_notifier);

代码2 regchain.c

该代码的作用是将test_notifier1 test_notifier2 test_notifier3这三个节点加到之前定义的test_chain这个通知链表上,同时每个节点都注册了一个函数。

#include <asm/uaccess.h>

#include <linux/types.h>

#include <linux/kernel.h>

#include <linux/sched.h>

#include <linux/notifier.h>

#include <linux/init.h>

#include <linux/types.h>

#include <linux/module.h>

MODULE_LICENSE(“GPL”);

/*

注册通知链

*/

extern int register_test_notifier(struct notifier_block*);

extern int unregister_test_notifier(struct notifier_block*);

static int test_event1(struct notifier_block *this, unsigned long event, void *ptr)

{

printk(“In Event 1: Event Number is %d\n”, event);

return 0;

}

static int test_event2(struct notifier_block *this, unsigned long event, void *ptr)

{

printk(“In Event 2: Event Number is %d\n”, event);

return 0;

}

static int test_event3(struct notifier_block *this, unsigned long event, void *ptr)

{

printk(“In Event 3: Event Number is %d\n”, event);

return 0;

}

/*

事件1,该节点执行的函数为test_event1

*/

static struct notifier_block test_notifier1 =

{

.notifier_call = test_event1,

};

/*

事件2,该节点执行的函数为test_event1

*/

static struct notifier_block test_notifier2 =

{

.notifier_call = test_event2,

};

/*

事件3,该节点执行的函数为test_event1

*/

static struct notifier_block test_notifier3 =

{

.notifier_call = test_event3,

};

/*

对这些事件进行注册

*/

static int __init reg_notifier(void)

{

int err;

printk(“Begin to register:\n”);

    err = register_test_notifier(&test_notifier1);

    if (err)

    {

            printk("register test_notifier1 error\n");

            return -1;

    }

    printk("register test_notifier1 completed\n");

    err = register_test_notifier(&test_notifier2);

    if (err)

    {

            printk("register test_notifier2 error\n");

            return -1;

    }

    printk("register test_notifier2 completed\n");

    err = register_test_notifier(&test_notifier3);

    if (err)

    {

            printk("register test_notifier3 error\n");

            return -1;

    }

    printk("register test_notifier3 completed\n");

    return err;

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

}

/*

卸载刚刚注册了的通知链

*/

static void __exit unreg_notifier(void)

{

printk(“Begin to unregister\n”);

unregister_test_notifier(&test_notifier1);

unregister_test_notifier(&test_notifier2);

unregister_test_notifier(&test_notifier3);

printk(“Unregister finished\n”);

}

module_init(reg_notifier);

module_exit(unreg_notifier);

代码3 notify.c

该代码的作用就是向test_chain通知链中发送消息,让链中的函数运行。

#include <asm/uaccess.h>

#include <linux/types.h>

#include <linux/kernel.h>

#include <linux/sched.h>

#include <linux/notifier.h>

#include <linux/init.h>

#include <linux/types.h>

#include <linux/module.h>

MODULE_LICENSE(“GPL”);

extern int test_notifier_call_chain(unsigned long val, void *v);

/*

向通知链发送消息以触发注册了的函数

*/

static int __init call_notifier(void)

{

int err;

printk(“Begin to notify:\n”);

/*

调用自定义的函数,向test_chain链发送消息

*/

  printk("==============================\n");

  err = test_notifier_call_chain(1, NULL);

  printk("==============================\n");

  if (err)

          printk("notifier_call_chain error\n");

  return err;

1

2

3

4

5

6

}

static void __exit uncall_notifier(void)

{

printk(“End notify\n”);

}

module_init(call_notifier);

module_exit(uncall_notifier);

Makefile文件

obj-m:=buildchain.o regchain.o notify.o

KERNELDIR:=/lib/modules/$(shell uname -r)/build

default:

make -C (KERNELDIR)M= (KERNELDIR) M=(KERNELDIR)M=(shell pwd) modules

运行:

make

insmod buildchain.ko

insmod regchain.ko

insmod notify.ko

这样就可以看到通知链运行的效果了

下面是我在自己的机器上面运行得到的结果:

QUOTE:

init_notifier

Begin to register:

register test_notifier1 completed

register test_notifier2 completed

register test_notifier3 completed

Begin to notify:

In Event 1: Event Number is 1

In Event 2: Event Number is 1

In Event 3: Event Number is 1

linux交流裙:112–6743–406

最后分享相关linux学习资料

linux内核通知链

http://www.makeru.com.cn/live/1392_1165.html?s=156461

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 195,980评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,422评论 2 373
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,130评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,553评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,408评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,326评论 1 273
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,720评论 3 386
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,373评论 0 254
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,678评论 1 294
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,722评论 2 312
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,486评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,335评论 3 313
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,738评论 3 299
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,283评论 1 251
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,692评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,893评论 2 335