From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753027AbbIWIG6 (ORCPT ); Wed, 23 Sep 2015 04:06:58 -0400 Received: from mx2.parallels.com ([199.115.105.18]:39191 "EHLO mx2.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752789AbbIWIGw (ORCPT ); Wed, 23 Sep 2015 04:06:52 -0400 Date: Wed, 23 Sep 2015 11:06:32 +0300 From: Vladimir Davydov To: David Rientjes CC: Andrew Morton , Oleg Nesterov , Michal Hocko , Linus Torvalds , Kyle Walker , Christoph Lameter , Johannes Weiner , linux-mm , Linux Kernel Mailing List , Stanislav Kozina , Tetsuo Handa Subject: Re: [patch] mm, oom: remove task_lock protecting comm printing Message-ID: <20150923080632.GD12318@esperanza> References: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: X-ClientProxiedBy: US-EXCH2.sw.swsoft.com (10.255.249.46) To US-EXCH2.sw.swsoft.com (10.255.249.46) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Tue, Sep 22, 2015 at 04:30:13PM -0700, David Rientjes wrote: > The oom killer takes task_lock() in a couple of places solely to protect > printing the task's comm. > > A process's comm, including current's comm, may change due to > /proc/pid/comm or PR_SET_NAME. > > The comm will always be NULL-terminated, so the worst race scenario would > only be during update. We can tolerate a comm being printed that is in > the middle of an update to avoid taking the lock. > > Other locations in the kernel have already dropped task_lock() when > printing comm, so this is consistent. Without the protection, can't reading task->comm race with PR_SET_NAME as described below? Let T->comm[16] = "name\0rubbish1234" CPU1 CPU2 ---- ---- set_task_comm(T, "longname\0") T->comm[0] = 'l' T->comm[1] = 'o' T->comm[2] = 'n' T->comm[3] = 'g' T->comm[4] = 'n' printk("%s\n", T->comm) T->comm = "longnrubbish1234" OOPS: the string is not nil-terminated! T->comm[5] = 'a' T->comm[6] = 'm' T->comm[7] = 'e' T->comm[8] = '\0' Thanks, Vladimir