1 .\" Copyright (C) 2013, Heinrich Schuchardt <xypron.glpk@gmx.de>
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of
9 .\" this manual under the conditions for verbatim copying, provided that
10 .\" the entire resulting derived work is distributed under the terms of
11 .\" a permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume.
15 .\" no responsibility for errors or omissions, or for damages resulting.
16 .\" from the use of the information contained herein. The author(s) may.
17 .\" not have taken the same level of care in the production of this.
18 .\" manual, which is licensed free of charge, as they might when working.
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
24 .TH FANOTIFY_MARK 2 2019-03-06 "Linux" "Linux Programmer's Manual"
26 fanotify_mark \- add, remove, or modify an fanotify mark on a filesystem
30 .B #include <sys/fanotify.h>
32 .BI "int fanotify_mark(int " fanotify_fd ", unsigned int " flags ,
33 .BI " uint64_t " mask ", int " dirfd \
34 ", const char *" pathname );
37 For an overview of the fanotify API, see
41 adds, removes, or modifies an fanotify mark on a filesystem object.
42 The caller must have read permission on the filesystem object that
47 argument is a file descriptor returned by
48 .BR fanotify_init (2).
51 is a bit mask describing the modification to perform.
52 It must include exactly one of the following values:
57 will be added to the mark mask (or to the ignore mask).
59 must be nonempty or the error
64 The events in argument
66 will be removed from the mark mask (or from the ignore mask).
68 must be nonempty or the error
73 Remove either all marks for filesystems, all marks for mounts, or all
74 marks for directories and files from the fanotify group.
79 all marks for mounts are removed from the group.
83 .BR FAN_MARK_FILESYSTEM ,
84 all marks for filesystems are removed from the group.
85 Otherwise, all marks for directories and files are removed.
86 No flag other than and at most one of the flags
89 .B FAN_MARK_FILESYSTEM
90 can be used in conjunction with
95 If none of the values above is specified, or more than one is specified,
96 the call fails with the error
100 zero or more of the following values may be ORed into
103 .B FAN_MARK_DONT_FOLLOW
106 is a symbolic link, mark the link itself, rather than the file to which it
112 if it is a symbolic link.)
115 If the filesystem object to be marked is not a directory, the error
120 Mark the mount point specified by
124 is not itself a mount point, the mount point containing
127 All directories, subdirectories, and the contained files of the mount point
130 .BR FAN_MARK_FILESYSTEM " (since Linux 4.20)"
131 .\" commit d54f4fba889b205e9cd8239182ca5d27d0ac3bc2
132 Mark the filesystem specified by
134 The filesystem containing
137 All the contained files and directories of the filesystem from any mount
138 point will be monitored.
140 .B FAN_MARK_IGNORED_MASK
143 shall be added to or removed from the ignore mask.
145 .B FAN_MARK_IGNORED_SURV_MODIFY
146 The ignore mask shall survive modify events.
147 If this flag is not set,
148 the ignore mask is cleared when a modify event occurs
149 for the ignored file or directory.
152 defines which events shall be listened for (or which shall be ignored).
153 It is a bit mask composed of the following values:
156 Create an event when a file or directory (but see BUGS) is accessed (read).
159 Create an event when a file is modified (write).
162 Create an event when a writable file is closed.
165 Create an event when a read-only file or directory is closed.
168 Create an event when a file or directory is opened.
170 .B FAN_OPEN_EXEC " (since Linux 5.0)"
171 Create an event when a file is opened with the intent to be executed.
172 See NOTES for additional details.
175 Create an event when an overflow of the event queue occurs.
176 The size of the event queue is limited to 16384 entries if
177 .B FAN_UNLIMITED_QUEUE
179 .BR fanotify_init (2).
182 Create an event when a permission to open a file or directory is requested.
183 An fanotify file descriptor created with
184 .B FAN_CLASS_PRE_CONTENT
189 .BR FAN_OPEN_EXEC_PERM " (since Linux 5.0)"
190 Create an event when a permission to open a file for execution is
192 An fanotify file descriptor created with
193 .B FAN_CLASS_PRE_CONTENT
197 See NOTES for additional details.
200 Create an event when a permission to read a file or directory is requested.
201 An fanotify file descriptor created with
202 .B FAN_CLASS_PRE_CONTENT
208 Create events for directories\(emfor example, when
214 Without this flag, only events for files are created.
216 .B FAN_EVENT_ON_CHILD
217 Events for the immediate children of marked directories shall be created.
218 The flag has no effect when marking mounts and filesystems.
219 Note that events are not generated for children of the subdirectories
220 of marked directories.
221 To monitor complete directory trees it is necessary to mark the relevant
224 The following composed value is defined:
228 .RB ( FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE ).
230 The filesystem object to be marked is determined by the file descriptor
232 and the pathname specified in
239 defines the filesystem object to be marked.
245 takes the special value
247 the current working directory is to be marked.
251 is absolute, it defines the filesystem object to be marked, and
259 does not have the value
261 then the filesystem object to be marked is determined by interpreting
263 relative the directory referred to by
272 then the filesystem object to be marked is determined by interpreting
274 relative the current working directory.
279 On error, \-1 is returned, and
281 is set to indicate the error.
285 An invalid file descriptor was passed in
289 An invalid value was passed in
295 was not an fanotify file descriptor.
298 The fanotify file descriptor was opened with
300 and mask contains a flag for permission events
303 .BR FAN_ACCESS_PERM ).
306 The filesystem object indicated by
311 This error also occurs when trying to remove a mark from an object
315 The necessary memory could not be allocated.
318 The number of marks exceeds the limit of 8192 and the
319 .B FAN_UNLIMITED_MARKS
320 flag was not specified when the fanotify file descriptor was created with
321 .BR fanotify_init (2).
324 This kernel does not implement
325 .BR fanotify_mark ().
326 The fanotify API is available only if the kernel was configured with
327 .BR CONFIG_FANOTIFY .
332 .BR FAN_MARK_ONLYDIR ,
337 do not specify a directory.
340 was introduced in version 2.6.36 of the Linux kernel and enabled in version
343 This system call is Linux-specific.
345 .SS FAN_OPEN_EXEC and FAN_OPEN_EXEC_PERM
349 .B FAN_OPEN_EXEC_PERM
352 events of these types will be returned only when the direct execution of a
354 More specifically, this means that events of these types will be generated
355 for files that are opened using
360 Events of these types will not be raised in the situation where an
361 interpreter is passed (or reads) a script file for interpretation.
363 Additionally, if a mark has also been placed on the Linux dynamic
364 linker, a user should also expect to receive an event for it when
365 an ELF object has been successfully opened using
370 For example, if the following ELF binary were to be invoked and a
372 mark has been placed on /:
380 The listening application in this case would receive
382 events for both the ELF binary and interpreter, respectively:
387 /lib64/ld-linux-x86-64.so.2
391 The following bugs were present in Linux kernels before version 3.16:
393 .\" Fixed by commit 0a8dd2db579f7a0ac7033d6b857c3d5dbaa77563
401 must specify a valid filesystem object, even though this object is not used.
403 .\" Fixed by commit d4c7cf6cffb1bc711a833b5e304ba5bcfe76398b
409 .\" Fixed by commit cc299a98eb13a9853675a9cbb90b30b4011e1406
415 is not checked for invalid values.
417 .BR fanotify_init (2),