lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 20 Dec 2013 00:37:10 -0800
From:	Joe Perches <joe@...ches.com>
To:	Josh Triplett <josh@...htriplett.org>
Cc:	Ravi Patel <rapatel@....com>,
	Jesse Brandeburg <jesse.brandeburg@...el.com>,
	Andy Whitcroft <apw@...onical.com>,
	Kumar Sankaran <ksankaran@....com>, Loc Ho <lho@....com>,
	Keyur Chudgar <kchudgar@....com>,
	LKML <linux-kernel@...r.kernel.org>
Subject: Re: checkpatch.pl error might be false positive

On Thu, 2013-12-19 at 23:56 -0800, Josh Triplett wrote:
> On Thu, Dec 19, 2013 at 02:15:48PM -0800, Joe Perches wrote:
> > On Thu, 2013-12-19 at 13:01 -0800, Ravi Patel wrote:
> > > My name is Ravi Patel and I am working for AppliedMicro.
> > > I am planning to submit APM X-Gene SoC QMTM drivers to open source after
> > > running checkpatch.pl
> > > I am seeing following error saying remove FSF address from my patch, which
> > > I don't have in my source/header files.
> > > 
> > > ERROR: Do not include the paragraph about writing to the Free Software
> > > Foundation's mailing address from the sample GPL notice. The FSF has
> > > changed addresses in the past, and may do so again. Linux already includes
> > > a copy of the GPL.
> > > #1580: FILE: include/misc/xgene/xgene_qmtm.h:19:
> > > + * You should have received a copy of the GNU General Public License$
> > > 
> > > Here is my License banner in xgene_qmtm.h
> > > There are no tabs in my banner
> > > 
> > > /*
> > >  * AppliedMicro X-Gene SOC Queue Manager/Traffic Manager driver
> > >  *
> > >  * Copyright (c) 2013 Applied Micro Circuits Corporation.
> > >  * Author: Ravi Patel <rapatel@....com>
> > >  *         Keyur Chudgar <kchudgar@....com>
> > >  *         Fushen Chen <fchen@....com>
> > >  *
> > >  * This program is free software; you can redistribute  it and/or modify it
> > >  * under  the terms of  the GNU General  Public License as published by the
> > >  * Free Software Foundation;  either version 2 of the  License, or (at your
> > >  * option) any later version.
> > >  *
> > >  * This program is distributed in the hope that it will be useful,
> > >  * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > >  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
> > >  * GNU General Public License for more details.
> > >  *
> > >  * You should have received a copy of the GNU General Public License
> > >  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
> > >  *
> > >  */
> > > 
> > > Can you please check if the error is false positive.
> > 
> > Josh?
> > 
> > Is the intent that the "copy of the GNU General Public License"
> > statement should also be removed?
> 
> While it does seem preferable to drop that paragraph, it isn't nearly as
> important as dropping the mailing address.  The match on "You should
> have received a copy" should probably be reduced to CHK level or
> dropped.

Maybe something like this, but maybe dropping the
"you should have received a copy" is ok too.

I did a few greps for various address patterns and
it seems using case insensitive matches and shorter
street types is better.

There are a few places where number and street name
are on different lines.  Oh well, nothing's perfect.
---
 scripts/checkpatch.pl | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 8f3aecd..b02d6ad 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1963,15 +1963,16 @@ sub process {
 		}
 
 # Check for FSF mailing addresses.
-		if ($rawline =~ /You should have received a copy/ ||
-		    $rawline =~ /write to the Free Software/ ||
-		    $rawline =~ /59 Temple Place/ ||
-		    $rawline =~ /51 Franklin Street/) {
+		if ($rawline =~ /\bYou should have received a copy/i ||
+		    $rawline =~ /\bwrite to the Free/i ||
+		    $rawline =~ /\b59\s+Temple\s+Pl/i ||
+		    $rawline =~ /\b51\s+Franklin\s+St/i) {
 			my $herevet = "$here\n" . cat_vet($rawline) . "\n";
 			my $msg_type = \&ERROR;
 			$msg_type = \&CHK if ($file);
+			$msg_type = \&CHK if ($rawline =~ /\bYou should have received a copy/i);
 			&{$msg_type}("FSF_MAILING_ADDRESS",
-				"Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
+				     "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
 		}
 
 # check for Kconfig help text having a real description


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists