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] [day] [month] [year] [list]
Message-ID: <20240820175747.GA1741066@thelio-3990X>
Date: Tue, 20 Aug 2024 10:57:47 -0700
From: Nathan Chancellor <nathan@...nel.org>
To: David Lechner <dlechner@...libre.com>,
	Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: linux-kbuild@...r.kernel.org, Masahiro Yamada <masahiroy@...nel.org>,
	Nicolas Schier <nicolas@...sle.eu>,
	Mauro Carvalho Chehab <mchehab@...nel.org>,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] scripts/get_abi.pl: more strict matching of [XYZ]

Hi David,

On Tue, Aug 20, 2024 at 11:40:18AM -0500, David Lechner wrote:
> When using `scripts/get_abi.pl undefined --search-string=iio` to try to
> find undocumented ABI's in the IIO subsystem, no matches were found.
> 
> This was due to the fact that we have documented a directory naming
> pattern:
> 
> 	What: /sys/bus/iio/devices/iio:deviceX
> 
> which gets translated to the regex
> 
> 	/sys/.*/iio\:device.*
> 
> which matches everything under every iio:device directory, causing any
> attributes below this directory to incorrectly be filtered out as
> already documented.
> 
> This patch makes the matching more strict by changing the replacement
> for [XYZ] from .* to [^/]* so that we don't match the directory
> separator. This way documenting directories won't filter out everything
> contained in the directory as already being documented.
> 
> Signed-off-by: David Lechner <dlechner@...libre.com>
> ---
> get_maintainers.pl didn't pick up any matches for this patch, so I guess
> this would go through the kbuild tree? (Since MAINTAINERS says:
> "KERNEL BUILD + files below scripts/ (unless maintained elsewhere)")

I don't have any comments on the patch itself since I am unfamiliar with
this script and its purpose but looking at the git history, it seems
like Greg has merged the vast majority of the patches to this script in
the past:

$ git log --format='%cn' --no-merges scripts/get_abi.pl | sort | uniq -c
     53 Greg Kroah-Hartman
      9 Jonathan Corbet
      1 Masahiro Yamada

So adding him to take a look.

> ---
>  scripts/get_abi.pl | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/scripts/get_abi.pl b/scripts/get_abi.pl
> index de1c0354b50c..f65158694852 100755
> --- a/scripts/get_abi.pl
> +++ b/scripts/get_abi.pl
> @@ -867,7 +867,7 @@ sub undefined_symbols {
>  			$what =~ s/\{[^\}]+\}/.*/g;
>  			$what =~ s/\[[^\]]+\]/.*/g;
>  
> -			$what =~ s/[XYZ]/.*/g;
> +			$what =~ s/[XYZ]/[^\/]*/g;
>  
>  			# Recover [0-9] type of patterns
>  			$what =~ s/\xf4/[/g;
> 
> ---
> base-commit: 521b1e7f4cf0b05a47995b103596978224b380a8
> change-id: 20240820-scripts-fix-get_abi-xyz-0ab0b9b62719
> 
> Best regards,
> -- 
> David Lechner <dlechner@...libre.com>
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ