Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935058AbcCJE2R (ORCPT ); Wed, 9 Mar 2016 23:28:17 -0500 Received: from shards.monkeyblade.net ([149.20.54.216]:39049 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932906AbcCJE2P (ORCPT ); Wed, 9 Mar 2016 23:28:15 -0500 Date: Wed, 09 Mar 2016 23:28:12 -0500 (EST) Message-Id: <20160309.232812.952849846092100551.davem@davemloft.net> To: ast@fb.com Cc: daniel@iogearbox.net, tobias@waldekranz.com, brendan.d.gregg@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH net-next] bpf: avoid copying junk bytes in bpf_get_current_comm() From: David Miller In-Reply-To: <1457582553-395600-1-git-send-email-ast@fb.com> References: <1457582553-395600-1-git-send-email-ast@fb.com> X-Mailer: Mew version 6.7 on Emacs 24.5 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.5.12 (shards.monkeyblade.net [149.20.54.216]); Wed, 09 Mar 2016 20:28:14 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 977 Lines: 21 From: Alexei Starovoitov Date: Wed, 9 Mar 2016 20:02:33 -0800 > Lots of places in the kernel use memcpy(buf, comm, TASK_COMM_LEN); but > the result is typically passed to print("%s", buf) and extra bytes > after zero don't cause any harm. > In bpf the result of bpf_get_current_comm() is used as the part of > map key and was causing spurious hash map mismatches. > Use strlcpy() to guarantee zero-terminated string. > bpf verifier checks that output buffer is zero-initialized, > so even for short task names the output buffer don't have junk bytes. > Note it's not a security concern, since kprobe+bpf is root only. > > Fixes: ffeedafbf023 ("bpf: introduce current->pid, tgid, uid, gid, comm accessors") > Reported-by: Tobias Waldekranz > Signed-off-by: Alexei Starovoitov > --- > Targeting net-next, since it's too late for net. > I think it makes sense for stable as well. Applied and queued up for -stable, thanks.