Android應用程序訪問linux驅動第一步:實現並測試Linux驅動


一直都想親自做一次使用android應用程序訪問Linux內核驅動的嘗試,但總是沒能做到。最近抽出時間,下決心重新嘗試一次。嘗試的開始當然是先寫一個Linux內核驅動了。
我希望寫一個簡單測驅動程序,實現寫一個字符串進去,然后再把它讀出來的功能。驅動中會創建dev/hello設備節點和/sys/class/hello/hello/val 設備節點,沒有實現proc/下的對應的設備節點。/sys/class/hello/hello/val 主要用於快速測試,而dev/hello則主要用於供上層應用調用。
這篇博客參考了老羅的android之旅相關博客:http://blog.csdn.net/luoshengyang/article/details/6568411

一。驅動源碼

代碼我已經在android6.0的linux kernel上測試過了,代碼中有響應的注釋,所以這里直接貼出代碼:

hello.c

文件如下:

#include <linux/init.h> #include <linux/module.h> #include <linux/types.h> #include <linux/fs.h> #include <linux/proc_fs.h> #include <linux/device.h> #include <linux/sched.h> #include <linux/errno.h> #include <linux/fcntl.h> #include <linux/poll.h> #include <linux/seq_file.h> #include <linux/mutex.h> #include <linux/workqueue.h> #include <asm/uaccess.h> #include <linux/slab.h> #include "hello.h" /*定義主設備和從設備號變量*/ static int hello_major = 0; static int hello_minor = 0; /*設備類別和設備變量*/ static struct class* hello_class = NULL; static struct hello_test_dev* hello_dev = NULL; /*傳統的設備文件操作方法*/ static int hello_open(struct inode* inode, struct file* filp); static int hello_release(struct inode* inode, struct file* filp); static ssize_t hello_read(struct file* filp, char __user *buf, size_t count, loff_t* f_pos); static ssize_t hello_write(struct file* filp, const char __user *buf, size_t count, loff_t* f_pos); /*設備文件操作方法表*/ static struct file_operations hello_fops = { .owner = THIS_MODULE, .open = hello_open, .release = hello_release, .read = hello_read, .write = hello_write, }; /*訪問設置屬性方法*/ static ssize_t hello_val_show(struct device* dev, struct device_attribute* attr, char* buf); static ssize_t hello_val_store(struct device* dev, struct device_attribute* attr, const char* buf, size_t count); /*定義設備屬性*/ static DEVICE_ATTR(val, S_IRUGO | S_IWUSR, hello_val_show, hello_val_store); /*打開設備方法*/ static int hello_open(struct inode* inode, struct file* filp) { struct hello_test_dev* dev; /*將自定義設備結構體保存在文件指針的私有數據域中,以便訪問設備時拿來用*/ dev = container_of(inode->i_cdev, struct hello_test_dev, dev); filp->private_data = dev; return 0; } /*設備文件釋放時調用,空實現*/ static int hello_release(struct inode* inode, struct file* filp) { return 0; } /*讀內存*/ static ssize_t hello_read(struct file* filp, char __user *buf, size_t count, loff_t* f_pos) { ssize_t err = 0; struct hello_test_dev* dev = filp->private_data; /*同步訪問*/ if(down_interruptible(&(dev->sem))) { return -ERESTARTSYS; } if(count < sizeof(dev->val)) { goto out; } /*讀字符串*/ if(copy_to_user(buf, dev->val, sizeof(dev->val))) { err = -EFAULT; goto out; } err = sizeof(dev->val); out: up(&(dev->sem)); return err; } /*寫字符串*/ static ssize_t hello_write(struct file* filp, const char __user *buf, size_t count, loff_t* f_pos) { struct hello_test_dev* dev = filp->private_data; ssize_t err = 0; /*同步訪問*/ if(down_interruptible(&(dev->sem))) { return -ERESTARTSYS; } if(count != sizeof(dev->val)) { goto out; } /*將用戶寫進來的字符串保存到驅動的內存中*/ if(copy_from_user(dev->val, buf, count)) { err = -EFAULT; goto out; } err = sizeof(dev->val); out: up(&(dev->sem)); return err; } /*寫字符串到內存*/ static ssize_t __hello_set_val(struct hello_test_dev* dev, const char* buf, size_t count) { /*同步訪問*/ if(down_interruptible(&(dev->sem))) { return -ERESTARTSYS; } printk(KERN_ALERT"__hello_set_val.buf: %s count:%d\n",buf,count); printk(KERN_ALERT"__hello_set_val.dev->val: %s count:%d\n",dev->val,count); strncpy(dev->val,buf, count); printk(KERN_ALERT"__hello_set_val.dev->val: %s count:%d\n",dev->val,count); up(&(dev->sem)); return count; } /*讀取設備屬性val*/ static ssize_t hello_val_show(struct device* dev, struct device_attribute* attr, char* buf) { struct hello_test_dev* hdev = (struct hello_test_dev*)dev_get_drvdata(dev); printk(KERN_ALERT"hello_val_show.\n"); printk(KERN_ALERT"%s\n",hdev->val); return 0; } /*寫設備屬性val*/ static ssize_t hello_val_store(struct device* dev, struct device_attribute* attr, const char* buf, size_t count) { struct hello_test_dev* hdev = (struct hello_test_dev*)dev_get_drvdata(dev); printk(KERN_ALERT"hello_val_store.buf: %s count:%d\n",buf,count); return __hello_set_val(hdev, buf, count); } /*初始化設備*/ static int __hello_setup_dev(struct hello_test_dev* dev) { int err; dev_t devno = MKDEV(hello_major, hello_minor); memset(dev, 0, sizeof(struct hello_test_dev)); cdev_init(&(dev->dev), &hello_fops); dev->dev.owner = THIS_MODULE; dev->dev.ops = &hello_fops; /*注冊字符設備*/ err = cdev_add(&(dev->dev),devno, 1); if(err) { return err; } /*初始化信號量和寄存器val的值*/ init_MUTEX(&(dev->sem)); dev->val = kmalloc(10,GFP_KERNEL); strncpy(dev->val,"hello",sizeof("hello")); return 0; } /*模塊加載方法*/ static int __init hello_init(void){ int err = -1; dev_t dev = 0; struct device* temp = NULL; printk(KERN_ALERT"hello_init.\n"); /*動態分配主設備和從設備號*/ err = alloc_chrdev_region(&dev, 0, 1, HELLO_DEVICE_NODE_NAME); if(err < 0) { printk(KERN_ALERT"Failed to alloc char dev region.\n"); goto fail; } hello_major = MAJOR(dev); hello_minor = MINOR(dev); /*分配helo設備結構體變量*/ hello_dev = kmalloc(sizeof(struct hello_test_dev), GFP_KERNEL); if(!hello_dev) { err = -ENOMEM; printk(KERN_ALERT"Failed to alloc hello_dev.\n"); goto unregister; } /*初始化設備*/ err = __hello_setup_dev(hello_dev); if(err) { printk(KERN_ALERT"Failed to setup dev: %d.\n", err); goto cleanup; } /*在/sys/class/目錄下創建設備類別目錄hello*/ hello_class = class_create(THIS_MODULE, HELLO_DEVICE_CLASS_NAME); if(IS_ERR(hello_class)) { err = PTR_ERR(hello_class); printk(KERN_ALERT"Failed to create hello class.\n"); goto destroy_cdev; } /*在/dev/目錄和/sys/class/hello目錄下分別創建設備文件hello*/ temp = device_create(hello_class, NULL, dev, "%s", HELLO_DEVICE_FILE_NAME); if(IS_ERR(temp)) { err = PTR_ERR(temp); printk(KERN_ALERT"Failed to create hello device."); goto destroy_class; } /*在/sys/class/hello/hello目錄下創建屬性文件val*/ err = device_create_file(temp, &dev_attr_val); if(err < 0) { printk(KERN_ALERT"Failed to create attribute val."); goto destroy_device; } dev_set_drvdata(temp, hello_dev); printk(KERN_ALERT"Succedded to initialize hello device.\n"); return 0; destroy_device: device_destroy(hello_class, dev); destroy_class: class_destroy(hello_class); destroy_cdev: cdev_del(&(hello_dev->dev)); cleanup: kfree(hello_dev); unregister: unregister_chrdev_region(MKDEV(hello_major, hello_minor), 1); fail: return err; } /*模塊卸載方法*/ static void __exit hello_exit(void) { dev_t devno = MKDEV(hello_major, hello_minor); printk(KERN_ALERT"hello_exit\n"); /*銷毀設備類別和設備*/ if(hello_class) { device_destroy(hello_class, MKDEV(hello_major, hello_minor)); class_destroy(hello_class); } /*刪除字符設備和釋放設備內存*/ if(hello_dev) { cdev_del(&(hello_dev->dev)); kfree(hello_dev); } if(hello_dev->val != NULL){ kfree(hello_dev->val); } /*釋放設備號*/ unregister_chrdev_region(devno, 1); } MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Test Driver"); module_init(hello_init); module_exit(hello_exit); 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291

hello.h

文件如下:

#ifndef _HELLO_TEST_H_ #define _HELLO_ANDROID_H_ #include <linux/cdev.h> #include <linux/semaphore.h> #define HELLO_DEVICE_NODE_NAME "hello" #define HELLO_DEVICE_FILE_NAME "hello" #define HELLO_DEVICE_CLASS_NAME "hello" struct hello_test_dev { char * val; struct semaphore sem; struct cdev dev; }; #endif 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

二。編譯驅動

在linux源碼目錄的driver下新建hello目錄,把hello.c和hello.h文件放入其中。新增Makefile和Kconfig文件:

1.Makefile,用於編譯驅動

obj-$(CONFIG_HELLO) += hello.o
  • 1

2.Kconfig

       config HELLO
           tristate "Test Driver" default n help This is the test driver. 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

3修改driver目錄下的Makefile:

添加如下一項:

obj-$(CONFIG_HELLO) += hello/
  • 1

4.修改driver目錄下的Kconfig

添加如下一項:

source "drivers/hello/Kconfig"
  • 1

5.make menuconfig

如果對編譯linux kernel不熟悉請自行百度。
配置界面如下:
這里寫圖片描述

可以看到這里出現了我們在Kconfig中添加的Test Driver選項,我們把它選擇成以模塊的形式編譯,這更有利於我們的測試,這樣我們就不需要重新少些linux kernel了。Android的linux kernel一般是打包進boot.img文件的,如果想把模塊編譯進Linux內核,並且重寫燒寫linux kernel ,建議把kernel放到out/target/product/xxx/目錄下,然后使用make bootimage-nodeps能快速生成boot.img文件,具體kernel放置的位置還需要看android編譯系統相關配置,這里就不深究了。

6.make -j16

執行make -j16(-j16標示使用16個cpu來編譯,只是個請求),這個過程還是很快的,幾分鍾就可以編譯成功。編譯后的hello目錄如下:
這里寫圖片描述
可以看到生成了hello.ko文件。

三.使用/sys/class/hello/hello/val 進行測試

1.把hello.ko拷貝到android設備上

建議直接使用adb push hello.ko /data 即可,也可以用U盤拷貝。總之,把它放到android設備上。

2.裝載驅動

cd /data
insmod hello.ko
這個時候可以看到/dev/hello /sys/class/hello/hello/val文件已經出現

3.測試

輸入命令:echo haha > val
打印如下:
[ 9641.053505] hello_val_store.buf: haha
[ 9641.053505] count:5
[ 9641.060167] __hello_set_val.buf: haha
[ 9641.060167] count:5
[ 9641.066841] __hello_set_val.dev->val: hello count:5
[ 9641.073088] __hello_set_val.dev->val: haha
[ 9641.073088] count:5
可以看到數據已經寫入,
使用cat val 讀取:
打印如下:
[ 9644.953496] hello_val_show.
[ 9644.957127] haha
[ 9644.957127]
可以看到haha打印出來了,書名寫入是成功的。

四.使用/dev/hello測試

首先在android源碼的packages目錄下新建一個hellotest目錄,該目錄下新建hellotest.c和Android.mk兩個文件。

1.hellotest.c

這個文件用來打開/dev/hello文件並嘗試讀和寫字符串操作,並打印相關信息,源碼如下:

#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #define HELLO_DEVICE "/dev/hello" int main(int argc, char** argv) { int fd = -1; char * str = malloc(10); //打開/dev/hello fd = open(HELLO_DEVICE, O_RDWR); if(fd == -1) { printf("Failed to open device %s.\n", HELLO_DEVICE); return -1; } printf("Read original value:\n"); //先讀一次數據看看 read(fd, str, 10); printf("read data: %s\n", str); strncpy(str,"nihao",sizeof("nihao")); printf("write nihao\n"); //寫nihao進去 write(fd, str, sizeof(str)); printf("Read the value again:\n"); //讀看看是不是nihao read(fd, str, 10); printf("read data: %s\n", str); close(fd); return 0; } 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

2.Android.mk

android下編譯應用程序使用Android.mk還是很方便的:

      LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS := optional LOCAL_MODULE := hellotest LOCAL_SRC_FILES := $(call all-subdir-c-files) include $(BUILD_EXECUTABLE)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

3.編譯

執行mm命令即可
編譯后的文件在out/target/product/xxx/obj/EXECUTABLES/hellotest_intermediates/目錄下,該目錄編譯后如圖:
這里寫圖片描述
關於mm命令編譯執行文件的過程,可以參考我的這篇博客: Android編譯系統<二>-mm編譯單個模塊

4.測試

使用adb push hellotest /data把hellotest 推送到android設備上來,然后chmod +x hellotest添加可執行權限。
最后./hellotest
打印如下:

Read original value: read data: hell write nihao Read the value again: read data: nihao
  • 1
  • 2
  • 3
  • 4
  • 5

可見測試成功。

版權聲明:本文為博主原創文章,未經博主允許不得轉載。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM