dnotify.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Directory notifications for Linux.
  3.  *
  4.  * Copyright (C) 2000 Stephen Rothwell
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  */
  16. #include <linux/fs.h>
  17. #include <linux/sched.h>
  18. #include <linux/dnotify.h>
  19. #include <linux/init.h>
  20. #include <linux/spinlock.h>
  21. #include <linux/slab.h>
  22. extern void send_sigio(struct fown_struct *fown, int fd, int band);
  23. int dir_notify_enable = 1;
  24. static rwlock_t dn_lock = RW_LOCK_UNLOCKED;
  25. static kmem_cache_t *dn_cache;
  26. static void redo_inode_mask(struct inode *inode)
  27. {
  28. unsigned long new_mask;
  29. struct dnotify_struct *dn;
  30. new_mask = 0;
  31. for (dn = inode->i_dnotify; dn != NULL; dn = dn->dn_next)
  32. new_mask |= dn->dn_mask & ~DN_MULTISHOT;
  33. inode->i_dnotify_mask = new_mask;
  34. }
  35. int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg)
  36. {
  37. struct dnotify_struct *dn = NULL;
  38. struct dnotify_struct *odn;
  39. struct dnotify_struct **prev;
  40. struct inode *inode;
  41. int turning_off = (arg & ~DN_MULTISHOT) == 0;
  42. if (!turning_off && !dir_notify_enable)
  43. return -EINVAL;
  44. inode = filp->f_dentry->d_inode;
  45. if (!S_ISDIR(inode->i_mode))
  46. return -ENOTDIR;
  47. if (!turning_off) {
  48. dn = kmem_cache_alloc(dn_cache, SLAB_KERNEL);
  49. if (dn == NULL)
  50. return -ENOMEM;
  51. }
  52. write_lock(&dn_lock);
  53. prev = &inode->i_dnotify;
  54. for (odn = *prev; odn != NULL; prev = &odn->dn_next, odn = *prev)
  55. if (odn->dn_filp == filp)
  56. break;
  57. if (odn != NULL) {
  58. if (turning_off) {
  59. *prev = odn->dn_next;
  60. redo_inode_mask(inode);
  61. dn = odn;
  62. goto out_free;
  63. }
  64. odn->dn_fd = fd;
  65. odn->dn_mask |= arg;
  66. inode->i_dnotify_mask |= arg & ~DN_MULTISHOT;
  67. goto out_free;
  68. }
  69. if (turning_off)
  70. goto out;
  71. filp->f_owner.pid = current->pid;
  72. filp->f_owner.uid = current->uid;
  73. filp->f_owner.euid = current->euid;
  74. dn->dn_magic = DNOTIFY_MAGIC;
  75. dn->dn_mask = arg;
  76. dn->dn_fd = fd;
  77. dn->dn_filp = filp;
  78. inode->i_dnotify_mask |= arg & ~DN_MULTISHOT;
  79. dn->dn_next = inode->i_dnotify;
  80. inode->i_dnotify = dn;
  81. out:
  82. write_unlock(&dn_lock);
  83. return 0;
  84. out_free:
  85. kmem_cache_free(dn_cache, dn);
  86. goto out;
  87. }
  88. void __inode_dir_notify(struct inode *inode, unsigned long event)
  89. {
  90. struct dnotify_struct * dn;
  91. struct dnotify_struct **prev;
  92. struct fown_struct * fown;
  93. int changed = 0;
  94. write_lock(&dn_lock);
  95. prev = &inode->i_dnotify;
  96. while ((dn = *prev) != NULL) {
  97. if (dn->dn_magic != DNOTIFY_MAGIC) {
  98.         printk(KERN_ERR "__inode_dir_notify: bad magic "
  99. "number in dnotify_struct!n");
  100.         goto out;
  101. }
  102. if ((dn->dn_mask & event) == 0) {
  103. prev = &dn->dn_next;
  104. continue;
  105. }
  106. fown = &dn->dn_filp->f_owner;
  107. if (fown->pid)
  108.         send_sigio(fown, dn->dn_fd, POLL_MSG);
  109. if (dn->dn_mask & DN_MULTISHOT)
  110. prev = &dn->dn_next;
  111. else {
  112. *prev = dn->dn_next;
  113. changed = 1;
  114. kmem_cache_free(dn_cache, dn);
  115. }
  116. }
  117. if (changed)
  118. redo_inode_mask(inode);
  119. out:
  120. write_unlock(&dn_lock);
  121. }
  122. static int __init dnotify_init(void)
  123. {
  124. dn_cache = kmem_cache_create("dnotify cache",
  125. sizeof(struct dnotify_struct), 0, 0, NULL, NULL);
  126. if (!dn_cache)
  127. panic("cannot create dnotify slab cache");
  128. return 0;
  129. }
  130. module_init(dnotify_init)