Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp7853357ybi; Tue, 9 Jul 2019 05:26:28 -0700 (PDT) X-Google-Smtp-Source: APXvYqzfKryRcb+t86K6Nvhamh9H6Jio1rDQHwwkV7+mhzTQ06F4bvWaMSyQdaNvBfdiZ0PAb6wn X-Received: by 2002:a17:90a:1a45:: with SMTP id 5mr33264103pjl.43.1562675188221; Tue, 09 Jul 2019 05:26:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1562675188; cv=none; d=google.com; s=arc-20160816; b=sNVwZoKHlJ00KMPdp8cLKlZqzKnXfSZr+ppw7G/afIO25MWR5Agav/2DFCDkrM44aL ehb/SdP8aqjPoMnGKfO9msfFLrRmT/dY8yYutMoqR8ueg+XSBKpwOnQ64PpiuYXFO1nR 69FzlIzYDg0sIPB0cK5T2iKa8Vg2rTSZEuWp97G0//HBLgSN3sUAXzz2YmhSpHpsoXUy 7UYTdY9ByFp5h/R3ZCNd0+sfs7kVDOrMg1U3RJxQPcIpcyFiPer5Z3FZbCFitd0y/5KC gZ+bycDYfb5FpJh2OpuPuISTiAfuwzkEuo1aQthYP2D6nX0dDTE32YqN+6lXifM0GdFy Opvw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from; bh=SjSp+i2DR0qQlcY7vpgDSC4luP1V9D0yKd2Se9WpSg8=; b=oRXs+qCeOB8aBPB+LUhZ02CotKKPTtdVpqTwCfHXgjrGhe0ow9H9jupd9Wk45Tyh6w oowgWWenUtTJl0VfTLpP4cFXp2WOAqLDqpokq27Y1+wK8POmanvFb3TAM7+NBZkQ4JEx UlmTkSwNjAD2+Y+Fz6lfRHIrxsjF7FKNi/8LZNjZe5r35eWC5lp1cn5RHvP3cXeDKsEZ YQXWZri+bQ52al4KL06Bfnl1l3PiaEc7aX9vqTJoZa6JSvNPWR9FJ0YEHzp3A0yaECsg qB0tYq/PRi1Z/vpKX6jAW1doVkXttuCEV+472QEOzoGpeXQuEQHEBx/10oJlallaQfY+ u+Qw== 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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 3si21297233plx.344.2019.07.09.05.26.12; Tue, 09 Jul 2019 05:26:28 -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; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=intel.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726820AbfGIMZj (ORCPT + 99 others); Tue, 9 Jul 2019 08:25:39 -0400 Received: from mga14.intel.com ([192.55.52.115]:1737 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726721AbfGIMZi (ORCPT ); Tue, 9 Jul 2019 08:25:38 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jul 2019 05:25:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,470,1557212400"; d="scan'208";a="249133728" Received: from ngote-system-product-name.iind.intel.com ([10.106.124.92]) by orsmga001.jf.intel.com with ESMTP; 09 Jul 2019 05:25:33 -0700 From: NitinGote To: joe@perches.com, akpm@linux-foundation.org Cc: corbet@lwn.net, apw@canonical.com, keescook@chromium.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-hardening@lists.openwall.com, Nitin Gote Subject: [PATCH v3] Added warnings in checkpatch.pl script to : Date: Tue, 9 Jul 2019 17:54:17 +0530 Message-Id: <20190709122417.25778-1-nitin.r.gote@intel.com> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Nitin Gote 1. Deprecate strcpy() in favor of strscpy(). 2. Deprecate strlcpy() in favor of strscpy(). 3. Deprecate strncpy() in favor of strscpy() or strscpy_pad(). Updated strncpy() section in Documentation/process/deprecated.rst to cover strscpy_pad() case. Signed-off-by: Nitin Gote --- Change log: v1->v2 - For string related apis, created different %deprecated_string_api and these will get emitted at CHECK Level using command line option -f/--file to avoid bad patched from novice script users. v2->v3 - Avoided use of $check in implementation. - Incorporated trivial comments. Documentation/process/deprecated.rst | 6 +++--- scripts/checkpatch.pl | 24 ++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 3 deletions(-) diff --git a/Documentation/process/deprecated.rst b/Documentation/process/deprecated.rst index 49e0f64a3427..f564de3caf76 100644 --- a/Documentation/process/deprecated.rst +++ b/Documentation/process/deprecated.rst @@ -93,9 +93,9 @@ will be NUL terminated. This can lead to various linear read overflows and other misbehavior due to the missing termination. It also NUL-pads the destination buffer if the source contents are shorter than the destination buffer size, which may be a needless performance penalty for callers using -only NUL-terminated strings. The safe replacement is :c:func:`strscpy`. -(Users of :c:func:`strscpy` still needing NUL-padding will need an -explicit :c:func:`memset` added.) +only NUL-terminated strings. In this case, the safe replacement is +:c:func:`strscpy`. If, however, the destination buffer still needs +NUL-padding, the safe replacement is :c:func:`strscpy_pad`. If a caller is using non-NUL-terminated strings, :c:func:`strncpy()` can still be used, but destinations should be marked with the `__nonstring diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index bb28b178d929..e6fbf4cf4be4 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -605,6 +605,20 @@ foreach my $entry (keys %deprecated_apis) { } $deprecated_apis_search = "(?:${deprecated_apis_search})"; +our %deprecated_string_apis = ( + "strcpy" => "strscpy", + "strlcpy" => "strscpy", + "strncpy" => "strscpy, strscpy_pad or for non-NUL-terminated strings, strncpy() can still be used, but destinations should be marked with the __nonstring", +); + +#Create a search pattern for all these strings apis to speed up a loop below +our $deprecated_string_apis_search = ""; +foreach my $entry (keys %deprecated_string_apis) { + $deprecated_string_apis_search .= '|' if ($deprecated_string_apis_search ne ""); + $deprecated_string_apis_search .= $entry; +} +$deprecated_string_apis_search = "(?:${deprecated_string_apis_search})"; + our $mode_perms_world_writable = qr{ S_IWUGO | S_IWOTH | @@ -6446,6 +6460,16 @@ sub process { "Deprecated use of '$deprecated_api', prefer '$new_api' instead\n" . $herecurr); } +# check for string deprecated apis + if ($line =~ /\b($deprecated_string_apis_search)\b\s*\(/) { + my $deprecated_string_api = $1; + my $new_api = $deprecated_string_apis{$deprecated_string_api}; + my $msg_level = \&WARN; + $msg_level = \&CHK if ($file); + &{$msg_level}("DEPRECATED_API", + "Deprecated use of '$deprecated_string_api', prefer '$new_api' instead\n" . $herecurr); + } + # check for various structs that are normally const (ops, kgdb, device_tree) # and avoid what seem like struct definitions 'struct foo {' if ($line !~ /\bconst\b/ && -- 2.17.1