]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/fanotify.h
fanotify: allow ignored_masks to survive modify
[net-next-2.6.git] / include / linux / fanotify.h
CommitLineData
ff0b16a9
EP
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 */
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
2a3edf86 21/* flags used for fanotify_init() */
52c923dd
EP
22#define FAN_CLOEXEC 0x00000001
23#define FAN_NONBLOCK 0x00000002
24
25#define FAN_ALL_INIT_FLAGS (FAN_CLOEXEC | FAN_NONBLOCK)
2a3edf86
EP
26
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
eac8e9e8 32#define FAN_MARK_MOUNT 0x00000010
b9e4e3bd 33#define FAN_MARK_IGNORED_MASK 0x00000020
c9778a98 34#define FAN_MARK_IGNORED_SURV_MODIFY 0x00000040
2a3edf86
EP
35
36#define FAN_ALL_MARK_FLAGS (FAN_MARK_ADD |\
37 FAN_MARK_REMOVE |\
38 FAN_MARK_DONT_FOLLOW |\
0ff21db9 39 FAN_MARK_ONLYDIR |\
b9e4e3bd 40 FAN_MARK_MOUNT |\
c9778a98
EP
41 FAN_MARK_IGNORED_MASK |\
42 FAN_MARK_IGNORED_SURV_MODIFY)
2a3edf86 43
ff0b16a9
EP
44/*
45 * All of the events - we build the list by hand so that we can add flags in
46 * the future and not break backward compatibility. Apps will get only the
47 * events that they originally wanted. Be sure to add new events here!
48 */
49#define FAN_ALL_EVENTS (FAN_ACCESS |\
50 FAN_MODIFY |\
51 FAN_CLOSE |\
52 FAN_OPEN)
53
a1014f10
EP
54#define FAN_ALL_OUTGOING_EVENTS (FAN_ALL_EVENTS |\
55 FAN_Q_OVERFLOW)
56
57#define FANOTIFY_METADATA_VERSION 1
58
59struct fanotify_event_metadata {
60 __u32 event_len;
61 __u32 vers;
62 __s32 fd;
63 __u64 mask;
32c32632 64 __s64 pid;
a1014f10
EP
65} __attribute__ ((packed));
66
67/* Helper functions to deal with fanotify_event_metadata buffers */
68#define FAN_EVENT_METADATA_LEN (sizeof(struct fanotify_event_metadata))
69
70#define FAN_EVENT_NEXT(meta, len) ((len) -= (meta)->event_len, \
71 (struct fanotify_event_metadata*)(((char *)(meta)) + \
72 (meta)->event_len))
73
74#define FAN_EVENT_OK(meta, len) ((long)(len) >= (long)FAN_EVENT_METADATA_LEN && \
75 (long)(meta)->event_len >= (long)FAN_EVENT_METADATA_LEN && \
76 (long)(meta)->event_len <= (long)(len))
77
ff0b16a9
EP
78#ifdef __KERNEL__
79
80#endif /* __KERNEL__ */
81#endif /* _LINUX_FANOTIFY_H */