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]
Message-ID: <fe35e8a3-f2bd-5796-07a9-bdc3b6cee5d1@gmx.de>
Date:   Tue, 4 Jul 2017 23:08:23 +0200
From:   Heinrich Schuchardt <xypron.glpk@....de>
To:     Joe Perches <joe@...ches.com>, Andy Whitcroft <apw@...onical.com>
Cc:     linux-kernel@...r.kernel.org, u-boot@...ts.denx.de
Subject: Re: [BUG] checkpatch: false positive storage class location

On 07/04/2017 10:44 PM, Joe Perches wrote:
> On Tue, 2017-07-04 at 21:29 +0200, Heinrich Schuchardt wrote:
>> The U-Boot project uses the same scripts/checkpatch.pl as the Linux
>> kernel. I ran upon the problem below when working on U-Boot. But I
>> guess it should be fixed in the Linux upstream.
>>
>> Running checkpatch for this email produces
>> WARNING: storage class should be at the beginning of the declaration
>>
>> This relates to the parameter with asmlinkage.
>>
>> asmlinkage is at the start of the parameter so I think this a false
>> positive.
>>
>> Signed-off-by: Heinrich.Schuchardt <xypron.glpk@....de>
>> ---
>>
>>  cmd/bootefi.c | 22 +++++++++++++++++-----
>>  1 file changed, 17 insertions(+), 5 deletions(-)
>>
>> diff --git a/cmd/bootefi.c b/cmd/bootefi.c
>> index 771300ee94..4df468307c 100644
>> --- a/cmd/bootefi.c
>> +++ b/cmd/bootefi.c
>> @@ -147,6 +147,12 @@ static void *copy_fdt(void *fdt)
>>  	return new_fdt;
>>  }
>>  
>> +static ulong efi_do_enter(void *image_handle,
>> +		struct efi_system_table *st, asmlinkage ulong (*entry)(
>> +		void *image_handle, struct efi_system_table *st))
>> +{
>> +	return 0;
>> +}
>> +
>>  /*
>>  end
>>  */
> 
> Perhaps this?
> -------------------------
> 
> Allow storage class after comma for function pointers.
> 
> Miscellanea:
> 
> o Add missing semicolon after WARN statement
> ---
>  scripts/checkpatch.pl | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 43171ed88115..c7490ab48ce1 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -5577,9 +5577,10 @@ sub process {
>  		}
>  
>  # Check that the storage class is at the beginning of a declaration
> -		if ($line =~ /\b$Storage\b/ && $line !~ /^.\s*$Storage\b/) {
> +		if ($line =~ /\b$Storage\b/ &&
> +		    $line !~ /^.\s*(?:.*,\s*)?$Storage\b/) {
>  			WARN("STORAGE_CLASS",
> -			     "storage class should be at the beginning of the declaration\n" . $herecurr)
> +			     "storage class should be at the beginning of the declaration\n" . $herecurr);
>  		}
>  
>  # check the location of the inline attribute, that it is between
> 

Thank you. This works for all cases but

+static ulong efi_do_enter(ulong asmlinkage (*entry)(void *image_handle,
+                          struct efi_system_table *st))
+{
+       return 0;
+}
+

Here I get
WARNING: space prohibited between function name and open parenthesis '('
where I would have expected
WARNING: storage class should be at the beginning of the declaration

Best regards

Heinrich Schuchardt

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ