| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 1 | #ifndef _LINUX_FANOTIFY_H | 
 | 2 | #define _LINUX_FANOTIFY_H | 
 | 3 |  | 
 | 4 | #include <linux/types.h> | 
 | 5 |  | 
 | 6 | /* the following events that user-space can register for */ | 
 | 7 | #define FAN_ACCESS		0x00000001	/* File was accessed */ | 
 | 8 | #define FAN_MODIFY		0x00000002	/* File was modified */ | 
| Stefan Hajnoczi | 50e4a98 | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 9 | #define FAN_CLOSE_WRITE		0x00000008	/* Writtable file closed */ | 
 | 10 | #define FAN_CLOSE_NOWRITE	0x00000010	/* Unwrittable file closed */ | 
| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 11 | #define FAN_OPEN		0x00000020	/* File was opened */ | 
 | 12 |  | 
| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 13 | #define FAN_Q_OVERFLOW		0x00004000	/* Event queued overflowed */ | 
 | 14 |  | 
| Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 15 | #define FAN_OPEN_PERM		0x00010000	/* File open in perm check */ | 
 | 16 | #define FAN_ACCESS_PERM		0x00020000	/* File accessed in perm check */ | 
 | 17 |  | 
| Eric Paris | 8fcd652 | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 18 | #define FAN_ONDIR		0x40000000	/* event occurred against dir */ | 
 | 19 |  | 
 | 20 | #define FAN_EVENT_ON_CHILD	0x08000000	/* interested in child events */ | 
 | 21 |  | 
| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 22 | /* helper events */ | 
 | 23 | #define FAN_CLOSE		(FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */ | 
 | 24 |  | 
| Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 25 | /* flags used for fanotify_init() */ | 
| Eric Paris | 52c923d | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 26 | #define FAN_CLOEXEC		0x00000001 | 
 | 27 | #define FAN_NONBLOCK		0x00000002 | 
 | 28 |  | 
| Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 29 | /* These are NOT bitwise flags.  Both bits are used togther.  */ | 
 | 30 | #define FAN_CLASS_NOTIF		0x00000000 | 
 | 31 | #define FAN_CLASS_CONTENT	0x00000004 | 
 | 32 | #define FAN_CLASS_PRE_CONTENT	0x00000008 | 
| Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 33 | #define FAN_ALL_CLASS_BITS	(FAN_CLASS_NOTIF | FAN_CLASS_CONTENT | \ | 
 | 34 | 				 FAN_CLASS_PRE_CONTENT) | 
 | 35 |  | 
| Eric Paris | 5dd03f5 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 36 | #define FAN_UNLIMITED_QUEUE	0x00000010 | 
| Eric Paris | ac7e22d | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 37 | #define FAN_UNLIMITED_MARKS	0x00000020 | 
| Eric Paris | 5dd03f5 | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 38 |  | 
| Eric Paris | 4231a23 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 39 | #define FAN_ALL_INIT_FLAGS	(FAN_CLOEXEC | FAN_NONBLOCK | \ | 
| Eric Paris | ac7e22d | 2010-10-28 17:21:58 -0400 | [diff] [blame] | 40 | 				 FAN_ALL_CLASS_BITS | FAN_UNLIMITED_QUEUE |\ | 
 | 41 | 				 FAN_UNLIMITED_MARKS) | 
| Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 42 |  | 
 | 43 | /* flags used for fanotify_modify_mark() */ | 
 | 44 | #define FAN_MARK_ADD		0x00000001 | 
 | 45 | #define FAN_MARK_REMOVE		0x00000002 | 
 | 46 | #define FAN_MARK_DONT_FOLLOW	0x00000004 | 
 | 47 | #define FAN_MARK_ONLYDIR	0x00000008 | 
| Andreas Gruenbacher | eac8e9e | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 48 | #define FAN_MARK_MOUNT		0x00000010 | 
| Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 49 | #define FAN_MARK_IGNORED_MASK	0x00000020 | 
| Eric Paris | c9778a9 | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 50 | #define FAN_MARK_IGNORED_SURV_MODIFY	0x00000040 | 
| Eric Paris | 4d92604 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 51 | #define FAN_MARK_FLUSH		0x00000080 | 
| Eric Paris | 8fcd652 | 2010-10-28 17:21:59 -0400 | [diff] [blame] | 52 | #ifdef __KERNEL__ | 
 | 53 | /* not valid from userspace, only kernel internal */ | 
 | 54 | #define FAN_MARK_ONDIR		0x00000100 | 
 | 55 | #endif | 
| Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 56 |  | 
 | 57 | #define FAN_ALL_MARK_FLAGS	(FAN_MARK_ADD |\ | 
 | 58 | 				 FAN_MARK_REMOVE |\ | 
 | 59 | 				 FAN_MARK_DONT_FOLLOW |\ | 
| Eric Paris | 0ff21db | 2009-12-17 21:24:29 -0500 | [diff] [blame] | 60 | 				 FAN_MARK_ONLYDIR |\ | 
| Eric Paris | b9e4e3b | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 61 | 				 FAN_MARK_MOUNT |\ | 
| Eric Paris | c9778a9 | 2009-12-17 21:24:33 -0500 | [diff] [blame] | 62 | 				 FAN_MARK_IGNORED_MASK |\ | 
| Eric Paris | bbf2aba | 2010-10-28 17:21:57 -0400 | [diff] [blame] | 63 | 				 FAN_MARK_IGNORED_SURV_MODIFY |\ | 
 | 64 | 				 FAN_MARK_FLUSH) | 
| Eric Paris | 2a3edf8 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 65 |  | 
| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 66 | /* | 
 | 67 |  * All of the events - we build the list by hand so that we can add flags in | 
 | 68 |  * the future and not break backward compatibility.  Apps will get only the | 
 | 69 |  * events that they originally wanted.  Be sure to add new events here! | 
 | 70 |  */ | 
 | 71 | #define FAN_ALL_EVENTS (FAN_ACCESS |\ | 
 | 72 | 			FAN_MODIFY |\ | 
 | 73 | 			FAN_CLOSE |\ | 
 | 74 | 			FAN_OPEN) | 
 | 75 |  | 
| Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 76 | /* | 
 | 77 |  * All events which require a permission response from userspace | 
 | 78 |  */ | 
 | 79 | #define FAN_ALL_PERM_EVENTS (FAN_OPEN_PERM |\ | 
 | 80 | 			     FAN_ACCESS_PERM) | 
 | 81 |  | 
| Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 82 | #define FAN_ALL_OUTGOING_EVENTS	(FAN_ALL_EVENTS |\ | 
| Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 83 | 				 FAN_ALL_PERM_EVENTS |\ | 
| Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 84 | 				 FAN_Q_OVERFLOW) | 
 | 85 |  | 
| Tvrtko Ursulin | 0fb8562 | 2010-08-20 10:02:15 +0100 | [diff] [blame] | 86 | #define FANOTIFY_METADATA_VERSION	2 | 
| Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 87 |  | 
 | 88 | struct fanotify_event_metadata { | 
 | 89 | 	__u32 event_len; | 
 | 90 | 	__u32 vers; | 
| Eric Paris | 2868201 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 91 | 	__aligned_u64 mask; | 
| Tvrtko Ursulin | 0fb8562 | 2010-08-20 10:02:15 +0100 | [diff] [blame] | 92 | 	__s32 fd; | 
 | 93 | 	__s32 pid; | 
| Eric Paris | 2868201 | 2010-10-28 17:21:56 -0400 | [diff] [blame] | 94 | }; | 
| Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 95 |  | 
| Eric Paris | b2d8790 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 96 | struct fanotify_response { | 
 | 97 | 	__s32 fd; | 
 | 98 | 	__u32 response; | 
 | 99 | } __attribute__ ((packed)); | 
 | 100 |  | 
| Eric Paris | 9e66e42 | 2009-12-17 21:24:34 -0500 | [diff] [blame] | 101 | /* Legit userspace responses to a _PERM event */ | 
 | 102 | #define FAN_ALLOW	0x01 | 
 | 103 | #define FAN_DENY	0x02 | 
 | 104 |  | 
| Eric Paris | a1014f1 | 2009-12-17 21:24:26 -0500 | [diff] [blame] | 105 | /* Helper functions to deal with fanotify_event_metadata buffers */ | 
 | 106 | #define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata)) | 
 | 107 |  | 
 | 108 | #define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \ | 
 | 109 | 				   (struct fanotify_event_metadata*)(((char *)(meta)) + \ | 
 | 110 | 				   (meta)->event_len)) | 
 | 111 |  | 
 | 112 | #define FAN_EVENT_OK(meta, len)	((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \ | 
 | 113 | 				(long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \ | 
 | 114 | 				(long)(meta)->event_len <= (long)(len)) | 
 | 115 |  | 
| Eric Paris | ff0b16a | 2009-12-17 21:24:25 -0500 | [diff] [blame] | 116 | #endif /* _LINUX_FANOTIFY_H */ |