fanotify: compare fsid when merging name event
When merging name events, fsids of the two involved events have to match. Otherwise we could merge events from two different filesystems and thus effectively loose the second event. Backporting note: Although the commitcacfb956d4
introducing this bug was merged for 5.7, the relevant code didn't get used in the end until7e8283af6e
("fanotify: report parent fid + name + child fid") which will be merged with this patch. So there's no need for backporting this. Fixes:cacfb956d4
("fanotify: record name info for FAN_DIR_MODIFY event") Reported-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
Родитель
b9a1b97725
Коммит
8aed8cebdd
|
@ -82,6 +82,9 @@ static bool fanotify_name_event_equal(struct fanotify_name_event *fne1,
|
|||
if (!info1->dir_fh_totlen)
|
||||
return false;
|
||||
|
||||
if (!fanotify_fsid_equal(&fne1->fsid, &fne2->fsid))
|
||||
return false;
|
||||
|
||||
return fanotify_info_equal(info1, info2);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче