fsnotify.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /*
  2. * Copyright (C) 2008 Red Hat, Inc., Eric Paris <eparis@redhat.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; see the file COPYING. If not, write to
  16. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #include <linux/dcache.h>
  19. #include <linux/fs.h>
  20. #include <linux/gfp.h>
  21. #include <linux/init.h>
  22. #include <linux/module.h>
  23. #include <linux/mount.h>
  24. #include <linux/srcu.h>
  25. #include <linux/fsnotify_backend.h>
  26. #include "fsnotify.h"
  27. /*
  28. * Clear all of the marks on an inode when it is being evicted from core
  29. */
  30. void __fsnotify_inode_delete(struct inode *inode)
  31. {
  32. fsnotify_clear_marks_by_inode(inode);
  33. }
  34. EXPORT_SYMBOL_GPL(__fsnotify_inode_delete);
  35. void __fsnotify_vfsmount_delete(struct vfsmount *mnt)
  36. {
  37. fsnotify_clear_marks_by_mount(mnt);
  38. }
  39. /**
  40. * fsnotify_unmount_inodes - an sb is unmounting. handle any watched inodes.
  41. * @sb: superblock being unmounted.
  42. *
  43. * Called during unmount with no locks held, so needs to be safe against
  44. * concurrent modifiers. We temporarily drop sb->s_inode_list_lock and CAN block.
  45. */
  46. static void fsnotify_unmount_inodes(struct super_block *sb)
  47. {
  48. struct inode *inode, *iput_inode = NULL;
  49. spin_lock(&sb->s_inode_list_lock);
  50. list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
  51. /*
  52. * We cannot __iget() an inode in state I_FREEING,
  53. * I_WILL_FREE, or I_NEW which is fine because by that point
  54. * the inode cannot have any associated watches.
  55. */
  56. spin_lock(&inode->i_lock);
  57. if (inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) {
  58. spin_unlock(&inode->i_lock);
  59. continue;
  60. }
  61. /*
  62. * If i_count is zero, the inode cannot have any watches and
  63. * doing an __iget/iput with SB_ACTIVE clear would actually
  64. * evict all inodes with zero i_count from icache which is
  65. * unnecessarily violent and may in fact be illegal to do.
  66. */
  67. if (!atomic_read(&inode->i_count)) {
  68. spin_unlock(&inode->i_lock);
  69. continue;
  70. }
  71. __iget(inode);
  72. spin_unlock(&inode->i_lock);
  73. spin_unlock(&sb->s_inode_list_lock);
  74. if (iput_inode)
  75. iput(iput_inode);
  76. /* for each watch, send FS_UNMOUNT and then remove it */
  77. fsnotify(inode, FS_UNMOUNT, inode, FSNOTIFY_EVENT_INODE, NULL, 0);
  78. fsnotify_inode_delete(inode);
  79. iput_inode = inode;
  80. spin_lock(&sb->s_inode_list_lock);
  81. }
  82. spin_unlock(&sb->s_inode_list_lock);
  83. if (iput_inode)
  84. iput(iput_inode);
  85. /* Wait for outstanding inode references from connectors */
  86. wait_var_event(&sb->s_fsnotify_inode_refs,
  87. !atomic_long_read(&sb->s_fsnotify_inode_refs));
  88. }
  89. void fsnotify_sb_delete(struct super_block *sb)
  90. {
  91. fsnotify_unmount_inodes(sb);
  92. fsnotify_clear_marks_by_sb(sb);
  93. }
  94. /*
  95. * Given an inode, first check if we care what happens to our children. Inotify
  96. * and dnotify both tell their parents about events. If we care about any event
  97. * on a child we run all of our children and set a dentry flag saying that the
  98. * parent cares. Thus when an event happens on a child it can quickly tell if
  99. * if there is a need to find a parent and send the event to the parent.
  100. */
  101. void __fsnotify_update_child_dentry_flags(struct inode *inode)
  102. {
  103. struct dentry *alias;
  104. int watched;
  105. if (!S_ISDIR(inode->i_mode))
  106. return;
  107. /* determine if the children should tell inode about their events */
  108. watched = fsnotify_inode_watches_children(inode);
  109. spin_lock(&inode->i_lock);
  110. /* run all of the dentries associated with this inode. Since this is a
  111. * directory, there damn well better only be one item on this list */
  112. hlist_for_each_entry(alias, &inode->i_dentry, d_u.d_alias) {
  113. struct dentry *child;
  114. /* run all of the children of the original inode and fix their
  115. * d_flags to indicate parental interest (their parent is the
  116. * original inode) */
  117. spin_lock(&alias->d_lock);
  118. list_for_each_entry(child, &alias->d_subdirs, d_child) {
  119. if (!child->d_inode)
  120. continue;
  121. spin_lock_nested(&child->d_lock, DENTRY_D_LOCK_NESTED);
  122. if (watched)
  123. child->d_flags |= DCACHE_FSNOTIFY_PARENT_WATCHED;
  124. else
  125. child->d_flags &= ~DCACHE_FSNOTIFY_PARENT_WATCHED;
  126. spin_unlock(&child->d_lock);
  127. }
  128. spin_unlock(&alias->d_lock);
  129. }
  130. spin_unlock(&inode->i_lock);
  131. }
  132. /* Notify this dentry's parent about a child's events. */
  133. int __fsnotify_parent(const struct path *path, struct dentry *dentry, __u32 mask)
  134. {
  135. struct dentry *parent;
  136. struct inode *p_inode;
  137. int ret = 0;
  138. if (!dentry)
  139. dentry = path->dentry;
  140. if (!(dentry->d_flags & DCACHE_FSNOTIFY_PARENT_WATCHED))
  141. return 0;
  142. parent = dget_parent(dentry);
  143. p_inode = parent->d_inode;
  144. if (unlikely(!fsnotify_inode_watches_children(p_inode))) {
  145. __fsnotify_update_child_dentry_flags(p_inode);
  146. } else if (p_inode->i_fsnotify_mask & mask & ALL_FSNOTIFY_EVENTS) {
  147. struct name_snapshot name;
  148. /* we are notifying a parent so come up with the new mask which
  149. * specifies these are events which came from a child. */
  150. mask |= FS_EVENT_ON_CHILD;
  151. take_dentry_name_snapshot(&name, dentry);
  152. if (path)
  153. ret = fsnotify(p_inode, mask, path, FSNOTIFY_EVENT_PATH,
  154. name.name, 0);
  155. else
  156. ret = fsnotify(p_inode, mask, dentry->d_inode, FSNOTIFY_EVENT_INODE,
  157. name.name, 0);
  158. release_dentry_name_snapshot(&name);
  159. }
  160. dput(parent);
  161. return ret;
  162. }
  163. EXPORT_SYMBOL_GPL(__fsnotify_parent);
  164. static int send_to_group(struct inode *to_tell,
  165. __u32 mask, const void *data,
  166. int data_is, u32 cookie,
  167. const unsigned char *file_name,
  168. struct fsnotify_iter_info *iter_info)
  169. {
  170. struct fsnotify_group *group = NULL;
  171. __u32 test_mask = (mask & ALL_FSNOTIFY_EVENTS);
  172. __u32 marks_mask = 0;
  173. __u32 marks_ignored_mask = 0;
  174. struct fsnotify_mark *mark;
  175. int type;
  176. if (WARN_ON(!iter_info->report_mask))
  177. return 0;
  178. /* clear ignored on inode modification */
  179. if (mask & FS_MODIFY) {
  180. fsnotify_foreach_obj_type(type) {
  181. if (!fsnotify_iter_should_report_type(iter_info, type))
  182. continue;
  183. mark = iter_info->marks[type];
  184. if (mark &&
  185. !(mark->flags & FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY))
  186. mark->ignored_mask = 0;
  187. }
  188. }
  189. fsnotify_foreach_obj_type(type) {
  190. if (!fsnotify_iter_should_report_type(iter_info, type))
  191. continue;
  192. mark = iter_info->marks[type];
  193. /* does the object mark tell us to do something? */
  194. if (mark) {
  195. group = mark->group;
  196. marks_mask |= mark->mask;
  197. marks_ignored_mask |= mark->ignored_mask;
  198. }
  199. }
  200. pr_debug("%s: group=%p to_tell=%p mask=%x marks_mask=%x marks_ignored_mask=%x"
  201. " data=%p data_is=%d cookie=%d\n",
  202. __func__, group, to_tell, mask, marks_mask, marks_ignored_mask,
  203. data, data_is, cookie);
  204. if (!(test_mask & marks_mask & ~marks_ignored_mask))
  205. return 0;
  206. return group->ops->handle_event(group, to_tell, mask, data, data_is,
  207. file_name, cookie, iter_info);
  208. }
  209. static struct fsnotify_mark *fsnotify_first_mark(struct fsnotify_mark_connector **connp)
  210. {
  211. struct fsnotify_mark_connector *conn;
  212. struct hlist_node *node = NULL;
  213. conn = srcu_dereference(*connp, &fsnotify_mark_srcu);
  214. if (conn)
  215. node = srcu_dereference(conn->list.first, &fsnotify_mark_srcu);
  216. return hlist_entry_safe(node, struct fsnotify_mark, obj_list);
  217. }
  218. static struct fsnotify_mark *fsnotify_next_mark(struct fsnotify_mark *mark)
  219. {
  220. struct hlist_node *node = NULL;
  221. if (mark)
  222. node = srcu_dereference(mark->obj_list.next,
  223. &fsnotify_mark_srcu);
  224. return hlist_entry_safe(node, struct fsnotify_mark, obj_list);
  225. }
  226. /*
  227. * iter_info is a multi head priority queue of marks.
  228. * Pick a subset of marks from queue heads, all with the
  229. * same group and set the report_mask for selected subset.
  230. * Returns the report_mask of the selected subset.
  231. */
  232. static unsigned int fsnotify_iter_select_report_types(
  233. struct fsnotify_iter_info *iter_info)
  234. {
  235. struct fsnotify_group *max_prio_group = NULL;
  236. struct fsnotify_mark *mark;
  237. int type;
  238. /* Choose max prio group among groups of all queue heads */
  239. fsnotify_foreach_obj_type(type) {
  240. mark = iter_info->marks[type];
  241. if (mark &&
  242. fsnotify_compare_groups(max_prio_group, mark->group) > 0)
  243. max_prio_group = mark->group;
  244. }
  245. if (!max_prio_group)
  246. return 0;
  247. /* Set the report mask for marks from same group as max prio group */
  248. iter_info->report_mask = 0;
  249. fsnotify_foreach_obj_type(type) {
  250. mark = iter_info->marks[type];
  251. if (mark &&
  252. fsnotify_compare_groups(max_prio_group, mark->group) == 0)
  253. fsnotify_iter_set_report_type(iter_info, type);
  254. }
  255. return iter_info->report_mask;
  256. }
  257. /*
  258. * Pop from iter_info multi head queue, the marks that were iterated in the
  259. * current iteration step.
  260. */
  261. static void fsnotify_iter_next(struct fsnotify_iter_info *iter_info)
  262. {
  263. int type;
  264. fsnotify_foreach_obj_type(type) {
  265. if (fsnotify_iter_should_report_type(iter_info, type))
  266. iter_info->marks[type] =
  267. fsnotify_next_mark(iter_info->marks[type]);
  268. }
  269. }
  270. /*
  271. * This is the main call to fsnotify. The VFS calls into hook specific functions
  272. * in linux/fsnotify.h. Those functions then in turn call here. Here will call
  273. * out to all of the registered fsnotify_group. Those groups can then use the
  274. * notification event in whatever means they feel necessary.
  275. */
  276. int fsnotify(struct inode *to_tell, __u32 mask, const void *data, int data_is,
  277. const unsigned char *file_name, u32 cookie)
  278. {
  279. struct fsnotify_iter_info iter_info = {};
  280. struct super_block *sb = NULL;
  281. struct mount *mnt = NULL;
  282. __u32 mnt_or_sb_mask = 0;
  283. int ret = 0;
  284. __u32 test_mask = (mask & ALL_FSNOTIFY_EVENTS);
  285. if (data_is == FSNOTIFY_EVENT_PATH) {
  286. mnt = real_mount(((const struct path *)data)->mnt);
  287. sb = mnt->mnt.mnt_sb;
  288. mnt_or_sb_mask = mnt->mnt_fsnotify_mask | sb->s_fsnotify_mask;
  289. }
  290. /* An event "on child" is not intended for a mount/sb mark */
  291. if (mask & FS_EVENT_ON_CHILD)
  292. mnt_or_sb_mask = 0;
  293. /*
  294. * Optimization: srcu_read_lock() has a memory barrier which can
  295. * be expensive. It protects walking the *_fsnotify_marks lists.
  296. * However, if we do not walk the lists, we do not have to do
  297. * SRCU because we have no references to any objects and do not
  298. * need SRCU to keep them "alive".
  299. */
  300. if (!to_tell->i_fsnotify_marks &&
  301. (!mnt || (!mnt->mnt_fsnotify_marks && !sb->s_fsnotify_marks)))
  302. return 0;
  303. /*
  304. * if this is a modify event we may need to clear the ignored masks
  305. * otherwise return if neither the inode nor the vfsmount/sb care about
  306. * this type of event.
  307. */
  308. if (!(mask & FS_MODIFY) &&
  309. !(test_mask & (to_tell->i_fsnotify_mask | mnt_or_sb_mask)))
  310. return 0;
  311. iter_info.srcu_idx = srcu_read_lock(&fsnotify_mark_srcu);
  312. iter_info.marks[FSNOTIFY_OBJ_TYPE_INODE] =
  313. fsnotify_first_mark(&to_tell->i_fsnotify_marks);
  314. if (mnt) {
  315. iter_info.marks[FSNOTIFY_OBJ_TYPE_VFSMOUNT] =
  316. fsnotify_first_mark(&mnt->mnt_fsnotify_marks);
  317. iter_info.marks[FSNOTIFY_OBJ_TYPE_SB] =
  318. fsnotify_first_mark(&sb->s_fsnotify_marks);
  319. }
  320. /*
  321. * We need to merge inode/vfsmount/sb mark lists so that e.g. inode mark
  322. * ignore masks are properly reflected for mount/sb mark notifications.
  323. * That's why this traversal is so complicated...
  324. */
  325. while (fsnotify_iter_select_report_types(&iter_info)) {
  326. ret = send_to_group(to_tell, mask, data, data_is, cookie,
  327. file_name, &iter_info);
  328. if (ret && (mask & ALL_FSNOTIFY_PERM_EVENTS))
  329. goto out;
  330. fsnotify_iter_next(&iter_info);
  331. }
  332. ret = 0;
  333. out:
  334. srcu_read_unlock(&fsnotify_mark_srcu, iter_info.srcu_idx);
  335. return ret;
  336. }
  337. EXPORT_SYMBOL_GPL(fsnotify);
  338. extern struct kmem_cache *fsnotify_mark_connector_cachep;
  339. static __init int fsnotify_init(void)
  340. {
  341. int ret;
  342. BUILD_BUG_ON(HWEIGHT32(ALL_FSNOTIFY_BITS) != 23);
  343. ret = init_srcu_struct(&fsnotify_mark_srcu);
  344. if (ret)
  345. panic("initializing fsnotify_mark_srcu");
  346. fsnotify_mark_connector_cachep = KMEM_CACHE(fsnotify_mark_connector,
  347. SLAB_PANIC);
  348. return 0;
  349. }
  350. core_initcall(fsnotify_init);