Kconfig 870 B

1234567891011121314151617181920212223242526
  1. config FANOTIFY
  2. bool "Filesystem wide access notification"
  3. select FSNOTIFY
  4. select ANON_INODES
  5. default n
  6. ---help---
  7. Say Y here to enable fanotify support. fanotify is a file access
  8. notification system which differs from inotify in that it sends
  9. an open file descriptor to the userspace listener along with
  10. the event.
  11. If unsure, say Y.
  12. config FANOTIFY_ACCESS_PERMISSIONS
  13. bool "fanotify permissions checking"
  14. depends on FANOTIFY
  15. depends on SECURITY
  16. default n
  17. ---help---
  18. Say Y here is you want fanotify listeners to be able to make permissions
  19. decisions concerning filesystem events. This is used by some fanotify
  20. listeners which need to scan files before allowing the system access to
  21. use those files. This is used by some anti-malware vendors and by some
  22. hierarchical storage managent systems.
  23. If unsure, say N.