Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp1455835ybi; Fri, 2 Aug 2019 16:19:50 -0700 (PDT) X-Google-Smtp-Source: APXvYqy0weUn8HN0xJtSQvF0Wx7yChXkIeKVmQtTiSdjPQ40om7VV2H98vdwsQOJu1nH2obMn3mR X-Received: by 2002:a63:3805:: with SMTP id f5mr92747016pga.272.1564787990603; Fri, 02 Aug 2019 16:19:50 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1564787990; cv=none; d=google.com; s=arc-20160816; b=NSwRtpFnra5qN6EKEIqsEMMHwesq07BGVUXrBOkl/PVy1DncNBe0ILg5Nhf0T4Vroz 28/sQvxUwhPGkvC5xCbjacyyhNvbD+Luxg5xGrrd0kKXOOrYYT7SdNeWtqh2nYWTIoFB ptkCMxzrvpEREyVASG0ej93203PV3DEwrqn2e0kLoiPZzTBAQMKgo7PJcdoJzqLx19Rt 32rC4S6RBQAbVC3RROPSWfzezbhOX7D4GkpNKOOdvWloaQMoVaKauwh8YoMnFN914Ehb mvPCFMuW/xjVjYzMbYk3O0OOcM2Jju0ZsHWsg6qk/BpL/kfSrCi+lDje9rkAiBJiesOJ AoLQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:references:in-reply-to:subject:cc:to:from; bh=HsHD+oG86gCJv9NO16u2GAr3IC6CxNUx70RYLoXvXXk=; b=D/WJvnWKHSFt+Eq0A7oWfTdTEofCM9NxgvEJgQUajvtB86W5uDat2n6OBBgeKPhEcx iCK3upl9q7GJvf9gjiGvaeOgfSFGDWNrc0j5GbDFvDxmVAtHfm6gfwkxDKCegRMI1YHO XjEyNjwGUiusDtqUKfrmUqUN9qYNc8Fn9NCmNcUFA8z4rujITjpK41WLNLEdFRZhBXWz T5xLPShwmSnul+pnnLsPVYP32W9snbHyDOZ94GizdfdC/722GtHw2UDCHpYWtyRlxOwe ixO2uo7lKfkRXGQ0uCLNA105w8ldlDGMxnIZYlpF2Orxtw3q4tbENE1prRbSRdmppkre cMIA== 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 h25si40378234pfn.56.2019.08.02.16.18.57; Fri, 02 Aug 2019 16:19:50 -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 S2392600AbfHBMQH convert rfc822-to-8bit (ORCPT + 99 others); Fri, 2 Aug 2019 08:16:07 -0400 Received: from ozlabs.org ([203.11.71.1]:36859 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732155AbfHBMQG (ORCPT ); Fri, 2 Aug 2019 08:16:06 -0400 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 460R2p1xsMz9sBF; Fri, 2 Aug 2019 22:16:02 +1000 (AEST) From: Michael Ellerman To: Chuhong Yuan , Kees Cook Cc: Tejun Heo , Li Zefan , Johannes Weiner , cgroups@vger.kernel.org, LKML , Joe Perches , Laura Abbott , Steven Rostedt Subject: Re: [PATCH 01/12] rdmacg: Replace strncmp with str_has_prefix In-Reply-To: References: <20190729151346.9280-1-hslester96@gmail.com> <201907292117.DA40CA7D@keescook> Date: Fri, 02 Aug 2019 22:16:00 +1000 Message-ID: <87y30bkbjz.fsf@concordia.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Chuhong Yuan writes: > Chuhong Yuan 于2019年7月30日周二 下午2:39写道: >> Kees Cook 于2019年7月30日周二 下午12:26写道: >> > On Mon, Jul 29, 2019 at 11:13:46PM +0800, Chuhong Yuan wrote: >> > > strncmp(str, const, len) is error-prone. >> > > We had better use newly introduced >> > > str_has_prefix() instead of it. >> > >> > Wait, stop. :) After Laura called my attention to your conversion series, >> > mpe pointed out that str_has_prefix() is almost redundant to strstarts() >> > (from 2009), and the latter has many more users. Let's fix strstarts() >> > match str_has_prefix()'s return behavior (all the existing callers are >> > doing boolean tests, so the change in return value won't matter), and >> > then we can continue with this replacement. (And add some documentation >> > to Documenation/process/deprecated.rst along with a checkpatch.pl test >> > maybe too?) >> > >> >> Thanks for your advice! >> Does that mean replacing strstarts()'s implementation with >> str_has_prefix()'s and then use strstarts() to substitute >> strncmp? >> >> I am not very clear about how to add the test into checkpatch.pl. >> Should I write a check for this pattern or directly add strncmp into >> deprecated_apis? >> >> > Actually I'd focus first on the actually broken cases first (sizeof() >> > without the "-1", etc): >> > >> > $ git grep strncmp.*sizeof | grep -v -- '-' | wc -l >> > 17 >> > >> > I expect the "copy/paste" changes could just be a Coccinelle script that >> > Linus could run to fix all the cases (and should be added to the kernel >> > source's list of Coccinelle scripts). Especially since the bulk of the >> > usage pattern are doing literals like this: >> > >> >> Actually I am using a Coccinelle script to detect the cases and >> have found 800+ places of strncmp(str, const, len). >> But the script still needs some improvement since it has false >> negatives and only focuses on detecting, not replacement. >> I can upload it after improvement. >> In which form should I upload it? In a patch's description or put it >> in coccinelle scripts? >> >> > arch/alpha/kernel/setup.c: if (strncmp(p, "mem=", 4) == 0) { >> > >> > $ git grep -E 'strncmp.*(sizeof|, *[0-9]*)' | wc -l >> > 2565 >> > >> > And some cases are weirdly backwards: >> > >> > tools/perf/util/callchain.c: if (!strncmp(tok, "none", strlen(tok))) { > > I find there are cases of this pattern are not wrong. > One example is kernel/irq/debugfs.c: if (!strncmp(buf, "trigger", size)) { > > Thus I do not know whether I should include these cases in my script. That case isn't looking for a prefix AFAICS, so you should skip it. I think Kees regexp was just slightly wrong, it should be: git grep -E 'strncmp.*(sizeof|, *[0-9]+)' ie. either literal "sizeof" or *at least one* digit. cheers