[Devel] Fwd: [PATCH RFC 0/4] Fix file lock cache accounting, again

Vasily Averin vvs at openvz.org
Fri Jan 19 20:05:03 MSK 2024


Just FYI
new attempt to push accounting for file locks.

-------- Forwarded Message --------
Subject: [PATCH RFC 0/4] Fix file lock cache accounting, again
Date: Wed, 17 Jan 2024 08:14:42 -0800
From: Josh Poimboeuf <jpoimboe at kernel.org>
To: Linus Torvalds <torvalds at linux-foundation.org>, Jeff Layton <jlayton at kernel.org>, Chuck Lever <chuck.lever at oracle.com>, Shakeel Butt <shakeelb at google.com>, Roman Gushchin <roman.gushchin at linux.dev>, Johannes Weiner <hannes at cmpxchg.org>, Michal Hocko <mhocko at kernel.org>
CC: linux-kernel at vger.kernel.org, Jens Axboe <axboe at kernel.dk>, Tejun Heo <tj at kernel.org>, Vasily Averin <vasily.averin at linux.dev>, Michal Koutny <mkoutny at suse.com>, Waiman Long <longman at redhat.com>, Muchun Song <muchun.song at linux.dev>, Jiri Kosina <jikos at kernel.org>, cgroups at vger.kernel.org, linux-mm at kvack.org

This is an attempt to fix file lock cache accounting (again).  The bug
was originally reported 2+ years ago [1] but was quickly reverted [2]
for performance reasons.

A few years ago some ideas [3] were floated about how to improve the
performance.  Did any of those ever get implemented?

Testing shows "mm: improve performance of accounted kernel memory
allocations" [4] helping some.  But even with those patches, much of the
original performance regression still remains, at least according to
microbenchmarks.

Despite that regression, this being a security and correctness issue, it
really needs to be fixed by default.  Those who want to live on the edge
(or have trusted user space) can disable it.

Patch 1 enables the fix by default, but allows disabling it at boot
time.

Patch 2 allows disabling it at build time.

Patches 3 and 4 allow disabling it (along with all the CPU mitigations)
using mitigations=off.

[1] 0f12156dff28 ("memcg: enable accounting for file lock caches")
[2] 3754707bcc3e ("Revert "memcg: enable accounting for file lock caches"")
[3] https://lore.kernel.org/lkml/dbc9955d-6c28-1dd5-b842-ef39a762aa3b@kernel.dk/
[4] https://lore.kernel.org/lkml/20231019225346.1822282-1-roman.gushchin@linux.dev/

Josh Poimboeuf (4):
  fs/locks: Fix file lock cache accounting, again
  fs/locks: Add CONFIG_FLOCK_ACCOUNTING
  mitigations: Expand 'mitigations=off' to include optional software
    mitigations
  mitigations: Add flock cache accounting to 'mitigations=off'

 .../admin-guide/kernel-parameters.txt         | 48 ++++++++++++++----
 arch/arm64/kernel/cpufeature.c                |  2 +-
 arch/arm64/kernel/proton-pack.c               |  6 +--
 arch/powerpc/kernel/security.c                | 14 +++---
 arch/s390/kernel/nospec-branch.c              |  2 +-
 arch/x86/kernel/cpu/bugs.c                    | 35 ++++++-------
 arch/x86/kvm/mmu/mmu.c                        |  2 +-
 arch/x86/mm/pti.c                             |  3 +-
 fs/Kconfig                                    | 15 ++++++
 fs/locks.c                                    | 31 +++++++++++-
 include/linux/bpf.h                           |  5 +-
 include/linux/cpu.h                           |  3 --
 include/linux/mitigations.h                   |  4 ++
 kernel/Makefile                               |  3 +-
 kernel/cpu.c                                  | 43 ----------------
 kernel/mitigations.c                          | 50 +++++++++++++++++++
 16 files changed, 174 insertions(+), 92 deletions(-)
 create mode 100644 include/linux/mitigations.h
 create mode 100644 kernel/mitigations.c

-- 
2.43.0



More information about the Devel mailing list