Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp2324943imm; Fri, 7 Sep 2018 14:41:33 -0700 (PDT) X-Google-Smtp-Source: ANB0Vda+aeB5yzSqxJt/iVfnVd5tgmmyF7sI0wwG3s/icAWCA0Wk71l7tI9EM2WuPKLp2hA8lhMz X-Received: by 2002:a63:6054:: with SMTP id u81-v6mr10409060pgb.433.1536356493132; Fri, 07 Sep 2018 14:41:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536356493; cv=none; d=google.com; s=arc-20160816; b=u/PvkBHLXr1bzNggQdEEPWDogvMX8CZZOWl8++QWi97AWL3G4vn0Sbs4dqLEErrI8z TjNwB2/OtSyNZIZqNvxRG1neq02VY4PAksR09/3LnfHE7WOGjj8IRpThusxGxEmkPBkw FMwRYHg9JmPv15Tg47qbtTLrRIhF6LLftpOaargkK/CotCORm/NKhuRea4z0ARgp+pf6 0zD88ZlNGgpDqWE8qyC3Zi7yHRiBhkfBjwKDPOpu1ypKQbJ2rxJCNSQ1SfdBvRixsIkk z+/KJx0fktxPzg+TB8N5ZZBlGJUgw6O96KvGwJ3L9/cG7S2pEQSp/6XH5EZvA0T2l5W6 ACIA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from; bh=Y2piOb2xUm9F9MXwmz4fP44oy6x7Z20LDmbvLZwP2dQ=; b=HvxRtg2AM11QhcTuUZrCYnpeSxT1abxM65Jlit3pr0RbYAV3VwCejLce4JF2dE2zVM Uin1F+/zcphM3RMx8gDl4yy8QNFhHPWgHHIvDPQhA5XSc94fJe3VhkAutzahefm2HCoR yOF/TgfqOgR9K5/PVK2haxw4+a3d3clGsFXkU8HiN4r8eLmHK8Sv65wMExOn3m1qoawg WNQ8tHQ9V7vMQxykcV4VXzFNwcX6Tkno9CItlRIYpoVHu/GAZ/tLysMyMHy8xX77LmqO cMK040JgMTd6ClDxEhL1onO2CQg7aM7rQor29/eqs79HzoeMTmHhK5oS1yBajwT6htdO cQ1Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id l26-v6si9125681pfo.325.2018.09.07.14.41.17; Fri, 07 Sep 2018 14:41:33 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730108AbeIHCXI (ORCPT + 99 others); Fri, 7 Sep 2018 22:23:08 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:54174 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728505AbeIHCXH (ORCPT ); Fri, 7 Sep 2018 22:23:07 -0400 Received: from localhost (ip-213-127-74-90.ip.prioritytelecom.net [213.127.74.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 9D9C2100B; Fri, 7 Sep 2018 21:40:12 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, "Steven Rostedt (VMware)" , Snild Dolkow Subject: [PATCH 4.4 23/47] kthread, tracing: Dont expose half-written comm when creating kthreads Date: Fri, 7 Sep 2018 23:10:19 +0200 Message-Id: <20180907210907.190592885@linuxfoundation.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180907210904.607934824@linuxfoundation.org> References: <20180907210904.607934824@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Snild Dolkow commit 3e536e222f2930534c252c1cc7ae799c725c5ff9 upstream. There is a window for racing when printing directly to task->comm, allowing other threads to see a non-terminated string. The vsnprintf function fills the buffer, counts the truncated chars, then finally writes the \0 at the end. creator other vsnprintf: fill (not terminated) count the rest trace_sched_waking(p): ... memcpy(comm, p->comm, TASK_COMM_LEN) write \0 The consequences depend on how 'other' uses the string. In our case, it was copied into the tracing system's saved cmdlines, a buffer of adjacent TASK_COMM_LEN-byte buffers (note the 'n' where 0 should be): crash-arm64> x/1024s savedcmd->saved_cmdlines | grep 'evenk' 0xffffffd5b3818640: "irq/497-pwr_evenkworker/u16:12" ...and a strcpy out of there would cause stack corruption: [224761.522292] Kernel panic - not syncing: stack-protector: Kernel stack is corrupted in: ffffff9bf9783c78 crash-arm64> kbt | grep 'comm\|trace_print_context' #6 0xffffff9bf9783c78 in trace_print_context+0x18c(+396) comm (char [16]) = "irq/497-pwr_even" crash-arm64> rd 0xffffffd4d0e17d14 8 ffffffd4d0e17d14: 2f71726900000000 5f7277702d373934 ....irq/497-pwr_ ffffffd4d0e17d24: 726f776b6e657665 3a3631752f72656b evenkworker/u16: ffffffd4d0e17d34: f9780248ff003231 cede60e0ffffff9b 12..H.x......`.. ffffffd4d0e17d44: cede60c8ffffffd4 00000fffffffffd4 .....`.......... The workaround in e09e28671 (use strlcpy in __trace_find_cmdline) was likely needed because of this same bug. Solved by vsnprintf:ing to a local buffer, then using set_task_comm(). This way, there won't be a window where comm is not terminated. Link: http://lkml.kernel.org/r/20180726071539.188015-1-snild@sony.com Cc: stable@vger.kernel.org Fixes: bc0c38d139ec7 ("ftrace: latency tracer infrastructure") Reviewed-by: Steven Rostedt (VMware) Signed-off-by: Snild Dolkow Signed-off-by: Steven Rostedt (VMware) [backported to 3.18 / 4.4 by Snild] Signed-off-by: Greg Kroah-Hartman --- kernel/kthread.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/kernel/kthread.c +++ b/kernel/kthread.c @@ -313,10 +313,16 @@ struct task_struct *kthread_create_on_no task = create->result; if (!IS_ERR(task)) { static const struct sched_param param = { .sched_priority = 0 }; + char name[TASK_COMM_LEN]; va_list args; va_start(args, namefmt); - vsnprintf(task->comm, sizeof(task->comm), namefmt, args); + /* + * task is already visible to other tasks, so updating + * COMM must be protected. + */ + vsnprintf(name, sizeof(name), namefmt, args); + set_task_comm(task, name); va_end(args); /* * root may have changed our (kthreadd's) priority or CPU mask.