当前位置:   article > 正文

Linux Kernel 学习笔记15:阻塞IO设计_阻塞io linux 底层实现

阻塞io linux 底层实现

(本章基于:Linux-3.13.0-32)

当一个设备无法立即满足用户的读写请求时应当阻塞该用户程序。例如在socket网络编程时,使用read在一个已经建立好的socket连接上读取对方发送的数据,但此时对方什么都没有发送,这时程序默认进入阻塞状态(即睡眠),等待接收到对方发送的有效数据时再唤醒该程序继续运行。在Linux内核模块中我们使用等待队列实现这种阻塞功能。

1、定义等待队列

<linux/wait.h>

wait_queue_head_t  my_queue;

2、初始化等待队列

init_waitqueue_head(&my_queue);

3、定义+初始化宏

DECLARE_WAIT_QUEUE_HEAD(my_queue);

4、进入等待队列,睡眠

wait_queue(queue, condition);

当condition为真是立即返回,否则让程序进入TASK_UNINTERRUPTIBLE(不可中断)模式的睡眠,并挂在queue参数所指向的等待队列上;

wait_event_interruptible(queue, condition);

功能同上,区别在于会让程序进入TASK_INTERRUPTIBLE(可中断)模式的睡眠;

wait_event_killable(queue, condition);

功能同上,区别在于会让程序进入TASK_KILLABLE(只响应致命信号)模式的睡眠;

5、从等待队列中唤醒程序

wake_up(wait_queue_t *q);

从等待队列中唤醒所有进程;

wake_up_interruptible(wait_queue_t *q);

从等待队列中唤醒所有状态为TASK_INTERRUPTIABLE的进程

(注意:当进程被唤醒时会再次检查condition,若为真则立即返回,否则再次睡眠!)

例:

在本例中使用一个定时器以1s为周期递加资源source,一次read操作将source减一,当source为0时read操作被阻塞;

内核层:

  1. #include <linux/init.h>
  2. #include <linux/module.h>
  3. #include <linux/miscdevice.h>
  4. #include <linux/fs.h>
  5. #include <linux/wait.h>
  6. #include <linux/sched.h>
  7. #include <linux/timer.h>
  8. #define TIMER_INTERVAL (1 * HZ)
  9. DECLARE_WAIT_QUEUE_HEAD(WQ);
  10. static struct timer_list timer;
  11. unsigned int source = 0;
  12. void
  13. timer_function(unsigned long arg)
  14. {
  15. source ++;
  16. wake_up(&WQ);
  17. mod_timer((struct timer_list*)arg, jiffies + TIMER_INTERVAL);
  18. }
  19. int my_open(struct inode *inode, struct file *file)
  20. {
  21. printk(KERN_INFO "This is miscdevice open\n");
  22. return 0;
  23. }
  24. int my_close(struct inode *inode, struct file *file)
  25. {
  26. printk(KERN_INFO "This is miscdevice close\n");
  27. return 0;
  28. }
  29. ssize_t
  30. my_read(struct file *file, char __user *user, size_t size, loff_t *loff)
  31. {
  32. printk(KERN_INFO "read start\n");
  33. wait_event_interruptible(WQ, source);
  34. source --;
  35. printk(KERN_INFO "read end\n");
  36. return 0;
  37. }
  38. const struct file_operations my_fops = {
  39. .open = my_open,
  40. .release = my_close,
  41. .read = my_read,
  42. };
  43. struct miscdevice my_misc = {
  44. .minor = 201,
  45. .name = "stone",
  46. .fops = &my_fops,
  47. };
  48. static __init int hello_init(void)
  49. {
  50. init_timer(&timer);
  51. timer.expires = jiffies + TIMER_INTERVAL;
  52. timer.function = timer_function;
  53. timer.data = (unsigned long)&timer;
  54. add_timer(&timer);
  55. misc_register(&my_misc);
  56. printk(KERN_ALERT "helloworld!\n");
  57. return 0;
  58. }
  59. static __exit void hello_exit(void)
  60. {
  61. misc_deregister(&my_misc);
  62. printk(KERN_ALERT "helloworld exit!\n");
  63. }
  64. module_init(hello_init);
  65. module_exit(hello_exit);
  66. MODULE_LICENSE("GPL");
  67. MODULE_AUTHOR("Stone");

应用层:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <fcntl.h>
  6. int
  7. main(void)
  8. {
  9. int fd;
  10. fd = open("/dev/stone", O_RDWR);
  11. if(fd < 0) {
  12. perror("open");
  13. exit(EXIT_FAILURE);
  14. }
  15. while(1) {
  16. read(fd, NULL, 0);
  17. printf("read success!\n");
  18. }
  19. close(fd);
  20. return 0;
  21. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/343377
推荐阅读
相关标签
  

闽ICP备14008679号