• Amir Goldstein's avatar
    fanotify: configurable limits via sysfs · 5b8fea65
    Amir Goldstein authored
    fanotify has some hardcoded limits. The only APIs to escape those limits
    are FAN_UNLIMITED_QUEUE and FAN_UNLIMITED_MARKS.
    
    Allow finer grained tuning of the system limits via sysfs tunables under
    /proc/sys/fs/fanotify, similar to tunables under /proc/sys/fs/inotify,
    with some minor differences.
    
    - max_queued_events - global system tunable for group queue size limit.
      Like the inotify tunable with the same name, it defaults to 16384 and
      applies on initialization of a new group.
    
    - max_user_marks - user ns tunable for marks limit per user.
      Like the inotify tunable named max_user_watches, on a machine with
      sufficient RAM and it defaults to 1048576 in init userns and can be
      further limited per containing user ns.
    
    - max_user_groups - user ns tunable for number of groups per user.
      Like the inotify tunable named max_user_instances, it defaults to 128
      in init userns and can be further limited per containing user ns.
    
    The slightly different tunable names used for fanotify are derived from
    the "group" and "mark" terminology used in the fanotify man pages and
    throughout the code.
    
    Considering the fact that the default value for max_user_instances was
    increased in kernel v5.10 from 8192 to 1048576, leaving the legacy
    fanotify limit of 8192 marks per group in addition to the max_user_marks
    limit makes little sense, so the per group marks limit has been removed.
    
    Note that when a group is initialized with FAN_UNLIMITED_MARKS, its own
    marks are not accounted in the per user marks account, so in effect the
    limit of max_user_marks is only for the collection of groups that are
    not initialized with FAN_UNLIMITED_MARKS.
    
    Link: https://lore.kernel.org/r/20210304112921.3996419-2-amir73il@gmail.comSuggested-by: default avatarJan Kara <jack@suse.cz>
    Signed-off-by: default avatarAmir Goldstein <amir73il@gmail.com>
    Signed-off-by: default avatarJan Kara <jack@suse.cz>
    5b8fea65
mark.c 24.8 KB