Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1671193 > unrolled thread
| Started by | David Rientjes <rientjes@google.com> |
|---|---|
| First post | 2017-06-21 00:20 +0200 |
| Last post | 2017-06-23 14:50 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH] mm,oom_kill: Close race window of needlessly selecting new victims. David Rientjes <rientjes@google.com> - 2017-06-21 00:20 +0200
Re: [PATCH] mm,oom_kill: Close race window of needlessly selecting new victims. Michal Hocko <mhocko@kernel.org> - 2017-06-21 15:20 +0200
Re: Re: [PATCH] mm,oom_kill: Close race window of needlessly selecting new victims. David Rientjes <rientjes@google.com> - 2017-06-21 22:40 +0200
Re: [PATCH] mm,oom_kill: Close race window of needlessly selecting new victims. Michal Hocko <mhocko@kernel.org> - 2017-06-23 14:50 +0200
| From | David Rientjes <rientjes@google.com> |
|---|---|
| Date | 2017-06-21 00:20 +0200 |
| Subject | Re: [PATCH] mm,oom_kill: Close race window of needlessly selecting new victims. |
| Message-ID | <tUzF8-5Z6-17@gated-at.bofh.it> |
On Sat, 17 Jun 2017, Tetsuo Handa wrote:
> diff --git a/mm/oom_kill.c b/mm/oom_kill.c
> index 04c9143..cf1d331 100644
> --- a/mm/oom_kill.c
> +++ b/mm/oom_kill.c
> @@ -470,38 +470,9 @@ static bool __oom_reap_task_mm(struct task_struct *tsk, struct mm_struct *mm)
> {
> struct mmu_gather tlb;
> struct vm_area_struct *vma;
> - bool ret = true;
> -
> - /*
> - * We have to make sure to not race with the victim exit path
> - * and cause premature new oom victim selection:
> - * __oom_reap_task_mm exit_mm
> - * mmget_not_zero
> - * mmput
> - * atomic_dec_and_test
> - * exit_oom_victim
> - * [...]
> - * out_of_memory
> - * select_bad_process
> - * # no TIF_MEMDIE task selects new victim
> - * unmap_page_range # frees some memory
> - */
> - mutex_lock(&oom_lock);
> -
> - if (!down_read_trylock(&mm->mmap_sem)) {
> - ret = false;
> - goto unlock_oom;
> - }
>
> - /*
> - * increase mm_users only after we know we will reap something so
> - * that the mmput_async is called only when we have reaped something
> - * and delayed __mmput doesn't matter that much
> - */
> - if (!mmget_not_zero(mm)) {
> - up_read(&mm->mmap_sem);
> - goto unlock_oom;
> - }
> + if (!down_read_trylock(&mm->mmap_sem))
> + return false;
>
> /*
> * Tell all users of get_user/copy_from_user etc... that the content
> @@ -537,16 +508,7 @@ static bool __oom_reap_task_mm(struct task_struct *tsk, struct mm_struct *mm)
> K(get_mm_counter(mm, MM_FILEPAGES)),
> K(get_mm_counter(mm, MM_SHMEMPAGES)));
> up_read(&mm->mmap_sem);
> -
> - /*
> - * Drop our reference but make sure the mmput slow path is called from a
> - * different context because we shouldn't risk we get stuck there and
> - * put the oom_reaper out of the way.
> - */
> - mmput_async(mm);
> -unlock_oom:
> - mutex_unlock(&oom_lock);
> - return ret;
> + return true;
> }
>
> #define MAX_OOM_REAP_RETRIES 10
> @@ -569,12 +531,31 @@ static void oom_reap_task(struct task_struct *tsk)
>
> done:
> tsk->oom_reaper_list = NULL;
> + /*
> + * Drop a mm_users reference taken by mark_oom_victim().
> + * A mm_count reference taken by mark_oom_victim() remains.
> + */
> + mmput_async(mm);
This doesn't prevent serial oom killing for either the system oom killer
or for the memcg oom killer.
The oom killer cannot detect tsk_is_oom_victim() if the task has either
been removed from the tasklist or has already done cgroup_exit(). For
memcg oom killings in particular, cgroup_exit() is usually called very
shortly after the oom killer has sent the SIGKILL. If the oom reaper does
not fail (for example by failing to grab mm->mmap_sem) before another
memcg charge after cgroup_exit(victim), additional processes are killed
because the iteration does not view the victim.
This easily kills all processes attached to the memcg with no memory
freeing from any victim.
[toc] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-06-21 15:20 +0200 |
| Message-ID | <tUNI6-6z7-11@gated-at.bofh.it> |
| In reply to | #1671193 |
On Tue 20-06-17 15:12:55, David Rientjes wrote: [...] > This doesn't prevent serial oom killing for either the system oom killer > or for the memcg oom killer. > > The oom killer cannot detect tsk_is_oom_victim() if the task has either > been removed from the tasklist or has already done cgroup_exit(). For > memcg oom killings in particular, cgroup_exit() is usually called very > shortly after the oom killer has sent the SIGKILL. If the oom reaper does > not fail (for example by failing to grab mm->mmap_sem) before another > memcg charge after cgroup_exit(victim), additional processes are killed > because the iteration does not view the victim. > > This easily kills all processes attached to the memcg with no memory > freeing from any victim. It took me some time to decrypt the above but you are right. Pinning mm_users will prevent exit path to exit_mmap and that can indeed cause another premature oom killing because the task might be unhashed or removed from the memcg before the oom reaper has a chance to reap the task. Thanks for pointing this out. This means that we either have to reimplement the unhashing/cgroup_exit for oom victims or get back to allowing oom reaper to race with exit_mmap. The later sounds much more easier to me. I was offline last two days but I will revisit my original idea ASAP. -- Michal Hocko SUSE Labs
[toc] | [prev] | [next] | [standalone]
| From | David Rientjes <rientjes@google.com> |
|---|---|
| Date | 2017-06-21 22:40 +0200 |
| Message-ID | <tUUzU-2OU-21@gated-at.bofh.it> |
| In reply to | #1671193 |
On Wed, 21 Jun 2017, Tetsuo Handa wrote: > Umm... So, you are pointing out that select_bad_process() aborts based on > TIF_MEMDIE or MMF_OOM_SKIP is broken because victim threads can be removed > from global task list or cgroup's task list. Then, the OOM killer will have to > wait until all mm_struct of interested OOM domain (system wide or some cgroup) > is reaped by the OOM reaper. Simplest way is to wait until all mm_struct are > reaped by the OOM reaper, for currently we are not tracking which memory cgroup > each mm_struct belongs to, are we? But that can cause needless delay when > multiple OOM events occurred in different OOM domains. Do we want to (and can we) > make it possible to tell whether each mm_struct queued to the OOM reaper's list > belongs to the thread calling out_of_memory() ? > I am saying that taking mmget() in mark_oom_victim() and then only dropping it with mmput_async() after it can grab mm->mmap_sem, which the exit path itself takes, or the oom reaper happens to schedule, causes __mmput() to be called much later and thus we remove the process from the tasklist or call cgroup_exit() earlier than the memory can be unmapped with your patch. As a result, subsequent calls to the oom killer kills everything before the original victim's mm can undergo __mmput() because the oom reaper still holds the reference.
[toc] | [prev] | [next] | [standalone]
| From | Michal Hocko <mhocko@kernel.org> |
|---|---|
| Date | 2017-06-23 14:50 +0200 |
| Message-ID | <tVwca-2bn-7@gated-at.bofh.it> |
| In reply to | #1672018 |
On Thu 22-06-17 09:53:48, Tetsuo Handa wrote: > David Rientjes wrote: > > On Wed, 21 Jun 2017, Tetsuo Handa wrote: > > > Umm... So, you are pointing out that select_bad_process() aborts based on > > > TIF_MEMDIE or MMF_OOM_SKIP is broken because victim threads can be removed > > > from global task list or cgroup's task list. Then, the OOM killer will have to > > > wait until all mm_struct of interested OOM domain (system wide or some cgroup) > > > is reaped by the OOM reaper. Simplest way is to wait until all mm_struct are > > > reaped by the OOM reaper, for currently we are not tracking which memory cgroup > > > each mm_struct belongs to, are we? But that can cause needless delay when > > > multiple OOM events occurred in different OOM domains. Do we want to (and can we) > > > make it possible to tell whether each mm_struct queued to the OOM reaper's list > > > belongs to the thread calling out_of_memory() ? > > > > > > > I am saying that taking mmget() in mark_oom_victim() and then only > > dropping it with mmput_async() after it can grab mm->mmap_sem, which the > > exit path itself takes, or the oom reaper happens to schedule, causes > > __mmput() to be called much later and thus we remove the process from the > > tasklist or call cgroup_exit() earlier than the memory can be unmapped > > with your patch. As a result, subsequent calls to the oom killer kills > > everything before the original victim's mm can undergo __mmput() because > > the oom reaper still holds the reference. > > Here is "wait for all mm_struct are reaped by the OOM reaper" version. Well, this is getting more and more hairy. I think we should explore the possibility of oom_reaper vs. exit_mmap working together after all. Yes, I've said that a solution fully withing the oom proper would be preferable but this just grows into complex hairy mess. Maybe we just find out that oom_reaper vs. exit_mmap is just not feasible and we will reconsider this approach in the end but let's try a clean solution first. As I've said there is nothing fundamentally hard about parallel unmapping MADV_DONTNEED does that already. We just have to iron out those tiny details. -- Michal Hocko SUSE Labs
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web