blob: a97c96d28c07b64d4717bc65a341f4ed4a59fe91 [file] [log] [blame]
Eric Parisff0b16a2009-12-17 21:24:25 -05001#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 */
9#define FAN_CLOSE_WRITE 0x00000008 /* Unwrittable file closed */
10#define FAN_CLOSE_NOWRITE 0x00000010 /* Writtable file closed */
11#define FAN_OPEN 0x00000020 /* File was opened */
12
13#define FAN_EVENT_ON_CHILD 0x08000000 /* interested in child events */
14
15/* FIXME currently Q's have no limit.... */
16#define FAN_Q_OVERFLOW 0x00004000 /* Event queued overflowed */
17
Eric Paris9e66e422009-12-17 21:24:34 -050018#define FAN_OPEN_PERM 0x00010000 /* File open in perm check */
19#define FAN_ACCESS_PERM 0x00020000 /* File accessed in perm check */
20
Eric Parisff0b16a2009-12-17 21:24:25 -050021/* helper events */
22#define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */
23
Eric Paris2a3edf82009-12-17 21:24:26 -050024/* flags used for fanotify_init() */
Eric Paris52c923d2009-12-17 21:24:26 -050025#define FAN_CLOEXEC 0x00000001
26#define FAN_NONBLOCK 0x00000002
27
Eric Paris4231a232010-10-28 17:21:56 -040028/* These are NOT bitwise flags. Both bits are used togther. */
29#define FAN_CLASS_NOTIF 0x00000000
30#define FAN_CLASS_CONTENT 0x00000004
31#define FAN_CLASS_PRE_CONTENT 0x00000008
32
33#define FAN_ALL_CLASS_BITS (FAN_CLASS_NOTIF | FAN_CLASS_CONTENT | \
34 FAN_CLASS_PRE_CONTENT)
35
36#define FAN_ALL_INIT_FLAGS (FAN_CLOEXEC | FAN_NONBLOCK | \
37 FAN_ALL_CLASS_BITS)
Eric Paris2a3edf82009-12-17 21:24:26 -050038
39/* flags used for fanotify_modify_mark() */
40#define FAN_MARK_ADD 0x00000001
41#define FAN_MARK_REMOVE 0x00000002
42#define FAN_MARK_DONT_FOLLOW 0x00000004
43#define FAN_MARK_ONLYDIR 0x00000008
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -050044#define FAN_MARK_MOUNT 0x00000010
Eric Parisb9e4e3b2009-12-17 21:24:33 -050045#define FAN_MARK_IGNORED_MASK 0x00000020
Eric Parisc9778a92009-12-17 21:24:33 -050046#define FAN_MARK_IGNORED_SURV_MODIFY 0x00000040
Eric Paris4d926042009-12-17 21:24:34 -050047#define FAN_MARK_FLUSH 0x00000080
Eric Paris2a3edf82009-12-17 21:24:26 -050048
49#define FAN_ALL_MARK_FLAGS (FAN_MARK_ADD |\
50 FAN_MARK_REMOVE |\
51 FAN_MARK_DONT_FOLLOW |\
Eric Paris0ff21db2009-12-17 21:24:29 -050052 FAN_MARK_ONLYDIR |\
Eric Parisb9e4e3b2009-12-17 21:24:33 -050053 FAN_MARK_MOUNT |\
Eric Parisc9778a92009-12-17 21:24:33 -050054 FAN_MARK_IGNORED_MASK |\
Eric Parisbbf2aba2010-10-28 17:21:57 -040055 FAN_MARK_IGNORED_SURV_MODIFY |\
56 FAN_MARK_FLUSH)
Eric Paris2a3edf82009-12-17 21:24:26 -050057
Eric Parisff0b16a2009-12-17 21:24:25 -050058/*
59 * All of the events - we build the list by hand so that we can add flags in
60 * the future and not break backward compatibility. Apps will get only the
61 * events that they originally wanted. Be sure to add new events here!
62 */
63#define FAN_ALL_EVENTS (FAN_ACCESS |\
64 FAN_MODIFY |\
65 FAN_CLOSE |\
66 FAN_OPEN)
67
Eric Paris9e66e422009-12-17 21:24:34 -050068/*
69 * All events which require a permission response from userspace
70 */
71#define FAN_ALL_PERM_EVENTS (FAN_OPEN_PERM |\
72 FAN_ACCESS_PERM)
73
Eric Parisa1014f12009-12-17 21:24:26 -050074#define FAN_ALL_OUTGOING_EVENTS (FAN_ALL_EVENTS |\
Eric Paris9e66e422009-12-17 21:24:34 -050075 FAN_ALL_PERM_EVENTS |\
Eric Parisa1014f12009-12-17 21:24:26 -050076 FAN_Q_OVERFLOW)
77
Tvrtko Ursulin0fb85622010-08-20 10:02:15 +010078#define FANOTIFY_METADATA_VERSION 2
Eric Parisa1014f12009-12-17 21:24:26 -050079
80struct fanotify_event_metadata {
81 __u32 event_len;
82 __u32 vers;
Eric Paris28682012010-10-28 17:21:56 -040083 __aligned_u64 mask;
Tvrtko Ursulin0fb85622010-08-20 10:02:15 +010084 __s32 fd;
85 __s32 pid;
Eric Paris28682012010-10-28 17:21:56 -040086};
Eric Parisa1014f12009-12-17 21:24:26 -050087
Eric Parisb2d87902009-12-17 21:24:34 -050088struct fanotify_response {
89 __s32 fd;
90 __u32 response;
91} __attribute__ ((packed));
92
Eric Paris9e66e422009-12-17 21:24:34 -050093/* Legit userspace responses to a _PERM event */
94#define FAN_ALLOW 0x01
95#define FAN_DENY 0x02
96
Eric Parisa1014f12009-12-17 21:24:26 -050097/* Helper functions to deal with fanotify_event_metadata buffers */
98#define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
99
100#define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
101 (struct fanotify_event_metadata*)(((char *)(meta)) + \
102 (meta)->event_len))
103
104#define FAN_EVENT_OK(meta, len) ((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
105 (long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
106 (long)(meta)->event_len <= (long)(len))
107
Eric Parisff0b16a2009-12-17 21:24:25 -0500108#endif /* _LINUX_FANOTIFY_H */