checkpatch: check for world-writeable sysfs/debugfs files
authorDave Jones <[email protected]>
Thu, 13 Jan 2011 00:59:59 +0000 (16:59 -0800)
committerLinus Torvalds <[email protected]>
Thu, 13 Jan 2011 16:03:11 +0000 (08:03 -0800)
Exporting world writable sysfs/debugfs files is usually a bad thing.  Warn
about it.

Signed-off-by: Dave Jones <[email protected]>
Cc: Andy Whitcroft <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
scripts/checkpatch.pl

index ddd27d8e6312d725b47ee75c854816145c7e590c..fd9560ea976cdea913340315cc9bf9b098962643 100755 (executable)
@@ -2897,6 +2897,11 @@ sub process {
                                ERROR("lockdep_no_validate class is reserved for device->mutex.\n" . $herecurr);
                        }
                }
+
+               if ($line =~ /debugfs_create_file.*S_IWUGO/ ||
+                   $line =~ /DEVICE_ATTR.*S_IWUGO/ ) {
+                       WARN("Exporting world writable files is usually an error. Consider more restrictive permissions.\n" . $herecurr);
+               }
        }
 
        # If we have no input at all, then there is nothing to report on