inotify.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Inode based directory notification for Linux
  3. *
  4. * Copyright (C) 2005 John McCutchan
  5. */
  6. #ifndef _UAPI_LINUX_INOTIFY_H
  7. #define _UAPI_LINUX_INOTIFY_H
  8. /* For O_CLOEXEC and O_NONBLOCK */
  9. #include <linux/fcntl.h>
  10. #include <linux/types.h>
  11. /*
  12. * struct inotify_event - structure read from the inotify device for each event
  13. *
  14. * When you are watching a directory, you will receive the filename for events
  15. * such as IN_CREATE, IN_DELETE, IN_OPEN, IN_CLOSE, ..., relative to the wd.
  16. */
  17. struct inotify_event {
  18. __s32 wd; /* watch descriptor */
  19. __u32 mask; /* watch mask */
  20. __u32 cookie; /* cookie to synchronize two events */
  21. __u32 len; /* length (including nulls) of name */
  22. char name[0]; /* stub for possible name */
  23. };
  24. /* the following are legal, implemented events that user-space can watch for */
  25. #define IN_ACCESS 0x00000001 /* File was accessed */
  26. #define IN_MODIFY 0x00000002 /* File was modified */
  27. #define IN_ATTRIB 0x00000004 /* Metadata changed */
  28. #define IN_CLOSE_WRITE 0x00000008 /* Writtable file was closed */
  29. #define IN_CLOSE_NOWRITE 0x00000010 /* Unwrittable file closed */
  30. #define IN_OPEN 0x00000020 /* File was opened */
  31. #define IN_MOVED_FROM 0x00000040 /* File was moved from X */
  32. #define IN_MOVED_TO 0x00000080 /* File was moved to Y */
  33. #define IN_CREATE 0x00000100 /* Subfile was created */
  34. #define IN_DELETE 0x00000200 /* Subfile was deleted */
  35. #define IN_DELETE_SELF 0x00000400 /* Self was deleted */
  36. #define IN_MOVE_SELF 0x00000800 /* Self was moved */
  37. /* the following are legal events. they are sent as needed to any watch */
  38. #define IN_UNMOUNT 0x00002000 /* Backing fs was unmounted */
  39. #define IN_Q_OVERFLOW 0x00004000 /* Event queued overflowed */
  40. #define IN_IGNORED 0x00008000 /* File was ignored */
  41. /* helper events */
  42. #define IN_CLOSE (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE) /* close */
  43. #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO) /* moves */
  44. /* special flags */
  45. #define IN_ONLYDIR 0x01000000 /* only watch the path if it is a directory */
  46. #define IN_DONT_FOLLOW 0x02000000 /* don't follow a sym link */
  47. #define IN_EXCL_UNLINK 0x04000000 /* exclude events on unlinked objects */
  48. #define IN_MASK_ADD 0x20000000 /* add to the mask of an already existing watch */
  49. #define IN_ISDIR 0x40000000 /* event occurred against dir */
  50. #define IN_ONESHOT 0x80000000 /* only send event once */
  51. /*
  52. * All of the events - we build the list by hand so that we can add flags in
  53. * the future and not break backward compatibility. Apps will get only the
  54. * events that they originally wanted. Be sure to add new events here!
  55. */
  56. #define IN_ALL_EVENTS (IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | \
  57. IN_CLOSE_NOWRITE | IN_OPEN | IN_MOVED_FROM | \
  58. IN_MOVED_TO | IN_DELETE | IN_CREATE | IN_DELETE_SELF | \
  59. IN_MOVE_SELF)
  60. /* Flags for sys_inotify_init1. */
  61. #define IN_CLOEXEC O_CLOEXEC
  62. #define IN_NONBLOCK O_NONBLOCK
  63. #endif /* _UAPI_LINUX_INOTIFY_H */