public inbox for cgroups@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] Track exported dma-buffers with memcg
@ 2023-01-09 21:38 T.J. Mercier
       [not found] ` <20230109213809.418135-1-tjmercier-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 14+ messages in thread
From: T.J. Mercier @ 2023-01-09 21:38 UTC (permalink / raw)
  To: tjmercier, Tejun Heo, Zefan Li, Johannes Weiner, Jonathan Corbet,
	Greg Kroah-Hartman, Arve Hjønnevåg, Todd Kjos,
	Martijn Coenen, Joel Fernandes, Christian Brauner, Carlos Llamas,
	Suren Baghdasaryan, Sumit Semwal, Christian König,
	Michal Hocko, Roman Gushchin, Shakeel Butt, Muchun Song
  Cc: daniel.vetter, android-mm, jstultz, cgroups, linux-doc,
	linux-kernel, linux-media, dri-devel, linaro-mm-sig, linux-mm,
	linux-security-module, selinux

Based on discussions at LPC, this series adds a memory.stat counter for
exported dmabufs. This counter allows us to continue tracking
system-wide total exported buffer sizes which there is no longer any
way to get without DMABUF_SYSFS_STATS, and adds a new capability to
track per-cgroup exported buffer sizes. The total (root counter) is
helpful for accounting in-kernel dmabuf use (by comparing with the sum
of child nodes or with the sum of sizes of mapped buffers or FD
references in procfs) in addition to helping identify driver memory
leaks when in-kernel use continually increases over time. With
per-application cgroups, the per-cgroup counter allows us to quickly
see how much dma-buf memory an application has caused to be allocated.
This avoids the need to read through all of procfs which can be a
lengthy process, and causes the charge to "stick" to the allocating
process/cgroup as long as the buffer is alive, regardless of how the
buffer is shared (unless the charge is transferred).

The first patch adds the counter to memcg. The next two patches allow
the charge for a buffer to be transferred across cgroups which is
necessary because of the way most dmabufs are allocated from a central
process on Android. The fourth patch adds a SELinux hook to binder in
order to control who is allowed to transfer buffer charges.

[1] https://lore.kernel.org/all/20220617085702.4298-1-christian.koenig@amd.com/

Hridya Valsaraju (1):
  binder: Add flags to relinquish ownership of fds

T.J. Mercier (3):
  memcg: Track exported dma-buffers
  dmabuf: Add cgroup charge transfer function
  security: binder: Add transfer_charge SElinux hook

 Documentation/admin-guide/cgroup-v2.rst |  5 +++
 drivers/android/binder.c                | 36 +++++++++++++++--
 drivers/dma-buf/dma-buf.c               | 54 +++++++++++++++++++++++--
 include/linux/dma-buf.h                 |  5 +++
 include/linux/lsm_hook_defs.h           |  2 +
 include/linux/lsm_hooks.h               |  6 +++
 include/linux/memcontrol.h              |  7 ++++
 include/linux/security.h                |  2 +
 include/uapi/linux/android/binder.h     | 23 +++++++++--
 mm/memcontrol.c                         |  4 ++
 security/security.c                     |  6 +++
 security/selinux/hooks.c                |  9 +++++
 security/selinux/include/classmap.h     |  2 +-
 13 files changed, 149 insertions(+), 12 deletions(-)


base-commit: b7bfaa761d760e72a969d116517eaa12e404c262
-- 
2.39.0.314.g84b9a713c41-goog


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2023-01-20 21:52 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-09 21:38 [PATCH 0/4] Track exported dma-buffers with memcg T.J. Mercier
     [not found] ` <20230109213809.418135-1-tjmercier-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-01-09 21:38   ` [PATCH 1/4] memcg: Track exported dma-buffers T.J. Mercier
2023-01-10  8:58     ` Michal Hocko
2023-01-10 19:08       ` T.J. Mercier
2023-01-09 21:38   ` [PATCH 3/4] binder: Add flags to relinquish ownership of fds T.J. Mercier
2023-01-20 21:25     ` Carlos Llamas
2023-01-20 21:52       ` T.J. Mercier
2023-01-10  0:18   ` [PATCH 0/4] Track exported dma-buffers with memcg Shakeel Butt
     [not found]     ` <CALvZod4ru7F38tAO-gM9ZFKaEhS0w3KqFbPwhwcTvgJs4xMUow-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-01-11 22:56       ` Daniel Vetter
     [not found]         ` <Y78+rfzXPq5XGs9O-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
2023-01-12  0:49           ` T.J. Mercier
2023-01-12  7:56           ` Shakeel Butt
     [not found]         ` <CABdmKX0TAv=iRz0s+F6dVVX=xsK00BeUPkRM4bnsfemDAY9U4w@mail.gmail.com>
     [not found]           ` <CABdmKX0TAv=iRz0s+F6dVVX=xsK00BeUPkRM4bnsfemDAY9U4w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-01-12  8:13             ` Shakeel Butt
     [not found]               ` <20230112081337.fxgnhdk44mxu26et-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-01-12  8:17                 ` Christian König
     [not found]         ` <20230112075631.wc6fd54ci55drhkp@google.com>
2023-01-12 10:25           ` Michal Hocko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox