43a606f153702647adcb09a39aada060265d2f36
[linux-2.6-microblaze.git] / fs / notify / fanotify / fanotify.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/fanotify.h>
3 #include <linux/fdtable.h>
4 #include <linux/fsnotify_backend.h>
5 #include <linux/init.h>
6 #include <linux/jiffies.h>
7 #include <linux/kernel.h> /* UINT_MAX */
8 #include <linux/mount.h>
9 #include <linux/sched.h>
10 #include <linux/sched/user.h>
11 #include <linux/sched/signal.h>
12 #include <linux/types.h>
13 #include <linux/wait.h>
14 #include <linux/audit.h>
15 #include <linux/sched/mm.h>
16 #include <linux/statfs.h>
17 #include <linux/stringhash.h>
18
19 #include "fanotify.h"
20
21 static bool fanotify_path_equal(struct path *p1, struct path *p2)
22 {
23         return p1->mnt == p2->mnt && p1->dentry == p2->dentry;
24 }
25
26 static unsigned int fanotify_hash_path(const struct path *path)
27 {
28         return hash_ptr(path->dentry, FANOTIFY_EVENT_HASH_BITS) ^
29                 hash_ptr(path->mnt, FANOTIFY_EVENT_HASH_BITS);
30 }
31
32 static inline bool fanotify_fsid_equal(__kernel_fsid_t *fsid1,
33                                        __kernel_fsid_t *fsid2)
34 {
35         return fsid1->val[0] == fsid2->val[0] && fsid1->val[1] == fsid2->val[1];
36 }
37
38 static unsigned int fanotify_hash_fsid(__kernel_fsid_t *fsid)
39 {
40         return hash_32(fsid->val[0], FANOTIFY_EVENT_HASH_BITS) ^
41                 hash_32(fsid->val[1], FANOTIFY_EVENT_HASH_BITS);
42 }
43
44 static bool fanotify_fh_equal(struct fanotify_fh *fh1,
45                               struct fanotify_fh *fh2)
46 {
47         if (fh1->type != fh2->type || fh1->len != fh2->len)
48                 return false;
49
50         return !fh1->len ||
51                 !memcmp(fanotify_fh_buf(fh1), fanotify_fh_buf(fh2), fh1->len);
52 }
53
54 static unsigned int fanotify_hash_fh(struct fanotify_fh *fh)
55 {
56         long salt = (long)fh->type | (long)fh->len << 8;
57
58         /*
59          * full_name_hash() works long by long, so it handles fh buf optimally.
60          */
61         return full_name_hash((void *)salt, fanotify_fh_buf(fh), fh->len);
62 }
63
64 static bool fanotify_fid_event_equal(struct fanotify_fid_event *ffe1,
65                                      struct fanotify_fid_event *ffe2)
66 {
67         /* Do not merge fid events without object fh */
68         if (!ffe1->object_fh.len)
69                 return false;
70
71         return fanotify_fsid_equal(&ffe1->fsid, &ffe2->fsid) &&
72                 fanotify_fh_equal(&ffe1->object_fh, &ffe2->object_fh);
73 }
74
75 static bool fanotify_info_equal(struct fanotify_info *info1,
76                                 struct fanotify_info *info2)
77 {
78         if (info1->dir_fh_totlen != info2->dir_fh_totlen ||
79             info1->file_fh_totlen != info2->file_fh_totlen ||
80             info1->name_len != info2->name_len)
81                 return false;
82
83         if (info1->dir_fh_totlen &&
84             !fanotify_fh_equal(fanotify_info_dir_fh(info1),
85                                fanotify_info_dir_fh(info2)))
86                 return false;
87
88         if (info1->file_fh_totlen &&
89             !fanotify_fh_equal(fanotify_info_file_fh(info1),
90                                fanotify_info_file_fh(info2)))
91                 return false;
92
93         return !info1->name_len ||
94                 !memcmp(fanotify_info_name(info1), fanotify_info_name(info2),
95                         info1->name_len);
96 }
97
98 static bool fanotify_name_event_equal(struct fanotify_name_event *fne1,
99                                       struct fanotify_name_event *fne2)
100 {
101         struct fanotify_info *info1 = &fne1->info;
102         struct fanotify_info *info2 = &fne2->info;
103
104         /* Do not merge name events without dir fh */
105         if (!info1->dir_fh_totlen)
106                 return false;
107
108         if (!fanotify_fsid_equal(&fne1->fsid, &fne2->fsid))
109                 return false;
110
111         return fanotify_info_equal(info1, info2);
112 }
113
114 static bool fanotify_should_merge(struct fanotify_event *old,
115                                   struct fanotify_event *new)
116 {
117         pr_debug("%s: old=%p new=%p\n", __func__, old, new);
118
119         if (old->hash != new->hash ||
120             old->type != new->type || old->pid != new->pid)
121                 return false;
122
123         /*
124          * We want to merge many dirent events in the same dir (i.e.
125          * creates/unlinks/renames), but we do not want to merge dirent
126          * events referring to subdirs with dirent events referring to
127          * non subdirs, otherwise, user won't be able to tell from a
128          * mask FAN_CREATE|FAN_DELETE|FAN_ONDIR if it describes mkdir+
129          * unlink pair or rmdir+create pair of events.
130          */
131         if ((old->mask & FS_ISDIR) != (new->mask & FS_ISDIR))
132                 return false;
133
134         switch (old->type) {
135         case FANOTIFY_EVENT_TYPE_PATH:
136                 return fanotify_path_equal(fanotify_event_path(old),
137                                            fanotify_event_path(new));
138         case FANOTIFY_EVENT_TYPE_FID:
139                 return fanotify_fid_event_equal(FANOTIFY_FE(old),
140                                                 FANOTIFY_FE(new));
141         case FANOTIFY_EVENT_TYPE_FID_NAME:
142                 return fanotify_name_event_equal(FANOTIFY_NE(old),
143                                                  FANOTIFY_NE(new));
144         default:
145                 WARN_ON_ONCE(1);
146         }
147
148         return false;
149 }
150
151 /* and the list better be locked by something too! */
152 static int fanotify_merge(struct list_head *list, struct fsnotify_event *event)
153 {
154         struct fsnotify_event *test_event;
155         struct fanotify_event *old, *new = FANOTIFY_E(event);
156
157         pr_debug("%s: list=%p event=%p\n", __func__, list, event);
158
159         /*
160          * Don't merge a permission event with any other event so that we know
161          * the event structure we have created in fanotify_handle_event() is the
162          * one we should check for permission response.
163          */
164         if (fanotify_is_perm_event(new->mask))
165                 return 0;
166
167         list_for_each_entry_reverse(test_event, list, list) {
168                 old = FANOTIFY_E(test_event);
169                 if (fanotify_should_merge(old, new)) {
170                         old->mask |= new->mask;
171                         return 1;
172                 }
173         }
174
175         return 0;
176 }
177
178 /*
179  * Wait for response to permission event. The function also takes care of
180  * freeing the permission event (or offloads that in case the wait is canceled
181  * by a signal). The function returns 0 in case access got allowed by userspace,
182  * -EPERM in case userspace disallowed the access, and -ERESTARTSYS in case
183  * the wait got interrupted by a signal.
184  */
185 static int fanotify_get_response(struct fsnotify_group *group,
186                                  struct fanotify_perm_event *event,
187                                  struct fsnotify_iter_info *iter_info)
188 {
189         int ret;
190
191         pr_debug("%s: group=%p event=%p\n", __func__, group, event);
192
193         ret = wait_event_killable(group->fanotify_data.access_waitq,
194                                   event->state == FAN_EVENT_ANSWERED);
195         /* Signal pending? */
196         if (ret < 0) {
197                 spin_lock(&group->notification_lock);
198                 /* Event reported to userspace and no answer yet? */
199                 if (event->state == FAN_EVENT_REPORTED) {
200                         /* Event will get freed once userspace answers to it */
201                         event->state = FAN_EVENT_CANCELED;
202                         spin_unlock(&group->notification_lock);
203                         return ret;
204                 }
205                 /* Event not yet reported? Just remove it. */
206                 if (event->state == FAN_EVENT_INIT)
207                         fsnotify_remove_queued_event(group, &event->fae.fse);
208                 /*
209                  * Event may be also answered in case signal delivery raced
210                  * with wakeup. In that case we have nothing to do besides
211                  * freeing the event and reporting error.
212                  */
213                 spin_unlock(&group->notification_lock);
214                 goto out;
215         }
216
217         /* userspace responded, convert to something usable */
218         switch (event->response & ~FAN_AUDIT) {
219         case FAN_ALLOW:
220                 ret = 0;
221                 break;
222         case FAN_DENY:
223         default:
224                 ret = -EPERM;
225         }
226
227         /* Check if the response should be audited */
228         if (event->response & FAN_AUDIT)
229                 audit_fanotify(event->response & ~FAN_AUDIT);
230
231         pr_debug("%s: group=%p event=%p about to return ret=%d\n", __func__,
232                  group, event, ret);
233 out:
234         fsnotify_destroy_event(group, &event->fae.fse);
235
236         return ret;
237 }
238
239 /*
240  * This function returns a mask for an event that only contains the flags
241  * that have been specifically requested by the user. Flags that may have
242  * been included within the event mask, but have not been explicitly
243  * requested by the user, will not be present in the returned mask.
244  */
245 static u32 fanotify_group_event_mask(struct fsnotify_group *group,
246                                      struct fsnotify_iter_info *iter_info,
247                                      u32 event_mask, const void *data,
248                                      int data_type, struct inode *dir)
249 {
250         __u32 marks_mask = 0, marks_ignored_mask = 0;
251         __u32 test_mask, user_mask = FANOTIFY_OUTGOING_EVENTS |
252                                      FANOTIFY_EVENT_FLAGS;
253         const struct path *path = fsnotify_data_path(data, data_type);
254         unsigned int fid_mode = FAN_GROUP_FLAG(group, FANOTIFY_FID_BITS);
255         struct fsnotify_mark *mark;
256         int type;
257
258         pr_debug("%s: report_mask=%x mask=%x data=%p data_type=%d\n",
259                  __func__, iter_info->report_mask, event_mask, data, data_type);
260
261         if (!fid_mode) {
262                 /* Do we have path to open a file descriptor? */
263                 if (!path)
264                         return 0;
265                 /* Path type events are only relevant for files and dirs */
266                 if (!d_is_reg(path->dentry) && !d_can_lookup(path->dentry))
267                         return 0;
268         } else if (!(fid_mode & FAN_REPORT_FID)) {
269                 /* Do we have a directory inode to report? */
270                 if (!dir && !(event_mask & FS_ISDIR))
271                         return 0;
272         }
273
274         fsnotify_foreach_obj_type(type) {
275                 if (!fsnotify_iter_should_report_type(iter_info, type))
276                         continue;
277                 mark = iter_info->marks[type];
278
279                 /* Apply ignore mask regardless of ISDIR and ON_CHILD flags */
280                 marks_ignored_mask |= mark->ignored_mask;
281
282                 /*
283                  * If the event is on dir and this mark doesn't care about
284                  * events on dir, don't send it!
285                  */
286                 if (event_mask & FS_ISDIR && !(mark->mask & FS_ISDIR))
287                         continue;
288
289                 /*
290                  * If the event is on a child and this mark is on a parent not
291                  * watching children, don't send it!
292                  */
293                 if (type == FSNOTIFY_OBJ_TYPE_PARENT &&
294                     !(mark->mask & FS_EVENT_ON_CHILD))
295                         continue;
296
297                 marks_mask |= mark->mask;
298         }
299
300         test_mask = event_mask & marks_mask & ~marks_ignored_mask;
301
302         /*
303          * For dirent modification events (create/delete/move) that do not carry
304          * the child entry name information, we report FAN_ONDIR for mkdir/rmdir
305          * so user can differentiate them from creat/unlink.
306          *
307          * For backward compatibility and consistency, do not report FAN_ONDIR
308          * to user in legacy fanotify mode (reporting fd) and report FAN_ONDIR
309          * to user in fid mode for all event types.
310          *
311          * We never report FAN_EVENT_ON_CHILD to user, but we do pass it in to
312          * fanotify_alloc_event() when group is reporting fid as indication
313          * that event happened on child.
314          */
315         if (fid_mode) {
316                 /* Do not report event flags without any event */
317                 if (!(test_mask & ~FANOTIFY_EVENT_FLAGS))
318                         return 0;
319         } else {
320                 user_mask &= ~FANOTIFY_EVENT_FLAGS;
321         }
322
323         return test_mask & user_mask;
324 }
325
326 /*
327  * Check size needed to encode fanotify_fh.
328  *
329  * Return size of encoded fh without fanotify_fh header.
330  * Return 0 on failure to encode.
331  */
332 static int fanotify_encode_fh_len(struct inode *inode)
333 {
334         int dwords = 0;
335
336         if (!inode)
337                 return 0;
338
339         exportfs_encode_inode_fh(inode, NULL, &dwords, NULL);
340
341         return dwords << 2;
342 }
343
344 /*
345  * Encode fanotify_fh.
346  *
347  * Return total size of encoded fh including fanotify_fh header.
348  * Return 0 on failure to encode.
349  */
350 static int fanotify_encode_fh(struct fanotify_fh *fh, struct inode *inode,
351                               unsigned int fh_len, unsigned int *hash,
352                               gfp_t gfp)
353 {
354         int dwords, type = 0;
355         char *ext_buf = NULL;
356         void *buf = fh->buf;
357         int err;
358
359         fh->type = FILEID_ROOT;
360         fh->len = 0;
361         fh->flags = 0;
362         if (!inode)
363                 return 0;
364
365         /*
366          * !gpf means preallocated variable size fh, but fh_len could
367          * be zero in that case if encoding fh len failed.
368          */
369         err = -ENOENT;
370         if (fh_len < 4 || WARN_ON_ONCE(fh_len % 4))
371                 goto out_err;
372
373         /* No external buffer in a variable size allocated fh */
374         if (gfp && fh_len > FANOTIFY_INLINE_FH_LEN) {
375                 /* Treat failure to allocate fh as failure to encode fh */
376                 err = -ENOMEM;
377                 ext_buf = kmalloc(fh_len, gfp);
378                 if (!ext_buf)
379                         goto out_err;
380
381                 *fanotify_fh_ext_buf_ptr(fh) = ext_buf;
382                 buf = ext_buf;
383                 fh->flags |= FANOTIFY_FH_FLAG_EXT_BUF;
384         }
385
386         dwords = fh_len >> 2;
387         type = exportfs_encode_inode_fh(inode, buf, &dwords, NULL);
388         err = -EINVAL;
389         if (!type || type == FILEID_INVALID || fh_len != dwords << 2)
390                 goto out_err;
391
392         fh->type = type;
393         fh->len = fh_len;
394
395         /* Mix fh into event merge key */
396         *hash ^= fanotify_hash_fh(fh);
397
398         return FANOTIFY_FH_HDR_LEN + fh_len;
399
400 out_err:
401         pr_warn_ratelimited("fanotify: failed to encode fid (type=%d, len=%d, err=%i)\n",
402                             type, fh_len, err);
403         kfree(ext_buf);
404         *fanotify_fh_ext_buf_ptr(fh) = NULL;
405         /* Report the event without a file identifier on encode error */
406         fh->type = FILEID_INVALID;
407         fh->len = 0;
408         return 0;
409 }
410
411 /*
412  * The inode to use as identifier when reporting fid depends on the event.
413  * Report the modified directory inode on dirent modification events.
414  * Report the "victim" inode otherwise.
415  * For example:
416  * FS_ATTRIB reports the child inode even if reported on a watched parent.
417  * FS_CREATE reports the modified dir inode and not the created inode.
418  */
419 static struct inode *fanotify_fid_inode(u32 event_mask, const void *data,
420                                         int data_type, struct inode *dir)
421 {
422         if (event_mask & ALL_FSNOTIFY_DIRENT_EVENTS)
423                 return dir;
424
425         return fsnotify_data_inode(data, data_type);
426 }
427
428 /*
429  * The inode to use as identifier when reporting dir fid depends on the event.
430  * Report the modified directory inode on dirent modification events.
431  * Report the "victim" inode if "victim" is a directory.
432  * Report the parent inode if "victim" is not a directory and event is
433  * reported to parent.
434  * Otherwise, do not report dir fid.
435  */
436 static struct inode *fanotify_dfid_inode(u32 event_mask, const void *data,
437                                          int data_type, struct inode *dir)
438 {
439         struct inode *inode = fsnotify_data_inode(data, data_type);
440
441         if (event_mask & ALL_FSNOTIFY_DIRENT_EVENTS)
442                 return dir;
443
444         if (S_ISDIR(inode->i_mode))
445                 return inode;
446
447         return dir;
448 }
449
450 static struct fanotify_event *fanotify_alloc_path_event(const struct path *path,
451                                                         unsigned int *hash,
452                                                         gfp_t gfp)
453 {
454         struct fanotify_path_event *pevent;
455
456         pevent = kmem_cache_alloc(fanotify_path_event_cachep, gfp);
457         if (!pevent)
458                 return NULL;
459
460         pevent->fae.type = FANOTIFY_EVENT_TYPE_PATH;
461         pevent->path = *path;
462         *hash ^= fanotify_hash_path(path);
463         path_get(path);
464
465         return &pevent->fae;
466 }
467
468 static struct fanotify_event *fanotify_alloc_perm_event(const struct path *path,
469                                                         gfp_t gfp)
470 {
471         struct fanotify_perm_event *pevent;
472
473         pevent = kmem_cache_alloc(fanotify_perm_event_cachep, gfp);
474         if (!pevent)
475                 return NULL;
476
477         pevent->fae.type = FANOTIFY_EVENT_TYPE_PATH_PERM;
478         pevent->response = 0;
479         pevent->state = FAN_EVENT_INIT;
480         pevent->path = *path;
481         path_get(path);
482
483         return &pevent->fae;
484 }
485
486 static struct fanotify_event *fanotify_alloc_fid_event(struct inode *id,
487                                                        __kernel_fsid_t *fsid,
488                                                        unsigned int *hash,
489                                                        gfp_t gfp)
490 {
491         struct fanotify_fid_event *ffe;
492
493         ffe = kmem_cache_alloc(fanotify_fid_event_cachep, gfp);
494         if (!ffe)
495                 return NULL;
496
497         ffe->fae.type = FANOTIFY_EVENT_TYPE_FID;
498         ffe->fsid = *fsid;
499         *hash ^= fanotify_hash_fsid(fsid);
500         fanotify_encode_fh(&ffe->object_fh, id, fanotify_encode_fh_len(id),
501                            hash, gfp);
502
503         return &ffe->fae;
504 }
505
506 static struct fanotify_event *fanotify_alloc_name_event(struct inode *id,
507                                                         __kernel_fsid_t *fsid,
508                                                         const struct qstr *name,
509                                                         struct inode *child,
510                                                         unsigned int *hash,
511                                                         gfp_t gfp)
512 {
513         struct fanotify_name_event *fne;
514         struct fanotify_info *info;
515         struct fanotify_fh *dfh, *ffh;
516         unsigned int dir_fh_len = fanotify_encode_fh_len(id);
517         unsigned int child_fh_len = fanotify_encode_fh_len(child);
518         unsigned int size;
519
520         size = sizeof(*fne) + FANOTIFY_FH_HDR_LEN + dir_fh_len;
521         if (child_fh_len)
522                 size += FANOTIFY_FH_HDR_LEN + child_fh_len;
523         if (name)
524                 size += name->len + 1;
525         fne = kmalloc(size, gfp);
526         if (!fne)
527                 return NULL;
528
529         fne->fae.type = FANOTIFY_EVENT_TYPE_FID_NAME;
530         fne->fsid = *fsid;
531         *hash ^= fanotify_hash_fsid(fsid);
532         info = &fne->info;
533         fanotify_info_init(info);
534         dfh = fanotify_info_dir_fh(info);
535         info->dir_fh_totlen = fanotify_encode_fh(dfh, id, dir_fh_len, hash, 0);
536         if (child_fh_len) {
537                 ffh = fanotify_info_file_fh(info);
538                 info->file_fh_totlen = fanotify_encode_fh(ffh, child,
539                                                         child_fh_len, hash, 0);
540         }
541         if (name) {
542                 long salt = name->len;
543
544                 fanotify_info_copy_name(info, name);
545                 *hash ^= full_name_hash((void *)salt, name->name, name->len);
546         }
547
548         pr_debug("%s: ino=%lu size=%u dir_fh_len=%u child_fh_len=%u name_len=%u name='%.*s'\n",
549                  __func__, id->i_ino, size, dir_fh_len, child_fh_len,
550                  info->name_len, info->name_len, fanotify_info_name(info));
551
552         return &fne->fae;
553 }
554
555 static struct fanotify_event *fanotify_alloc_event(struct fsnotify_group *group,
556                                                    u32 mask, const void *data,
557                                                    int data_type, struct inode *dir,
558                                                    const struct qstr *file_name,
559                                                    __kernel_fsid_t *fsid)
560 {
561         struct fanotify_event *event = NULL;
562         gfp_t gfp = GFP_KERNEL_ACCOUNT;
563         struct inode *id = fanotify_fid_inode(mask, data, data_type, dir);
564         struct inode *dirid = fanotify_dfid_inode(mask, data, data_type, dir);
565         const struct path *path = fsnotify_data_path(data, data_type);
566         unsigned int fid_mode = FAN_GROUP_FLAG(group, FANOTIFY_FID_BITS);
567         struct mem_cgroup *old_memcg;
568         struct inode *child = NULL;
569         bool name_event = false;
570         unsigned int hash = 0;
571         bool ondir = mask & FAN_ONDIR;
572         struct pid *pid;
573
574         if ((fid_mode & FAN_REPORT_DIR_FID) && dirid) {
575                 /*
576                  * With both flags FAN_REPORT_DIR_FID and FAN_REPORT_FID, we
577                  * report the child fid for events reported on a non-dir child
578                  * in addition to reporting the parent fid and maybe child name.
579                  */
580                 if ((fid_mode & FAN_REPORT_FID) && id != dirid && !ondir)
581                         child = id;
582
583                 id = dirid;
584
585                 /*
586                  * We record file name only in a group with FAN_REPORT_NAME
587                  * and when we have a directory inode to report.
588                  *
589                  * For directory entry modification event, we record the fid of
590                  * the directory and the name of the modified entry.
591                  *
592                  * For event on non-directory that is reported to parent, we
593                  * record the fid of the parent and the name of the child.
594                  *
595                  * Even if not reporting name, we need a variable length
596                  * fanotify_name_event if reporting both parent and child fids.
597                  */
598                 if (!(fid_mode & FAN_REPORT_NAME)) {
599                         name_event = !!child;
600                         file_name = NULL;
601                 } else if ((mask & ALL_FSNOTIFY_DIRENT_EVENTS) || !ondir) {
602                         name_event = true;
603                 }
604         }
605
606         /*
607          * For queues with unlimited length lost events are not expected and
608          * can possibly have security implications. Avoid losing events when
609          * memory is short. For the limited size queues, avoid OOM killer in the
610          * target monitoring memcg as it may have security repercussion.
611          */
612         if (group->max_events == UINT_MAX)
613                 gfp |= __GFP_NOFAIL;
614         else
615                 gfp |= __GFP_RETRY_MAYFAIL;
616
617         /* Whoever is interested in the event, pays for the allocation. */
618         old_memcg = set_active_memcg(group->memcg);
619
620         if (fanotify_is_perm_event(mask)) {
621                 event = fanotify_alloc_perm_event(path, gfp);
622         } else if (name_event && (file_name || child)) {
623                 event = fanotify_alloc_name_event(id, fsid, file_name, child,
624                                                   &hash, gfp);
625         } else if (fid_mode) {
626                 event = fanotify_alloc_fid_event(id, fsid, &hash, gfp);
627         } else {
628                 event = fanotify_alloc_path_event(path, &hash, gfp);
629         }
630
631         if (!event)
632                 goto out;
633
634         if (FAN_GROUP_FLAG(group, FAN_REPORT_TID))
635                 pid = get_pid(task_pid(current));
636         else
637                 pid = get_pid(task_tgid(current));
638
639         /* Mix event info, FAN_ONDIR flag and pid into event merge key */
640         hash ^= hash_long((unsigned long)pid | ondir, FANOTIFY_EVENT_HASH_BITS);
641         fanotify_init_event(event, hash, mask);
642         event->pid = pid;
643
644 out:
645         set_active_memcg(old_memcg);
646         return event;
647 }
648
649 /*
650  * Get cached fsid of the filesystem containing the object from any connector.
651  * All connectors are supposed to have the same fsid, but we do not verify that
652  * here.
653  */
654 static __kernel_fsid_t fanotify_get_fsid(struct fsnotify_iter_info *iter_info)
655 {
656         int type;
657         __kernel_fsid_t fsid = {};
658
659         fsnotify_foreach_obj_type(type) {
660                 struct fsnotify_mark_connector *conn;
661
662                 if (!fsnotify_iter_should_report_type(iter_info, type))
663                         continue;
664
665                 conn = READ_ONCE(iter_info->marks[type]->connector);
666                 /* Mark is just getting destroyed or created? */
667                 if (!conn)
668                         continue;
669                 if (!(conn->flags & FSNOTIFY_CONN_FLAG_HAS_FSID))
670                         continue;
671                 /* Pairs with smp_wmb() in fsnotify_add_mark_list() */
672                 smp_rmb();
673                 fsid = conn->fsid;
674                 if (WARN_ON_ONCE(!fsid.val[0] && !fsid.val[1]))
675                         continue;
676                 return fsid;
677         }
678
679         return fsid;
680 }
681
682 static int fanotify_handle_event(struct fsnotify_group *group, u32 mask,
683                                  const void *data, int data_type,
684                                  struct inode *dir,
685                                  const struct qstr *file_name, u32 cookie,
686                                  struct fsnotify_iter_info *iter_info)
687 {
688         int ret = 0;
689         struct fanotify_event *event;
690         struct fsnotify_event *fsn_event;
691         __kernel_fsid_t fsid = {};
692
693         BUILD_BUG_ON(FAN_ACCESS != FS_ACCESS);
694         BUILD_BUG_ON(FAN_MODIFY != FS_MODIFY);
695         BUILD_BUG_ON(FAN_ATTRIB != FS_ATTRIB);
696         BUILD_BUG_ON(FAN_CLOSE_NOWRITE != FS_CLOSE_NOWRITE);
697         BUILD_BUG_ON(FAN_CLOSE_WRITE != FS_CLOSE_WRITE);
698         BUILD_BUG_ON(FAN_OPEN != FS_OPEN);
699         BUILD_BUG_ON(FAN_MOVED_TO != FS_MOVED_TO);
700         BUILD_BUG_ON(FAN_MOVED_FROM != FS_MOVED_FROM);
701         BUILD_BUG_ON(FAN_CREATE != FS_CREATE);
702         BUILD_BUG_ON(FAN_DELETE != FS_DELETE);
703         BUILD_BUG_ON(FAN_DELETE_SELF != FS_DELETE_SELF);
704         BUILD_BUG_ON(FAN_MOVE_SELF != FS_MOVE_SELF);
705         BUILD_BUG_ON(FAN_EVENT_ON_CHILD != FS_EVENT_ON_CHILD);
706         BUILD_BUG_ON(FAN_Q_OVERFLOW != FS_Q_OVERFLOW);
707         BUILD_BUG_ON(FAN_OPEN_PERM != FS_OPEN_PERM);
708         BUILD_BUG_ON(FAN_ACCESS_PERM != FS_ACCESS_PERM);
709         BUILD_BUG_ON(FAN_ONDIR != FS_ISDIR);
710         BUILD_BUG_ON(FAN_OPEN_EXEC != FS_OPEN_EXEC);
711         BUILD_BUG_ON(FAN_OPEN_EXEC_PERM != FS_OPEN_EXEC_PERM);
712
713         BUILD_BUG_ON(HWEIGHT32(ALL_FANOTIFY_EVENT_BITS) != 19);
714
715         mask = fanotify_group_event_mask(group, iter_info, mask, data,
716                                          data_type, dir);
717         if (!mask)
718                 return 0;
719
720         pr_debug("%s: group=%p mask=%x\n", __func__, group, mask);
721
722         if (fanotify_is_perm_event(mask)) {
723                 /*
724                  * fsnotify_prepare_user_wait() fails if we race with mark
725                  * deletion.  Just let the operation pass in that case.
726                  */
727                 if (!fsnotify_prepare_user_wait(iter_info))
728                         return 0;
729         }
730
731         if (FAN_GROUP_FLAG(group, FANOTIFY_FID_BITS)) {
732                 fsid = fanotify_get_fsid(iter_info);
733                 /* Racing with mark destruction or creation? */
734                 if (!fsid.val[0] && !fsid.val[1])
735                         return 0;
736         }
737
738         event = fanotify_alloc_event(group, mask, data, data_type, dir,
739                                      file_name, &fsid);
740         ret = -ENOMEM;
741         if (unlikely(!event)) {
742                 /*
743                  * We don't queue overflow events for permission events as
744                  * there the access is denied and so no event is in fact lost.
745                  */
746                 if (!fanotify_is_perm_event(mask))
747                         fsnotify_queue_overflow(group);
748                 goto finish;
749         }
750
751         fsn_event = &event->fse;
752         ret = fsnotify_add_event(group, fsn_event, fanotify_merge);
753         if (ret) {
754                 /* Permission events shouldn't be merged */
755                 BUG_ON(ret == 1 && mask & FANOTIFY_PERM_EVENTS);
756                 /* Our event wasn't used in the end. Free it. */
757                 fsnotify_destroy_event(group, fsn_event);
758
759                 ret = 0;
760         } else if (fanotify_is_perm_event(mask)) {
761                 ret = fanotify_get_response(group, FANOTIFY_PERM(event),
762                                             iter_info);
763         }
764 finish:
765         if (fanotify_is_perm_event(mask))
766                 fsnotify_finish_user_wait(iter_info);
767
768         return ret;
769 }
770
771 static void fanotify_free_group_priv(struct fsnotify_group *group)
772 {
773         struct user_struct *user;
774
775         user = group->fanotify_data.user;
776         atomic_dec(&user->fanotify_listeners);
777         free_uid(user);
778 }
779
780 static void fanotify_free_path_event(struct fanotify_event *event)
781 {
782         path_put(fanotify_event_path(event));
783         kmem_cache_free(fanotify_path_event_cachep, FANOTIFY_PE(event));
784 }
785
786 static void fanotify_free_perm_event(struct fanotify_event *event)
787 {
788         path_put(fanotify_event_path(event));
789         kmem_cache_free(fanotify_perm_event_cachep, FANOTIFY_PERM(event));
790 }
791
792 static void fanotify_free_fid_event(struct fanotify_event *event)
793 {
794         struct fanotify_fid_event *ffe = FANOTIFY_FE(event);
795
796         if (fanotify_fh_has_ext_buf(&ffe->object_fh))
797                 kfree(fanotify_fh_ext_buf(&ffe->object_fh));
798         kmem_cache_free(fanotify_fid_event_cachep, ffe);
799 }
800
801 static void fanotify_free_name_event(struct fanotify_event *event)
802 {
803         kfree(FANOTIFY_NE(event));
804 }
805
806 static void fanotify_free_event(struct fsnotify_event *fsn_event)
807 {
808         struct fanotify_event *event;
809
810         event = FANOTIFY_E(fsn_event);
811         put_pid(event->pid);
812         switch (event->type) {
813         case FANOTIFY_EVENT_TYPE_PATH:
814                 fanotify_free_path_event(event);
815                 break;
816         case FANOTIFY_EVENT_TYPE_PATH_PERM:
817                 fanotify_free_perm_event(event);
818                 break;
819         case FANOTIFY_EVENT_TYPE_FID:
820                 fanotify_free_fid_event(event);
821                 break;
822         case FANOTIFY_EVENT_TYPE_FID_NAME:
823                 fanotify_free_name_event(event);
824                 break;
825         case FANOTIFY_EVENT_TYPE_OVERFLOW:
826                 kfree(event);
827                 break;
828         default:
829                 WARN_ON_ONCE(1);
830         }
831 }
832
833 static void fanotify_free_mark(struct fsnotify_mark *fsn_mark)
834 {
835         kmem_cache_free(fanotify_mark_cache, fsn_mark);
836 }
837
838 const struct fsnotify_ops fanotify_fsnotify_ops = {
839         .handle_event = fanotify_handle_event,
840         .free_group_priv = fanotify_free_group_priv,
841         .free_event = fanotify_free_event,
842         .free_mark = fanotify_free_mark,
843 };