Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Directory notifications for Linux. |
| 3 | * |
| 4 | * Copyright (C) 2000,2001,2002 Stephen Rothwell |
| 5 | * |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 6 | * Copyright (C) 2009 Eric Paris <Red Hat Inc> |
| 7 | * dnotify was largly rewritten to use the new fsnotify infrastructure |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or modify it |
| 10 | * under the terms of the GNU General Public License as published by the |
| 11 | * Free Software Foundation; either version 2, or (at your option) any |
| 12 | * later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | */ |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/sched.h> |
| 22 | #include <linux/dnotify.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/spinlock.h> |
| 25 | #include <linux/slab.h> |
Al Viro | 9f3acc3 | 2008-04-24 07:44:08 -0400 | [diff] [blame] | 26 | #include <linux/fdtable.h> |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 27 | #include <linux/fsnotify_backend.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Eric Dumazet | fa3536c | 2006-03-26 01:37:24 -0800 | [diff] [blame] | 29 | int dir_notify_enable __read_mostly = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 31 | static struct kmem_cache *dnotify_struct_cache __read_mostly; |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 32 | static struct kmem_cache *dnotify_mark_cache __read_mostly; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 33 | static struct fsnotify_group *dnotify_group __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 35 | /* |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 36 | * dnotify will attach one of these to each inode (i_fsnotify_marks) which |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 37 | * is being watched by dnotify. If multiple userspace applications are watching |
| 38 | * the same directory with dnotify their information is chained in dn |
| 39 | */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 40 | struct dnotify_mark { |
| 41 | struct fsnotify_mark fsn_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct dnotify_struct *dn; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 43 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 45 | /* |
| 46 | * When a process starts or stops watching an inode the set of events which |
| 47 | * dnotify cares about for that inode may change. This function runs the |
| 48 | * list of everything receiving dnotify events about this directory and calculates |
| 49 | * the set of all those events. After it updates what dnotify is interested in |
| 50 | * it calls the fsnotify function so it can update the set of all events relevant |
| 51 | * to this inode. |
| 52 | */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 53 | static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 54 | { |
| 55 | __u32 new_mask, old_mask; |
| 56 | struct dnotify_struct *dn; |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 57 | struct dnotify_mark *dn_mark = container_of(fsn_mark, |
| 58 | struct dnotify_mark, |
| 59 | fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 60 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 61 | assert_spin_locked(&fsn_mark->lock); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 62 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 63 | old_mask = fsn_mark->mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | new_mask = 0; |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 65 | for (dn = dn_mark->dn; dn != NULL; dn = dn->dn_next) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 66 | new_mask |= (dn->dn_mask & ~FS_DN_MULTISHOT); |
Eric Paris | 90b1e7a | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 67 | fsnotify_set_mark_mask_locked(fsn_mark, new_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 69 | if (old_mask == new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | return; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 71 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 72 | if (fsn_mark->i.inode) |
| 73 | fsnotify_recalc_inode_mask(fsn_mark->i.inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 76 | /* |
| 77 | * Mains fsnotify call where events are delivered to dnotify. |
| 78 | * Find the dnotify mark on the relevant inode, run the list of dnotify structs |
| 79 | * on that mark and determine which of them has expressed interest in receiving |
| 80 | * events of this type. When found send the correct process and signal and |
| 81 | * destroy the dnotify struct if it was not registered to receive multiple |
| 82 | * events. |
| 83 | */ |
| 84 | static int dnotify_handle_event(struct fsnotify_group *group, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame^] | 85 | struct inode *inode, |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 86 | struct fsnotify_mark *inode_mark, |
| 87 | struct fsnotify_mark *vfsmount_mark, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame^] | 88 | u32 mask, void *data, int data_type, |
| 89 | const unsigned char *file_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | { |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 91 | struct dnotify_mark *dn_mark; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | struct dnotify_struct *dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | struct dnotify_struct **prev; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 94 | struct fown_struct *fown; |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame^] | 95 | __u32 test_mask = mask & ~FS_EVENT_ON_CHILD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 97 | BUG_ON(vfsmount_mark); |
| 98 | |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 99 | dn_mark = container_of(inode_mark, struct dnotify_mark, fsn_mark); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 101 | spin_lock(&inode_mark->lock); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 102 | prev = &dn_mark->dn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | while ((dn = *prev) != NULL) { |
Andreas Gruenbacher | 9455268 | 2009-10-15 00:13:23 +0200 | [diff] [blame] | 104 | if ((dn->dn_mask & test_mask) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | prev = &dn->dn_next; |
| 106 | continue; |
| 107 | } |
| 108 | fown = &dn->dn_filp->f_owner; |
| 109 | send_sigio(fown, dn->dn_fd, POLL_MSG); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 110 | if (dn->dn_mask & FS_DN_MULTISHOT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | prev = &dn->dn_next; |
| 112 | else { |
| 113 | *prev = dn->dn_next; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 114 | kmem_cache_free(dnotify_struct_cache, dn); |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 115 | dnotify_recalc_inode_mask(inode_mark); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 119 | spin_unlock(&inode_mark->lock); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 120 | |
| 121 | return 0; |
| 122 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | /* |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 125 | * Given an inode and mask determine if dnotify would be interested in sending |
| 126 | * userspace notification for that pair. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | */ |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 128 | static bool dnotify_should_send_event(struct fsnotify_group *group, |
Eric Paris | 1968f5e | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 129 | struct inode *inode, |
Eric Paris | ce8f76f | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 130 | struct fsnotify_mark *inode_mark, |
| 131 | struct fsnotify_mark *vfsmount_mark, |
| 132 | __u32 mask, void *data, int data_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 134 | /* not a dir, dnotify doesn't care */ |
| 135 | if (!S_ISDIR(inode->i_mode)) |
| 136 | return false; |
| 137 | |
Eric Paris | 2612abb | 2010-07-28 10:18:39 -0400 | [diff] [blame] | 138 | return true; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 139 | } |
| 140 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 141 | static void dnotify_free_mark(struct fsnotify_mark *fsn_mark) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 142 | { |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 143 | struct dnotify_mark *dn_mark = container_of(fsn_mark, |
| 144 | struct dnotify_mark, |
| 145 | fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 146 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 147 | BUG_ON(dn_mark->dn); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 148 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 149 | kmem_cache_free(dnotify_mark_cache, dn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | static struct fsnotify_ops dnotify_fsnotify_ops = { |
| 153 | .handle_event = dnotify_handle_event, |
| 154 | .should_send_event = dnotify_should_send_event, |
| 155 | .free_group_priv = NULL, |
Eric Paris | a092ee2 | 2009-06-11 11:09:48 -0400 | [diff] [blame] | 156 | .freeing_mark = NULL, |
Jan Kara | 7053aee | 2014-01-21 15:48:14 -0800 | [diff] [blame^] | 157 | .free_event = NULL, |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | /* |
| 161 | * Called every time a file is closed. Looks first for a dnotify mark on the |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 162 | * inode. If one is found run all of the ->dn structures attached to that |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 163 | * mark for one relevant to this process closing the file and remove that |
| 164 | * dnotify_struct. If that was the last dnotify_struct also remove the |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 165 | * fsnotify_mark. |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 166 | */ |
| 167 | void dnotify_flush(struct file *filp, fl_owner_t id) |
| 168 | { |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 169 | struct fsnotify_mark *fsn_mark; |
| 170 | struct dnotify_mark *dn_mark; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 171 | struct dnotify_struct *dn; |
| 172 | struct dnotify_struct **prev; |
| 173 | struct inode *inode; |
| 174 | |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 175 | inode = file_inode(filp); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 176 | if (!S_ISDIR(inode->i_mode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | return; |
| 178 | |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 179 | fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 180 | if (!fsn_mark) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 181 | return; |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 182 | dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 183 | |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 184 | mutex_lock(&dnotify_group->mark_mutex); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 185 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 186 | spin_lock(&fsn_mark->lock); |
| 187 | prev = &dn_mark->dn; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 188 | while ((dn = *prev) != NULL) { |
| 189 | if ((dn->dn_owner == id) && (dn->dn_filp == filp)) { |
| 190 | *prev = dn->dn_next; |
| 191 | kmem_cache_free(dnotify_struct_cache, dn); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 192 | dnotify_recalc_inode_mask(fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 193 | break; |
| 194 | } |
| 195 | prev = &dn->dn_next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | } |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 197 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 198 | spin_unlock(&fsn_mark->lock); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 199 | |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 200 | /* nothing else could have found us thanks to the dnotify_groups |
| 201 | mark_mutex */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 202 | if (dn_mark->dn == NULL) |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 203 | fsnotify_destroy_mark_locked(fsn_mark, dnotify_group); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 204 | |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 205 | mutex_unlock(&dnotify_group->mark_mutex); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 206 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 207 | fsnotify_put_mark(fsn_mark); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | } |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 209 | |
| 210 | /* this conversion is done only at watch creation */ |
| 211 | static __u32 convert_arg(unsigned long arg) |
| 212 | { |
| 213 | __u32 new_mask = FS_EVENT_ON_CHILD; |
| 214 | |
| 215 | if (arg & DN_MULTISHOT) |
| 216 | new_mask |= FS_DN_MULTISHOT; |
| 217 | if (arg & DN_DELETE) |
| 218 | new_mask |= (FS_DELETE | FS_MOVED_FROM); |
| 219 | if (arg & DN_MODIFY) |
| 220 | new_mask |= FS_MODIFY; |
| 221 | if (arg & DN_ACCESS) |
| 222 | new_mask |= FS_ACCESS; |
| 223 | if (arg & DN_ATTRIB) |
| 224 | new_mask |= FS_ATTRIB; |
| 225 | if (arg & DN_RENAME) |
| 226 | new_mask |= FS_DN_RENAME; |
| 227 | if (arg & DN_CREATE) |
| 228 | new_mask |= (FS_CREATE | FS_MOVED_TO); |
| 229 | |
| 230 | return new_mask; |
| 231 | } |
| 232 | |
| 233 | /* |
| 234 | * If multiple processes watch the same inode with dnotify there is only one |
Eric Paris | e61ce86 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 235 | * dnotify mark in inode->i_fsnotify_marks but we chain a dnotify_struct |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 236 | * onto that mark. This function either attaches the new dnotify_struct onto |
| 237 | * that list, or it |= the mask onto an existing dnofiy_struct. |
| 238 | */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 239 | static int attach_dn(struct dnotify_struct *dn, struct dnotify_mark *dn_mark, |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 240 | fl_owner_t id, int fd, struct file *filp, __u32 mask) |
| 241 | { |
| 242 | struct dnotify_struct *odn; |
| 243 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 244 | odn = dn_mark->dn; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 245 | while (odn != NULL) { |
| 246 | /* adding more events to existing dnofiy_struct? */ |
| 247 | if ((odn->dn_owner == id) && (odn->dn_filp == filp)) { |
| 248 | odn->dn_fd = fd; |
| 249 | odn->dn_mask |= mask; |
| 250 | return -EEXIST; |
| 251 | } |
| 252 | odn = odn->dn_next; |
| 253 | } |
| 254 | |
| 255 | dn->dn_mask = mask; |
| 256 | dn->dn_fd = fd; |
| 257 | dn->dn_filp = filp; |
| 258 | dn->dn_owner = id; |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 259 | dn->dn_next = dn_mark->dn; |
| 260 | dn_mark->dn = dn; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | /* |
| 266 | * When a process calls fcntl to attach a dnotify watch to a directory it ends |
| 267 | * up here. Allocate both a mark for fsnotify to add and a dnotify_struct to be |
| 268 | * attached to the fsnotify_mark. |
| 269 | */ |
| 270 | int fcntl_dirnotify(int fd, struct file *filp, unsigned long arg) |
| 271 | { |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 272 | struct dnotify_mark *new_dn_mark, *dn_mark; |
| 273 | struct fsnotify_mark *new_fsn_mark, *fsn_mark; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 274 | struct dnotify_struct *dn; |
| 275 | struct inode *inode; |
| 276 | fl_owner_t id = current->files; |
| 277 | struct file *f; |
| 278 | int destroy = 0, error = 0; |
| 279 | __u32 mask; |
| 280 | |
| 281 | /* we use these to tell if we need to kfree */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 282 | new_fsn_mark = NULL; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 283 | dn = NULL; |
| 284 | |
| 285 | if (!dir_notify_enable) { |
| 286 | error = -EINVAL; |
| 287 | goto out_err; |
| 288 | } |
| 289 | |
| 290 | /* a 0 mask means we are explicitly removing the watch */ |
| 291 | if ((arg & ~DN_MULTISHOT) == 0) { |
| 292 | dnotify_flush(filp, id); |
| 293 | error = 0; |
| 294 | goto out_err; |
| 295 | } |
| 296 | |
| 297 | /* dnotify only works on directories */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 298 | inode = file_inode(filp); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 299 | if (!S_ISDIR(inode->i_mode)) { |
| 300 | error = -ENOTDIR; |
| 301 | goto out_err; |
| 302 | } |
| 303 | |
| 304 | /* expect most fcntl to add new rather than augment old */ |
| 305 | dn = kmem_cache_alloc(dnotify_struct_cache, GFP_KERNEL); |
| 306 | if (!dn) { |
| 307 | error = -ENOMEM; |
| 308 | goto out_err; |
| 309 | } |
| 310 | |
| 311 | /* new fsnotify mark, we expect most fcntl calls to add a new mark */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 312 | new_dn_mark = kmem_cache_alloc(dnotify_mark_cache, GFP_KERNEL); |
| 313 | if (!new_dn_mark) { |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 314 | error = -ENOMEM; |
| 315 | goto out_err; |
| 316 | } |
| 317 | |
| 318 | /* convert the userspace DN_* "arg" to the internal FS_* defines in fsnotify */ |
| 319 | mask = convert_arg(arg); |
| 320 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 321 | /* set up the new_fsn_mark and new_dn_mark */ |
| 322 | new_fsn_mark = &new_dn_mark->fsn_mark; |
| 323 | fsnotify_init_mark(new_fsn_mark, dnotify_free_mark); |
| 324 | new_fsn_mark->mask = mask; |
| 325 | new_dn_mark->dn = NULL; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 326 | |
| 327 | /* this is needed to prevent the fcntl/close race described below */ |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 328 | mutex_lock(&dnotify_group->mark_mutex); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 329 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 330 | /* add the new_fsn_mark or find an old one. */ |
Eric Paris | 5444e29 | 2009-12-17 21:24:27 -0500 | [diff] [blame] | 331 | fsn_mark = fsnotify_find_inode_mark(dnotify_group, inode); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 332 | if (fsn_mark) { |
| 333 | dn_mark = container_of(fsn_mark, struct dnotify_mark, fsn_mark); |
| 334 | spin_lock(&fsn_mark->lock); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 335 | } else { |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 336 | fsnotify_add_mark_locked(new_fsn_mark, dnotify_group, inode, |
| 337 | NULL, 0); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 338 | spin_lock(&new_fsn_mark->lock); |
| 339 | fsn_mark = new_fsn_mark; |
| 340 | dn_mark = new_dn_mark; |
| 341 | /* we used new_fsn_mark, so don't free it */ |
| 342 | new_fsn_mark = NULL; |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | rcu_read_lock(); |
| 346 | f = fcheck(fd); |
| 347 | rcu_read_unlock(); |
| 348 | |
| 349 | /* if (f != filp) means that we lost a race and another task/thread |
| 350 | * actually closed the fd we are still playing with before we grabbed |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 351 | * the dnotify_groups mark_mutex and fsn_mark->lock. Since closing the |
| 352 | * fd is the only time we clean up the marks we need to get our mark |
| 353 | * off the list. */ |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 354 | if (f != filp) { |
| 355 | /* if we added ourselves, shoot ourselves, it's possible that |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 356 | * the flush actually did shoot this fsn_mark. That's fine too |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 357 | * since multiple calls to destroy_mark is perfectly safe, if |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 358 | * we found a dn_mark already attached to the inode, just sod |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 359 | * off silently as the flush at close time dealt with it. |
| 360 | */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 361 | if (dn_mark == new_dn_mark) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 362 | destroy = 1; |
| 363 | goto out; |
| 364 | } |
| 365 | |
| 366 | error = __f_setown(filp, task_pid(current), PIDTYPE_PID, 0); |
| 367 | if (error) { |
| 368 | /* if we added, we must shoot */ |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 369 | if (dn_mark == new_dn_mark) |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 370 | destroy = 1; |
| 371 | goto out; |
| 372 | } |
| 373 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 374 | error = attach_dn(dn, dn_mark, id, fd, filp, mask); |
| 375 | /* !error means that we attached the dn to the dn_mark, so don't free it */ |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 376 | if (!error) |
| 377 | dn = NULL; |
| 378 | /* -EEXIST means that we didn't add this new dn and used an old one. |
| 379 | * that isn't an error (and the unused dn should be freed) */ |
| 380 | else if (error == -EEXIST) |
| 381 | error = 0; |
| 382 | |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 383 | dnotify_recalc_inode_mask(fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 384 | out: |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 385 | spin_unlock(&fsn_mark->lock); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 386 | |
| 387 | if (destroy) |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 388 | fsnotify_destroy_mark_locked(fsn_mark, dnotify_group); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 389 | |
Lino Sanfilippo | 52f8572 | 2013-07-08 15:59:44 -0700 | [diff] [blame] | 390 | mutex_unlock(&dnotify_group->mark_mutex); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 391 | fsnotify_put_mark(fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 392 | out_err: |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 393 | if (new_fsn_mark) |
| 394 | fsnotify_put_mark(new_fsn_mark); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 395 | if (dn) |
| 396 | kmem_cache_free(dnotify_struct_cache, dn); |
| 397 | return error; |
| 398 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | static int __init dnotify_init(void) |
| 401 | { |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 402 | dnotify_struct_cache = KMEM_CACHE(dnotify_struct, SLAB_PANIC); |
Eric Paris | ef5e2b7 | 2009-12-17 21:24:24 -0500 | [diff] [blame] | 403 | dnotify_mark_cache = KMEM_CACHE(dnotify_mark, SLAB_PANIC); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 404 | |
Eric Paris | 0d2e2a1 | 2009-12-17 21:24:22 -0500 | [diff] [blame] | 405 | dnotify_group = fsnotify_alloc_group(&dnotify_fsnotify_ops); |
Eric Paris | 3c5119c | 2009-05-21 17:01:33 -0400 | [diff] [blame] | 406 | if (IS_ERR(dnotify_group)) |
| 407 | panic("unable to allocate fsnotify group for dnotify\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | module_init(dnotify_init) |