]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/notify/fanotify/fanotify.c
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / fs / notify / fanotify / fanotify.c
CommitLineData
33d3dfff 1#include <linux/fanotify.h>
ff0b16a9
EP
2#include <linux/fdtable.h>
3#include <linux/fsnotify_backend.h>
4#include <linux/init.h>
9e66e423 5#include <linux/jiffies.h>
ff0b16a9 6#include <linux/kernel.h> /* UINT_MAX */
1c529063 7#include <linux/mount.h>
9e66e423 8#include <linux/sched.h>
ff0b16a9 9#include <linux/types.h>
9e66e423 10#include <linux/wait.h>
ff0b16a9 11
7053aee2
JK
12#include "fanotify.h"
13
14static bool should_merge(struct fsnotify_event *old_fsn,
15 struct fsnotify_event *new_fsn)
767cd46c 16{
7053aee2 17 struct fanotify_event_info *old, *new;
767cd46c 18
7053aee2
JK
19 pr_debug("%s: old=%p new=%p\n", __func__, old_fsn, new_fsn);
20 old = FANOTIFY_E(old_fsn);
21 new = FANOTIFY_E(new_fsn);
22
23 if (old_fsn->inode == new_fsn->inode && old->tgid == new->tgid &&
24 old->path.mnt == new->path.mnt &&
25 old->path.dentry == new->path.dentry)
26 return true;
767cd46c
EP
27 return false;
28}
29
f70ab54c 30/* and the list better be locked by something too! */
83c0e1b4 31static int fanotify_merge(struct list_head *list, struct fsnotify_event *event)
767cd46c 32{
7053aee2 33 struct fsnotify_event *test_event;
767cd46c
EP
34
35 pr_debug("%s: list=%p event=%p\n", __func__, list, event);
36
13116dfd
JK
37#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
38 /*
39 * Don't merge a permission event with any other event so that we know
40 * the event structure we have created in fanotify_handle_event() is the
41 * one we should check for permission response.
42 */
43 if (event->mask & FAN_ALL_PERM_EVENTS)
83c0e1b4 44 return 0;
13116dfd
JK
45#endif
46
7053aee2
JK
47 list_for_each_entry_reverse(test_event, list, list) {
48 if (should_merge(test_event, event)) {
6c71100d
KM
49 test_event->mask |= event->mask;
50 return 1;
a12a7dd3
EP
51 }
52 }
f70ab54c 53
6c71100d 54 return 0;
767cd46c
EP
55}
56
9e66e423 57#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
f083441b
JK
58static int fanotify_get_response(struct fsnotify_group *group,
59 struct fanotify_perm_event_info *event)
9e66e423
EP
60{
61 int ret;
62
63 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
64
96d41019 65 wait_event(group->fanotify_data.access_waitq, event->response);
9e66e423
EP
66
67 /* userspace responded, convert to something usable */
9e66e423
EP
68 switch (event->response) {
69 case FAN_ALLOW:
70 ret = 0;
71 break;
72 case FAN_DENY:
73 default:
74 ret = -EPERM;
75 }
76 event->response = 0;
9e66e423 77
b2d87909
EP
78 pr_debug("%s: group=%p event=%p about to return ret=%d\n", __func__,
79 group, event, ret);
80
9e66e423
EP
81 return ret;
82}
83#endif
84
83c4c4b0 85static bool fanotify_should_send_event(struct fsnotify_mark *inode_mark,
1968f5ee 86 struct fsnotify_mark *vfsmnt_mark,
83c4c4b0 87 u32 event_mask,
3cd5eca8 88 const void *data, int data_type)
1c529063 89{
1968f5ee 90 __u32 marks_mask, marks_ignored_mask;
3cd5eca8 91 const struct path *path = data;
1968f5ee 92
83c4c4b0
JK
93 pr_debug("%s: inode_mark=%p vfsmnt_mark=%p mask=%x data=%p"
94 " data_type=%d\n", __func__, inode_mark, vfsmnt_mark,
95 event_mask, data, data_type);
1968f5ee 96
1c529063 97 /* if we don't have enough info to send an event to userspace say no */
2069601b 98 if (data_type != FSNOTIFY_EVENT_PATH)
1c529063
EP
99 return false;
100
e1c048ba 101 /* sorry, fanotify only gives a damn about files and dirs */
e36cb0b8 102 if (!d_is_reg(path->dentry) &&
54f2a2f4 103 !d_can_lookup(path->dentry))
e1c048ba
EP
104 return false;
105
1968f5ee
EP
106 if (inode_mark && vfsmnt_mark) {
107 marks_mask = (vfsmnt_mark->mask | inode_mark->mask);
108 marks_ignored_mask = (vfsmnt_mark->ignored_mask | inode_mark->ignored_mask);
109 } else if (inode_mark) {
110 /*
111 * if the event is for a child and this inode doesn't care about
112 * events on the child, don't send it!
113 */
114 if ((event_mask & FS_EVENT_ON_CHILD) &&
115 !(inode_mark->mask & FS_EVENT_ON_CHILD))
116 return false;
117 marks_mask = inode_mark->mask;
118 marks_ignored_mask = inode_mark->ignored_mask;
119 } else if (vfsmnt_mark) {
120 marks_mask = vfsmnt_mark->mask;
121 marks_ignored_mask = vfsmnt_mark->ignored_mask;
122 } else {
123 BUG();
124 }
125
e36cb0b8 126 if (d_is_dir(path->dentry) &&
66ba93c0 127 !(marks_mask & FS_ISDIR & ~marks_ignored_mask))
8fcd6528
EP
128 return false;
129
b3c1030d
SP
130 if (event_mask & FAN_ALL_OUTGOING_EVENTS & marks_mask &
131 ~marks_ignored_mask)
1968f5ee
EP
132 return true;
133
134 return false;
1c529063
EP
135}
136
f083441b 137struct fanotify_event_info *fanotify_alloc_event(struct inode *inode, u32 mask,
3cd5eca8 138 const struct path *path)
f083441b
JK
139{
140 struct fanotify_event_info *event;
141
142#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
143 if (mask & FAN_ALL_PERM_EVENTS) {
144 struct fanotify_perm_event_info *pevent;
145
146 pevent = kmem_cache_alloc(fanotify_perm_event_cachep,
147 GFP_KERNEL);
148 if (!pevent)
149 return NULL;
150 event = &pevent->fae;
151 pevent->response = 0;
152 goto init;
153 }
154#endif
155 event = kmem_cache_alloc(fanotify_event_cachep, GFP_KERNEL);
156 if (!event)
157 return NULL;
158init: __maybe_unused
159 fsnotify_init_event(&event->fse, inode, mask);
160 event->tgid = get_pid(task_tgid(current));
161 if (path) {
162 event->path = *path;
163 path_get(&event->path);
164 } else {
165 event->path.mnt = NULL;
166 event->path.dentry = NULL;
167 }
168 return event;
169}
170
7053aee2
JK
171static int fanotify_handle_event(struct fsnotify_group *group,
172 struct inode *inode,
173 struct fsnotify_mark *inode_mark,
174 struct fsnotify_mark *fanotify_mark,
3cd5eca8 175 u32 mask, const void *data, int data_type,
45a22f4c 176 const unsigned char *file_name, u32 cookie)
7053aee2
JK
177{
178 int ret = 0;
179 struct fanotify_event_info *event;
180 struct fsnotify_event *fsn_event;
7053aee2
JK
181
182 BUILD_BUG_ON(FAN_ACCESS != FS_ACCESS);
183 BUILD_BUG_ON(FAN_MODIFY != FS_MODIFY);
184 BUILD_BUG_ON(FAN_CLOSE_NOWRITE != FS_CLOSE_NOWRITE);
185 BUILD_BUG_ON(FAN_CLOSE_WRITE != FS_CLOSE_WRITE);
186 BUILD_BUG_ON(FAN_OPEN != FS_OPEN);
187 BUILD_BUG_ON(FAN_EVENT_ON_CHILD != FS_EVENT_ON_CHILD);
188 BUILD_BUG_ON(FAN_Q_OVERFLOW != FS_Q_OVERFLOW);
189 BUILD_BUG_ON(FAN_OPEN_PERM != FS_OPEN_PERM);
190 BUILD_BUG_ON(FAN_ACCESS_PERM != FS_ACCESS_PERM);
191 BUILD_BUG_ON(FAN_ONDIR != FS_ISDIR);
192
83c4c4b0
JK
193 if (!fanotify_should_send_event(inode_mark, fanotify_mark, mask, data,
194 data_type))
195 return 0;
196
7053aee2
JK
197 pr_debug("%s: group=%p inode=%p mask=%x\n", __func__, group, inode,
198 mask);
199
f083441b 200 event = fanotify_alloc_event(inode, mask, data);
7053aee2
JK
201 if (unlikely(!event))
202 return -ENOMEM;
203
204 fsn_event = &event->fse;
8ba8fa91 205 ret = fsnotify_add_event(group, fsn_event, fanotify_merge);
83c0e1b4 206 if (ret) {
482ef06c
JK
207 /* Permission events shouldn't be merged */
208 BUG_ON(ret == 1 && mask & FAN_ALL_PERM_EVENTS);
7053aee2
JK
209 /* Our event wasn't used in the end. Free it. */
210 fsnotify_destroy_event(group, fsn_event);
482ef06c
JK
211
212 return 0;
7053aee2
JK
213 }
214
215#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
85816794 216 if (mask & FAN_ALL_PERM_EVENTS) {
f083441b 217 ret = fanotify_get_response(group, FANOTIFY_PE(fsn_event));
85816794
JK
218 fsnotify_destroy_event(group, fsn_event);
219 }
7053aee2
JK
220#endif
221 return ret;
222}
223
4afeff85
EP
224static void fanotify_free_group_priv(struct fsnotify_group *group)
225{
226 struct user_struct *user;
227
228 user = group->fanotify_data.user;
229 atomic_dec(&user->fanotify_listeners);
230 free_uid(user);
231}
232
7053aee2
JK
233static void fanotify_free_event(struct fsnotify_event *fsn_event)
234{
235 struct fanotify_event_info *event;
236
237 event = FANOTIFY_E(fsn_event);
238 path_put(&event->path);
239 put_pid(event->tgid);
f083441b
JK
240#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
241 if (fsn_event->mask & FAN_ALL_PERM_EVENTS) {
242 kmem_cache_free(fanotify_perm_event_cachep,
243 FANOTIFY_PE(fsn_event));
244 return;
245 }
246#endif
7053aee2
JK
247 kmem_cache_free(fanotify_event_cachep, event);
248}
249
ff0b16a9
EP
250const struct fsnotify_ops fanotify_fsnotify_ops = {
251 .handle_event = fanotify_handle_event,
4afeff85 252 .free_group_priv = fanotify_free_group_priv,
7053aee2 253 .free_event = fanotify_free_event,
ff0b16a9 254};