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:   Wed, 31 Aug 2016 10:57:55 -0700
From:   Greg <gvrose8192@...il.com>
To:     Joe Perches <joe@...ches.com>
Cc:     Andrew Morton <akpm@...ux-foundation.org>,
        Andy Whitcroft <apw@...onical.com>,
        Dan Carpenter <dan.carpenter@...cle.com>,
        linux-kernel@...r.kernel.org
Subject: Re: [PATCH] checkpatch: Don't test for prefer ether_addr_<foo>

On Wed, 2016-08-31 at 10:48 -0700, Joe Perches wrote:
> < sigh > Comment these tests out.
> 
> These are just too enticing to people that don't verify that
> both source and dest addresses really must be __aligned(2).
> 
> It helps make Dan Carpenter happy too.

Having just been snagged by this it will make me happy too.

- Greg

> 
> Signed-off-by: Joe Perches <joe@...ches.com>
> cc: Dan Carpenter <dan.carpenter@...cle.com>
> ---
>  scripts/checkpatch.pl | 70 +++++++++++++++++++++++++--------------------------
>  1 file changed, 35 insertions(+), 35 deletions(-)
> 
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index bdc12d9..3f7245c 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -5568,46 +5568,46 @@ sub process {
>  		}
>  
>  # Check for memcpy(foo, bar, ETH_ALEN) that could be ether_addr_copy(foo, bar)
> -		if ($^V && $^V ge 5.10.0 &&
> -		    defined $stat &&
> -		    $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> -			if (WARN("PREFER_ETHER_ADDR_COPY",
> -				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
> -			    $fix) {
> -				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
> -			}
> -		}
> +#		if ($^V && $^V ge 5.10.0 &&
> +#		    defined $stat &&
> +#		    $stat =~ /^\+(?:.*?)\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> +#			if (WARN("PREFER_ETHER_ADDR_COPY",
> +#				 "Prefer ether_addr_copy() over memcpy() if the Ethernet addresses are __aligned(2)\n" . "$here\n$stat\n") &&
> +#			    $fix) {
> +#				$fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/;
> +#			}
> +#		}
>  
>  # Check for memcmp(foo, bar, ETH_ALEN) that could be ether_addr_equal*(foo, bar)
> -		if ($^V && $^V ge 5.10.0 &&
> -		    defined $stat &&
> -		    $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> -			WARN("PREFER_ETHER_ADDR_EQUAL",
> -			     "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
> -		}
> +#		if ($^V && $^V ge 5.10.0 &&
> +#		    defined $stat &&
> +#		    $stat =~ /^\+(?:.*?)\bmemcmp\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> +#			WARN("PREFER_ETHER_ADDR_EQUAL",
> +#			     "Prefer ether_addr_equal() or ether_addr_equal_unaligned() over memcmp()\n" . "$here\n$stat\n")
> +#		}
>  
>  # check for memset(foo, 0x0, ETH_ALEN) that could be eth_zero_addr
>  # check for memset(foo, 0xFF, ETH_ALEN) that could be eth_broadcast_addr
> -		if ($^V && $^V ge 5.10.0 &&
> -		    defined $stat &&
> -		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> -
> -			my $ms_val = $7;
> -
> -			if ($ms_val =~ /^(?:0x|)0+$/i) {
> -				if (WARN("PREFER_ETH_ZERO_ADDR",
> -					 "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
> -				    $fix) {
> -					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
> -				}
> -			} elsif ($ms_val =~ /^(?:0xff|255)$/i) {
> -				if (WARN("PREFER_ETH_BROADCAST_ADDR",
> -					 "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
> -				    $fix) {
> -					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
> -				}
> -			}
> -		}
> +#		if ($^V && $^V ge 5.10.0 &&
> +#		    defined $stat &&
> +#		    $stat =~ /^\+(?:.*?)\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/) {
> +#
> +#			my $ms_val = $7;
> +#
> +#			if ($ms_val =~ /^(?:0x|)0+$/i) {
> +#				if (WARN("PREFER_ETH_ZERO_ADDR",
> +#					 "Prefer eth_zero_addr over memset()\n" . "$here\n$stat\n") &&
> +#				    $fix) {
> +#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_zero_addr($2)/;
> +#				}
> +#			} elsif ($ms_val =~ /^(?:0xff|255)$/i) {
> +#				if (WARN("PREFER_ETH_BROADCAST_ADDR",
> +#					 "Prefer eth_broadcast_addr() over memset()\n" . "$here\n$stat\n") &&
> +#				    $fix) {
> +#					$fixed[$fixlinenr] =~ s/\bmemset\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*,\s*ETH_ALEN\s*\)/eth_broadcast_addr($2)/;
> +#				}
> +#			}
> +#		}
>  
>  # typecasts on min/max could be min_t/max_t
>  		if ($^V && $^V ge 5.10.0 &&


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ