From: Joe Perches <joe@perches.com>
To: Nicholas Mc Guire <hofrat@osadl.org>
Cc: Andy Whitcroft <apw@canonical.com>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] checkpatch: catch all world writable debugfs_create_file
Date: Fri, 13 Mar 2015 13:16:37 -0700 [thread overview]
Message-ID: <1426277797.11459.27.camel@perches.com> (raw)
In-Reply-To: <1426274602-21196-1-git-send-email-hofrat@osadl.org>
On Fri, 2015-03-13 at 15:23 -0400, Nicholas Mc Guire wrote:
> Currently checkpatch will fuss if one uses world writable settings in debugfs
> files by passing S_IWUGO but not when passing S_IWOTH, S_IRWXUGO or S_IALLUGO.
> This patch extends the check to catches all cases exporting world writable
> files
Hi Nicholas
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> @@ -5356,8 +5356,14 @@ sub process {
> }
> }
>
> - if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
> - $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
> + if ($line =~ /debugfs_create_file.*S_IWOTH/ ||
> + $line =~ /debugfs_create_file.*S_IWUGO/ ||
> + $line =~ /debugfs_create_file.*S_IRWXUGO/ ||
> + $line =~ /debugfs_create_file.*S_IALLUGO/ ||
> + $line =~ /DEVICE_ATTR.*S_IWOTH/ ||
> + $line =~ /DEVICE_ATTR.*S_IWUGO/ ||
> + $line =~ /DEVICE_ATTR.*S_IRWXUGO/ ||
> + $line =~ /DEVICE_ATTR.*S_IALLUGO/ ) {
That seems sensible, but my preference would be to use
a variable and extend it to find octal values like:
$world_writable = qr{S_IWUGO|S_IWOTH|S_IWUGO|S_URWXUGO|S_IALLUGO|0[0-7][0-7][2367]};
if ($line =~ /debugfs_create_file.*\b$world_writable\b/
$line =~ /DEVICE_ATTR.*\b$world_writable\b/)
> WARN("EXPORTED_WORLD_WRITABLE",
> "Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
> }
next prev parent reply other threads:[~2015-03-13 20:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-13 19:23 [PATCH] checkpatch: catch all world writable debugfs_create_file Nicholas Mc Guire
2015-03-13 20:16 ` Joe Perches [this message]
2015-03-13 20:42 ` Joe Perches
2015-03-13 23:43 ` [PATCH] checkpatch: match more world writable permissions Joe Perches
2015-03-14 7:35 ` Nicholas Mc Guire
2015-03-14 14:32 ` Guenter Roeck
2015-03-14 15:42 ` Joe Perches
2015-03-17 23:17 ` Andrew Morton
2015-03-18 5:56 ` Joe Perches
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1426277797.11459.27.camel@perches.com \
--to=joe@perches.com \
--cc=apw@canonical.com \
--cc=hofrat@osadl.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox