blob: a4c46221755ea6e2ed743ac1d060a6ab40b45070 [file] [log] [blame]
Andreas Gruenbacher33d3dff2009-12-17 21:24:29 -05001#include <linux/fanotify.h>
Eric Parisff0b16a2009-12-17 21:24:25 -05002#include <linux/fdtable.h>
3#include <linux/fsnotify_backend.h>
4#include <linux/init.h>
Eric Paris9e66e422009-12-17 21:24:34 -05005#include <linux/jiffies.h>
Eric Parisff0b16a2009-12-17 21:24:25 -05006#include <linux/kernel.h> /* UINT_MAX */
Eric Paris1c529062009-12-17 21:24:28 -05007#include <linux/mount.h>
Eric Paris9e66e422009-12-17 21:24:34 -05008#include <linux/sched.h>
Eric Parisff0b16a2009-12-17 21:24:25 -05009#include <linux/types.h>
Eric Paris9e66e422009-12-17 21:24:34 -050010#include <linux/wait.h>
Eric Parisff0b16a2009-12-17 21:24:25 -050011
Jan Kara7053aee2014-01-21 15:48:14 -080012#include "fanotify.h"
Eric Paris767cd462009-12-17 21:24:25 -050013
Jan Kara7053aee2014-01-21 15:48:14 -080014static bool should_merge(struct fsnotify_event *old_fsn,
15 struct fsnotify_event *new_fsn)
16{
17 struct fanotify_event_info *old, *new;
18
Jan Kara7053aee2014-01-21 15:48:14 -080019 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;
Eric Paris767cd462009-12-17 21:24:25 -050027 return false;
28}
29
Eric Parisf70ab542010-07-28 10:18:37 -040030/* and the list better be locked by something too! */
Jan Kara83c0e1b2014-01-28 18:53:22 +010031static int fanotify_merge(struct list_head *list, struct fsnotify_event *event)
Eric Paris767cd462009-12-17 21:24:25 -050032{
Jan Kara7053aee2014-01-21 15:48:14 -080033 struct fsnotify_event *test_event;
Eric Paris767cd462009-12-17 21:24:25 -050034
35 pr_debug("%s: list=%p event=%p\n", __func__, list, event);
36
Jan Kara13116df2014-01-28 18:29:24 +010037#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)
Jan Kara83c0e1b2014-01-28 18:53:22 +010044 return 0;
Jan Kara13116df2014-01-28 18:29:24 +010045#endif
46
Jan Kara7053aee2014-01-21 15:48:14 -080047 list_for_each_entry_reverse(test_event, list, list) {
48 if (should_merge(test_event, event)) {
Kinglong Mee6c711002017-02-09 20:45:22 +080049 test_event->mask |= event->mask;
50 return 1;
Eric Parisa12a7dd2009-12-17 21:24:25 -050051 }
52 }
Eric Parisf70ab542010-07-28 10:18:37 -040053
Kinglong Mee6c711002017-02-09 20:45:22 +080054 return 0;
Eric Paris767cd462009-12-17 21:24:25 -050055}
56
Eric Paris9e66e422009-12-17 21:24:34 -050057#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Karaf0834412014-04-03 14:46:33 -070058static int fanotify_get_response(struct fsnotify_group *group,
59 struct fanotify_perm_event_info *event)
Eric Paris9e66e422009-12-17 21:24:34 -050060{
61 int ret;
62
63 pr_debug("%s: group=%p event=%p\n", __func__, group, event);
64
Jan Kara96d41012016-09-19 14:44:30 -070065 wait_event(group->fanotify_data.access_waitq, event->response);
Eric Paris9e66e422009-12-17 21:24:34 -050066
67 /* userspace responded, convert to something usable */
Eric Paris9e66e422009-12-17 21:24:34 -050068 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;
Eric Paris9e66e422009-12-17 21:24:34 -050077
Eric Parisb2d87902009-12-17 21:24:34 -050078 pr_debug("%s: group=%p event=%p about to return ret=%d\n", __func__,
79 group, event, ret);
80
Eric Paris9e66e422009-12-17 21:24:34 -050081 return ret;
82}
83#endif
84
Jan Kara83c4c4b2014-01-21 15:48:15 -080085static bool fanotify_should_send_event(struct fsnotify_mark *inode_mark,
Eric Paris1968f5e2010-07-28 10:18:39 -040086 struct fsnotify_mark *vfsmnt_mark,
Jan Kara83c4c4b2014-01-21 15:48:15 -080087 u32 event_mask,
Al Viro3cd5eca2016-11-20 20:19:09 -050088 const void *data, int data_type)
Eric Paris1c529062009-12-17 21:24:28 -050089{
Eric Paris1968f5e2010-07-28 10:18:39 -040090 __u32 marks_mask, marks_ignored_mask;
Al Viro3cd5eca2016-11-20 20:19:09 -050091 const struct path *path = data;
Eric Paris1968f5e2010-07-28 10:18:39 -040092
Jan Kara83c4c4b2014-01-21 15:48:15 -080093 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);
Eric Paris1968f5e2010-07-28 10:18:39 -040096
Eric Paris1c529062009-12-17 21:24:28 -050097 /* if we don't have enough info to send an event to userspace say no */
Linus Torvalds20696012010-08-12 14:23:04 -070098 if (data_type != FSNOTIFY_EVENT_PATH)
Eric Paris1c529062009-12-17 21:24:28 -050099 return false;
100
Eric Parise1c048b2010-10-28 17:21:58 -0400101 /* sorry, fanotify only gives a damn about files and dirs */
David Howellse36cb0b2015-01-29 12:02:35 +0000102 if (!d_is_reg(path->dentry) &&
David Howells54f2a2f2015-01-29 12:02:36 +0000103 !d_can_lookup(path->dentry))
Eric Parise1c048b2010-10-28 17:21:58 -0400104 return false;
105
Eric Paris1968f5e2010-07-28 10:18:39 -0400106 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
David Howellse36cb0b2015-01-29 12:02:35 +0000126 if (d_is_dir(path->dentry) &&
Lino Sanfilippo66ba93c2015-02-10 14:08:27 -0800127 !(marks_mask & FS_ISDIR & ~marks_ignored_mask))
Eric Paris8fcd6522010-10-28 17:21:59 -0400128 return false;
129
Suzuki K. Pouloseb3c10302015-03-12 16:26:08 -0700130 if (event_mask & FAN_ALL_OUTGOING_EVENTS & marks_mask &
131 ~marks_ignored_mask)
Eric Paris1968f5e2010-07-28 10:18:39 -0400132 return true;
133
134 return false;
Eric Paris1c529062009-12-17 21:24:28 -0500135}
136
Jan Karaf0834412014-04-03 14:46:33 -0700137struct fanotify_event_info *fanotify_alloc_event(struct inode *inode, u32 mask,
Al Viro3cd5eca2016-11-20 20:19:09 -0500138 const struct path *path)
Jan Karaf0834412014-04-03 14:46:33 -0700139{
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
Jan Kara7053aee2014-01-21 15:48:14 -0800171static int fanotify_handle_event(struct fsnotify_group *group,
172 struct inode *inode,
173 struct fsnotify_mark *inode_mark,
174 struct fsnotify_mark *fanotify_mark,
Al Viro3cd5eca2016-11-20 20:19:09 -0500175 u32 mask, const void *data, int data_type,
Jan Kara45a22f42014-02-17 13:09:50 +0100176 const unsigned char *file_name, u32 cookie)
Jan Kara7053aee2014-01-21 15:48:14 -0800177{
178 int ret = 0;
179 struct fanotify_event_info *event;
180 struct fsnotify_event *fsn_event;
Jan Kara7053aee2014-01-21 15:48:14 -0800181
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
Jan Kara83c4c4b2014-01-21 15:48:15 -0800193 if (!fanotify_should_send_event(inode_mark, fanotify_mark, mask, data,
194 data_type))
195 return 0;
196
Jan Kara7053aee2014-01-21 15:48:14 -0800197 pr_debug("%s: group=%p inode=%p mask=%x\n", __func__, group, inode,
198 mask);
199
Jan Karaf0834412014-04-03 14:46:33 -0700200 event = fanotify_alloc_event(inode, mask, data);
Jan Kara7053aee2014-01-21 15:48:14 -0800201 if (unlikely(!event))
202 return -ENOMEM;
203
204 fsn_event = &event->fse;
Jan Kara8ba8fa912014-08-06 16:03:26 -0700205 ret = fsnotify_add_event(group, fsn_event, fanotify_merge);
Jan Kara83c0e1b2014-01-28 18:53:22 +0100206 if (ret) {
Jan Kara482ef062014-02-21 19:07:54 +0100207 /* Permission events shouldn't be merged */
208 BUG_ON(ret == 1 && mask & FAN_ALL_PERM_EVENTS);
Jan Kara7053aee2014-01-21 15:48:14 -0800209 /* Our event wasn't used in the end. Free it. */
210 fsnotify_destroy_event(group, fsn_event);
Jan Kara482ef062014-02-21 19:07:54 +0100211
212 return 0;
Jan Kara7053aee2014-01-21 15:48:14 -0800213 }
214
215#ifdef CONFIG_FANOTIFY_ACCESS_PERMISSIONS
Jan Kara85816792014-01-28 21:38:06 +0100216 if (mask & FAN_ALL_PERM_EVENTS) {
Jan Karaf0834412014-04-03 14:46:33 -0700217 ret = fanotify_get_response(group, FANOTIFY_PE(fsn_event));
Jan Kara85816792014-01-28 21:38:06 +0100218 fsnotify_destroy_event(group, fsn_event);
219 }
Jan Kara7053aee2014-01-21 15:48:14 -0800220#endif
221 return ret;
222}
223
Eric Paris4afeff82010-10-28 17:21:58 -0400224static 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
Jan Kara7053aee2014-01-21 15:48:14 -0800233static 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);
Jan Karaf0834412014-04-03 14:46:33 -0700240#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
Jan Kara7053aee2014-01-21 15:48:14 -0800247 kmem_cache_free(fanotify_event_cachep, event);
248}
249
Eric Parisff0b16a2009-12-17 21:24:25 -0500250const struct fsnotify_ops fanotify_fsnotify_ops = {
251 .handle_event = fanotify_handle_event,
Eric Paris4afeff82010-10-28 17:21:58 -0400252 .free_group_priv = fanotify_free_group_priv,
Jan Kara7053aee2014-01-21 15:48:14 -0800253 .free_event = fanotify_free_event,
Eric Parisff0b16a2009-12-17 21:24:25 -0500254};