Re: [PATCH v2] netprio_cgroup: Fix unlimited memory leak of v2 cgroups
From: Jakub Kicinski <kuba@kernel.org>
Date: 2020-05-10 04:02:18
Also in:
cgroups, lkml
From: Jakub Kicinski <kuba@kernel.org>
Date: 2020-05-10 04:02:18
Also in:
cgroups, lkml
On Fri, 8 May 2020 22:58:29 -0700 Jakub Kicinski wrote:
On Sat, 9 May 2020 11:32:10 +0800 Zefan Li wrote:quoted
If systemd is configured to use hybrid mode which enables the use of both cgroup v1 and v2, systemd will create new cgroup on both the default root (v2) and netprio_cgroup hierarchy (v1) for a new session and attach task to the two cgroups. If the task does some network thing then the v2 cgroup can never be freed after the session exited. One of our machines ran into OOM due to this memory leak. In the scenario described above when sk_alloc() is called cgroup_sk_alloc() thought it's in v2 mode, so it stores the cgroup pointer in sk->sk_cgrp_data and increments the cgroup refcnt, but then sock_update_netprioidx() thought it's in v1 mode, so it stores netprioidx value in sk->sk_cgrp_data, so the cgroup refcnt will never be freed. Currently we do the mode switch when someone writes to the ifpriomap cgroup control file. The easiest fix is to also do the switch when a task is attached to a new cgroup. Fixes: bd1060a1d671("sock, cgroup: add sock->sk_cgroup")^ space missing herequoted
Reported-by: Yang Yingliang <redacted> Tested-by: Yang Yingliang <redacted> Signed-off-by: Zefan Li <redacted>
Fixed up the commit message and applied, thank you.