blob: 385896c9f8289ec4f5dc38f72f9d26bb7ac1e718 [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
18/* helper events */
19#define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE) /* close */
20
Eric Paris2a3edf82009-12-17 21:24:26 -050021/* flags used for fanotify_init() */
Eric Paris52c923d2009-12-17 21:24:26 -050022#define FAN_CLOEXEC 0x00000001
23#define FAN_NONBLOCK 0x00000002
24
25#define FAN_ALL_INIT_FLAGS (FAN_CLOEXEC | FAN_NONBLOCK)
Eric Paris2a3edf82009-12-17 21:24:26 -050026
27/* flags used for fanotify_modify_mark() */
28#define FAN_MARK_ADD 0x00000001
29#define FAN_MARK_REMOVE 0x00000002
30#define FAN_MARK_DONT_FOLLOW 0x00000004
31#define FAN_MARK_ONLYDIR 0x00000008
Andreas Gruenbachereac8e9e2009-12-17 21:24:29 -050032#define FAN_MARK_MOUNT 0x00000010
Eric Parisb9e4e3b2009-12-17 21:24:33 -050033#define FAN_MARK_IGNORED_MASK 0x00000020
Eric Parisc9778a92009-12-17 21:24:33 -050034#define FAN_MARK_IGNORED_SURV_MODIFY 0x00000040
Eric Paris4d926042009-12-17 21:24:34 -050035#define FAN_MARK_FLUSH 0x00000080
Eric Paris2a3edf82009-12-17 21:24:26 -050036
37#define FAN_ALL_MARK_FLAGS (FAN_MARK_ADD |\
38 FAN_MARK_REMOVE |\
39 FAN_MARK_DONT_FOLLOW |\
Eric Paris0ff21db2009-12-17 21:24:29 -050040 FAN_MARK_ONLYDIR |\
Eric Parisb9e4e3b2009-12-17 21:24:33 -050041 FAN_MARK_MOUNT |\
Eric Parisc9778a92009-12-17 21:24:33 -050042 FAN_MARK_IGNORED_MASK |\
43 FAN_MARK_IGNORED_SURV_MODIFY)
Eric Paris2a3edf82009-12-17 21:24:26 -050044
Eric Parisff0b16a2009-12-17 21:24:25 -050045/*
46 * All of the events - we build the list by hand so that we can add flags in
47 * the future and not break backward compatibility. Apps will get only the
48 * events that they originally wanted. Be sure to add new events here!
49 */
50#define FAN_ALL_EVENTS (FAN_ACCESS |\
51 FAN_MODIFY |\
52 FAN_CLOSE |\
53 FAN_OPEN)
54
Eric Parisa1014f12009-12-17 21:24:26 -050055#define FAN_ALL_OUTGOING_EVENTS (FAN_ALL_EVENTS |\
56 FAN_Q_OVERFLOW)
57
58#define FANOTIFY_METADATA_VERSION 1
59
60struct fanotify_event_metadata {
61 __u32 event_len;
62 __u32 vers;
63 __s32 fd;
64 __u64 mask;
Andreas Gruenbacher32c32632009-12-17 21:24:27 -050065 __s64 pid;
Eric Parisa1014f12009-12-17 21:24:26 -050066} __attribute__ ((packed));
67
68/* Helper functions to deal with fanotify_event_metadata buffers */
69#define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
70
71#define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
72 (struct fanotify_event_metadata*)(((char *)(meta)) + \
73 (meta)->event_len))
74
75#define FAN_EVENT_OK(meta, len) ((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
76 (long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
77 (long)(meta)->event_len <= (long)(len))
78
Eric Parisff0b16a2009-12-17 21:24:25 -050079#ifdef __KERNEL__
80
81#endif /* __KERNEL__ */
82#endif /* _LINUX_FANOTIFY_H */