kernel_samsung_a53x/kernel/cgroup
Xiu Jianfeng ed45b3440f cgroup: Fix potential overflow issue when checking max_depth
[ Upstream commit 3cc4e13bb1617f6a13e5e6882465984148743cf4 ]

cgroup.max.depth is the maximum allowed descent depth below the current
cgroup. If the actual descent depth is equal or larger, an attempt to
create a new child cgroup will fail. However due to the cgroup->max_depth
is of int type and having the default value INT_MAX, the condition
'level > cgroup->max_depth' will never be satisfied, and it will cause
an overflow of the level after it reaches to INT_MAX.

Fix it by starting the level from 0 and using '>=' instead.

It's worth mentioning that this issue is unlikely to occur in reality,
as it's impossible to have a depth of INT_MAX hierarchy, but should be
be avoided logically.

Fixes: 1a926e0bbab8 ("cgroup: implement hierarchy limits")
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Reviewed-by: Michal Koutný <mkoutny@suse.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-11-23 23:22:02 +01:00
..
cgroup-internal.h cgroup: Make operations on the cgroup root_list RCU safe 2024-11-23 23:21:15 +01:00
cgroup-v1.c cgroup: Remove duplicates in cgroup v1 tasks file 2024-11-08 11:25:51 +01:00
cgroup.c cgroup: Fix potential overflow issue when checking max_depth 2024-11-23 23:22:02 +01:00
cpuset.c cgroup/cpuset: Prevent UAF in proc_cpuset_show() 2024-11-23 23:20:54 +01:00
debug.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
freezer.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
legacy_freezer.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
Makefile Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
namespace.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
pids.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rdma.c Import A536BXXU9EXDC 2024-06-15 16:02:09 -03:00
rstat.c cgroup: rstat: punt root-level optimization to individual controllers 2024-11-19 17:40:21 +01:00