From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423785AbcFMOA6 (ORCPT ); Mon, 13 Jun 2016 10:00:58 -0400 Received: from mail-wm0-f67.google.com ([74.125.82.67]:35400 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1423429AbcFMOA5 (ORCPT ); Mon, 13 Jun 2016 10:00:57 -0400 Date: Mon, 13 Jun 2016 16:00:53 +0200 From: Michal Hocko To: Tetsuo Handa Cc: mst@redhat.com, vdavydov@virtuozzo.com, akpm@linux-foundation.org, rientjes@google.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] exit: clear TIF_MEMDIE after exit_task_work Message-ID: <20160613140052.GJ6518@dhcp22.suse.cz> References: <20160301171758.GP9461@dhcp22.suse.cz> <20160301191906-mutt-send-email-mst@redhat.com> <20160314163943.GE11400@dhcp22.suse.cz> <20160607125014.GL12305@dhcp22.suse.cz> <20160613115041.GG6518@dhcp22.suse.cz> <201606132252.IAE00593.OJQSFMtVFOLHOF@I-love.SAKURA.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201606132252.IAE00593.OJQSFMtVFOLHOF@I-love.SAKURA.ne.jp> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon 13-06-16 22:52:43, Tetsuo Handa wrote: > Michal Hocko wrote: > > I have checked the vnet code and it doesn't seem to rely on > > copy_from_user/get_user AFAICS. Other users of use_mm() need to copy to > > the userspace only as well. So we should be perfectly safe to OOM reap > > address space even when it is shared by the kthread [1] so this is > > not really needed for the OOM correctness purpose. It would be much > > nicer if the kthread didn't pin the mm for two long outside of the OOM > > handling as well of course but that lowers the priority of the change. > > > > [1] http://lkml.kernel.org/r/20160613112348.GC6518@dhcp22.suse.cz > > It seems to me that vhost code relies on copy from the userspace. > > use_mm(dev->mm) and unuse_mm(dev->mm) are used inside vhost_worker(). > work->fn(work) is initialized by vhost_work_init(). > vhost_scsi_open() passes vhost_scsi_complete_cmd_work() and > vhost_scsi_evt_work() as ->fn, and both functions call __get_user(). > > vhost_scsi_complete_cmd_work() { > vhost_signal() { > vhost_notify() { > __get_user() > } > } > } > > vhost_scsi_evt_work() { > vhost_scsi_do_evt_work() { > vhost_get_vq_desc() { > __get_user() / __copy_from_user() > get_indirect() { > copy_from_iter() > } > } > } > } Ahh, I've missed those. Thanks for pointing this out! Let me try to find out whether the code is robust to see unexpected 0 when reading from the userspace. -- Michal Hocko SUSE Labs