Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> Linux操作系統下 內核模塊開發詳細解析

Linux操作系統下 內核模塊開發詳細解析

日期:2017/2/7 14:40:27      編輯:Linux教程
 

1. modprobe 加載內核模塊

a) 在 /etc/module.conf 中查找別名

b) 在 lib/modules/version/module.dep 中判斷是否有依賴模塊需要被提前加載(該文件被depmod-a建立)

2. 2.4內核中不一定非用init_module和cleanup_module做開始和結束的函數,但需要用module_init和

module_exit申明。

3. 宏 __init 和 __exit 可以使函數在運行完成後自動回收內存(限模塊中),__initdata用於變量,

舉例:

#include //需要包含的頭文件

static int ntest __initdata = 3;

static int __init test_init(void) {...}

static void __exit test_exit(void) {...}

module_init(test_init); //申明放在實現函數後

module_exit(test_exit);

4. 一些模塊說明的相關宏,可以用objdump可以查看相關信息。

MODULE_LICENSE() 說明代碼許可類型

MODULE_DESCRIPTION() 模塊描述

MODULE_AUTHOR() 作者

MODULE_SUPPORTED_DEVICE() 模塊支持的設備

5. 參數傳遞使用宏 MODULE_PARM(變量名,類型)。

支持的類型有"b"比特 "h"短整 "i"整數 "l"長整 "s"字符串

static int myint = 9;

static char *mystr = "test"; //注意需要傳遞參數的默認值

MODULE_PARM(myint, "i");

MODULE_PARM(mystr, "s");

6. 多個文件編譯成一個內核模塊:

a) 需要在一個源程序中加入

#define __NO_VERSION__

#include

b) 編譯同普通的單個內核文件

c) 連接:ld -m elf_i386 -r -o <1st src file.o> <2nd src file.o>

7. strace 查一個程序所用到的系統調用

8. 關於file_operations結構體定義在linux/fs.h文件中。

使用方式:

struct file_operations fops = {
read: device_read,
write: device_write,
open: device_open,
release: device_release
}
C99的使用方式:
struct file_operations fops = {
.read = device_read,
.write = device_write,
.open = device_open,
.release = device_release
}

Copyright © Windows教程網 All Rights Reserved