xref: /linux/include/uapi/linux/fanotify.h (revision 0be3ff0c)
1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _UAPI_LINUX_FANOTIFY_H
3 #define _UAPI_LINUX_FANOTIFY_H
4 
5 #include <linux/types.h>
6 
7 /* the following events that user-space can register for */
8 #define FAN_ACCESS		0x00000001	/* File was accessed */
9 #define FAN_MODIFY		0x00000002	/* File was modified */
10 #define FAN_ATTRIB		0x00000004	/* Metadata changed */
11 #define FAN_CLOSE_WRITE		0x00000008	/* Writtable file closed */
12 #define FAN_CLOSE_NOWRITE	0x00000010	/* Unwrittable file closed */
13 #define FAN_OPEN		0x00000020	/* File was opened */
14 #define FAN_MOVED_FROM		0x00000040	/* File was moved from X */
15 #define FAN_MOVED_TO		0x00000080	/* File was moved to Y */
16 #define FAN_CREATE		0x00000100	/* Subfile was created */
17 #define FAN_DELETE		0x00000200	/* Subfile was deleted */
18 #define FAN_DELETE_SELF		0x00000400	/* Self was deleted */
19 #define FAN_MOVE_SELF		0x00000800	/* Self was moved */
20 #define FAN_OPEN_EXEC		0x00001000	/* File was opened for exec */
21 
22 #define FAN_Q_OVERFLOW		0x00004000	/* Event queued overflowed */
23 #define FAN_FS_ERROR		0x00008000	/* Filesystem error */
24 
25 #define FAN_OPEN_PERM		0x00010000	/* File open in perm check */
26 #define FAN_ACCESS_PERM		0x00020000	/* File accessed in perm check */
27 #define FAN_OPEN_EXEC_PERM	0x00040000	/* File open/exec in perm check */
28 
29 #define FAN_EVENT_ON_CHILD	0x08000000	/* Interested in child events */
30 
31 #define FAN_RENAME		0x10000000	/* File was renamed */
32 
33 #define FAN_ONDIR		0x40000000	/* Event occurred against dir */
34 
35 /* helper events */
36 #define FAN_CLOSE		(FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */
37 #define FAN_MOVE		(FAN_MOVED_FROM | FAN_MOVED_TO) /* moves */
38 
39 /* flags used for fanotify_init() */
40 #define FAN_CLOEXEC		0x00000001
41 #define FAN_NONBLOCK		0x00000002
42 
43 /* These are NOT bitwise flags.  Both bits are used together.  */
44 #define FAN_CLASS_NOTIF		0x00000000
45 #define FAN_CLASS_CONTENT	0x00000004
46 #define FAN_CLASS_PRE_CONTENT	0x00000008
47 
48 /* Deprecated - do not use this in programs and do not add new flags here! */
49 #define FAN_ALL_CLASS_BITS	(FAN_CLASS_NOTIF | FAN_CLASS_CONTENT | \
50 				 FAN_CLASS_PRE_CONTENT)
51 
52 #define FAN_UNLIMITED_QUEUE	0x00000010
53 #define FAN_UNLIMITED_MARKS	0x00000020
54 #define FAN_ENABLE_AUDIT	0x00000040
55 
56 /* Flags to determine fanotify event format */
57 #define FAN_REPORT_PIDFD	0x00000080	/* Report pidfd for event->pid */
58 #define FAN_REPORT_TID		0x00000100	/* event->pid is thread id */
59 #define FAN_REPORT_FID		0x00000200	/* Report unique file id */
60 #define FAN_REPORT_DIR_FID	0x00000400	/* Report unique directory id */
61 #define FAN_REPORT_NAME		0x00000800	/* Report events with name */
62 #define FAN_REPORT_TARGET_FID	0x00001000	/* Report dirent target id  */
63 
64 /* Convenience macro - FAN_REPORT_NAME requires FAN_REPORT_DIR_FID */
65 #define FAN_REPORT_DFID_NAME	(FAN_REPORT_DIR_FID | FAN_REPORT_NAME)
66 /* Convenience macro - FAN_REPORT_TARGET_FID requires all other FID flags */
67 #define FAN_REPORT_DFID_NAME_TARGET (FAN_REPORT_DFID_NAME | \
68 				     FAN_REPORT_FID | FAN_REPORT_TARGET_FID)
69 
70 /* Deprecated - do not use this in programs and do not add new flags here! */
71 #define FAN_ALL_INIT_FLAGS	(FAN_CLOEXEC | FAN_NONBLOCK | \
72 				 FAN_ALL_CLASS_BITS | FAN_UNLIMITED_QUEUE |\
73 				 FAN_UNLIMITED_MARKS)
74 
75 /* flags used for fanotify_modify_mark() */
76 #define FAN_MARK_ADD		0x00000001
77 #define FAN_MARK_REMOVE		0x00000002
78 #define FAN_MARK_DONT_FOLLOW	0x00000004
79 #define FAN_MARK_ONLYDIR	0x00000008
80 /* FAN_MARK_MOUNT is		0x00000010 */
81 #define FAN_MARK_IGNORED_MASK	0x00000020
82 #define FAN_MARK_IGNORED_SURV_MODIFY	0x00000040
83 #define FAN_MARK_FLUSH		0x00000080
84 /* FAN_MARK_FILESYSTEM is	0x00000100 */
85 
86 /* These are NOT bitwise flags.  Both bits can be used togther.  */
87 #define FAN_MARK_INODE		0x00000000
88 #define FAN_MARK_MOUNT		0x00000010
89 #define FAN_MARK_FILESYSTEM	0x00000100
90 
91 /* Deprecated - do not use this in programs and do not add new flags here! */
92 #define FAN_ALL_MARK_FLAGS	(FAN_MARK_ADD |\
93 				 FAN_MARK_REMOVE |\
94 				 FAN_MARK_DONT_FOLLOW |\
95 				 FAN_MARK_ONLYDIR |\
96 				 FAN_MARK_MOUNT |\
97 				 FAN_MARK_IGNORED_MASK |\
98 				 FAN_MARK_IGNORED_SURV_MODIFY |\
99 				 FAN_MARK_FLUSH)
100 
101 /* Deprecated - do not use this in programs and do not add new flags here! */
102 #define FAN_ALL_EVENTS (FAN_ACCESS |\
103 			FAN_MODIFY |\
104 			FAN_CLOSE |\
105 			FAN_OPEN)
106 
107 /*
108  * All events which require a permission response from userspace
109  */
110 /* Deprecated - do not use this in programs and do not add new flags here! */
111 #define FAN_ALL_PERM_EVENTS (FAN_OPEN_PERM |\
112 			     FAN_ACCESS_PERM)
113 
114 /* Deprecated - do not use this in programs and do not add new flags here! */
115 #define FAN_ALL_OUTGOING_EVENTS	(FAN_ALL_EVENTS |\
116 				 FAN_ALL_PERM_EVENTS |\
117 				 FAN_Q_OVERFLOW)
118 
119 #define FANOTIFY_METADATA_VERSION	3
120 
121 struct fanotify_event_metadata {
122 	__u32 event_len;
123 	__u8 vers;
124 	__u8 reserved;
125 	__u16 metadata_len;
126 	__aligned_u64 mask;
127 	__s32 fd;
128 	__s32 pid;
129 };
130 
131 #define FAN_EVENT_INFO_TYPE_FID		1
132 #define FAN_EVENT_INFO_TYPE_DFID_NAME	2
133 #define FAN_EVENT_INFO_TYPE_DFID	3
134 #define FAN_EVENT_INFO_TYPE_PIDFD	4
135 #define FAN_EVENT_INFO_TYPE_ERROR	5
136 
137 /* Special info types for FAN_RENAME */
138 #define FAN_EVENT_INFO_TYPE_OLD_DFID_NAME	10
139 /* Reserved for FAN_EVENT_INFO_TYPE_OLD_DFID	11 */
140 #define FAN_EVENT_INFO_TYPE_NEW_DFID_NAME	12
141 /* Reserved for FAN_EVENT_INFO_TYPE_NEW_DFID	13 */
142 
143 /* Variable length info record following event metadata */
144 struct fanotify_event_info_header {
145 	__u8 info_type;
146 	__u8 pad;
147 	__u16 len;
148 };
149 
150 /*
151  * Unique file identifier info record.
152  * This structure is used for records of types FAN_EVENT_INFO_TYPE_FID,
153  * FAN_EVENT_INFO_TYPE_DFID and FAN_EVENT_INFO_TYPE_DFID_NAME.
154  * For FAN_EVENT_INFO_TYPE_DFID_NAME there is additionally a null terminated
155  * name immediately after the file handle.
156  */
157 struct fanotify_event_info_fid {
158 	struct fanotify_event_info_header hdr;
159 	__kernel_fsid_t fsid;
160 	/*
161 	 * Following is an opaque struct file_handle that can be passed as
162 	 * an argument to open_by_handle_at(2).
163 	 */
164 	unsigned char handle[0];
165 };
166 
167 /*
168  * This structure is used for info records of type FAN_EVENT_INFO_TYPE_PIDFD.
169  * It holds a pidfd for the pid that was responsible for generating an event.
170  */
171 struct fanotify_event_info_pidfd {
172 	struct fanotify_event_info_header hdr;
173 	__s32 pidfd;
174 };
175 
176 struct fanotify_event_info_error {
177 	struct fanotify_event_info_header hdr;
178 	__s32 error;
179 	__u32 error_count;
180 };
181 
182 struct fanotify_response {
183 	__s32 fd;
184 	__u32 response;
185 };
186 
187 /* Legit userspace responses to a _PERM event */
188 #define FAN_ALLOW	0x01
189 #define FAN_DENY	0x02
190 #define FAN_AUDIT	0x10	/* Bit mask to create audit record for result */
191 
192 /* No fd set in event */
193 #define FAN_NOFD	-1
194 #define FAN_NOPIDFD	FAN_NOFD
195 #define FAN_EPIDFD	-2
196 
197 /* Helper functions to deal with fanotify_event_metadata buffers */
198 #define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
199 
200 #define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
201 				   (struct fanotify_event_metadata*)(((char *)(meta)) + \
202 				   (meta)->event_len))
203 
204 #define FAN_EVENT_OK(meta, len)	((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
205 				(long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
206 				(long)(meta)->event_len <= (long)(len))
207 
208 #endif /* _UAPI_LINUX_FANOTIFY_H */
209