forked from Qortal/Brooklyn
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
23 lines
657 B
C
23 lines
657 B
C
/*
|
|
* Inode based directory notification for Linux
|
|
*
|
|
* Copyright (C) 2005 John McCutchan
|
|
*/
|
|
#ifndef _LINUX_INOTIFY_H
|
|
#define _LINUX_INOTIFY_H
|
|
|
|
#include <linux/sysctl.h>
|
|
#include <uapi/linux/inotify.h>
|
|
|
|
extern struct ctl_table inotify_table[]; /* for sysctl */
|
|
|
|
#define ALL_INOTIFY_BITS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | \
|
|
IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | \
|
|
IN_MOVED_TO | IN_CREATE | IN_DELETE | \
|
|
IN_DELETE_SELF | IN_MOVE_SELF | IN_UNMOUNT | \
|
|
IN_Q_OVERFLOW | IN_IGNORED | IN_ONLYDIR | \
|
|
IN_DONT_FOLLOW | IN_EXCL_UNLINK | IN_MASK_ADD | \
|
|
IN_ISDIR | IN_ONESHOT)
|
|
|
|
#endif /* _LINUX_INOTIFY_H */
|