]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
cgroup: css_task_iter_skip()'d iterators must be advanced before accessed
authorTejun Heo <tj@kernel.org>
Wed, 5 Jun 2019 16:54:34 +0000 (09:54 -0700)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Tue, 17 Sep 2019 16:02:18 +0000 (18:02 +0200)
commitbc44383b131666e6cf30290d5da98a6558793a70
treed2bb4433b9cb71b5ae96fadbef16a9567148dee9
parent798cc8800db87f35be63f8665426eb49daa79f28
cgroup: css_task_iter_skip()'d iterators must be advanced before accessed

BugLink: https://bugs.launchpad.net/bugs/1840378
commit cee0c33c546a93957a52ae9ab6bebadbee765ec5 upstream.

b636fd38dc40 ("cgroup: Implement css_task_iter_skip()") introduced
css_task_iter_skip() which is used to fix task iterations skipping
dying threadgroup leaders with live threads.  Skipping is implemented
as a subportion of full advancing but css_task_iter_next() forgot to
fully advance a skipped iterator before determining the next task to
visit causing it to return invalid task pointers.

Fix it by making css_task_iter_next() fully advance the iterator if it
has been skipped since the previous iteration.

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: syzbot
Link: http://lkml.kernel.org/r/00000000000097025d058a7fd785@google.com
Fixes: b636fd38dc40 ("cgroup: Implement css_task_iter_skip()")
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
kernel/cgroup/cgroup.c