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>] [day] [month] [year] [list]
Date:	Tue,  2 Aug 2016 18:41:25 +0800
From:	Baole Ni <baolex.ni@...el.com>
To:	arnd@...db.de, gregkh@...uxfoundation.org, malattia@...ux.it,
	hpa@...or.com, x86@...nel.org
Cc:	platform-driver-x86@...r.kernel.org, linux-kernel@...r.kernel.org,
	chuansheng.liu@...el.com, baolex.ni@...el.com, jslaby@...e.cz,
	peter@...sgaard.com, lee.jones@...aro.org
Subject: [PATCH 0110/1285] Replace numeric parameter like 0444 with macro

I find that the developers often just specified the numeric value
when calling a macro which is defined with a parameter for access permission.
As we know, these numeric value for access permission have had the corresponding macro,
and that using macro can improve the robustness and readability of the code,
thus, I suggest replacing the numeric parameter with the macro.

Signed-off-by: Chuansheng Liu <chuansheng.liu@...el.com>
Signed-off-by: Baole Ni <baolex.ni@...el.com>
---
 drivers/char/sonypi.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
index e496dae..0e206d1 100644
--- a/drivers/char/sonypi.c
+++ b/drivers/char/sonypi.c
@@ -70,36 +70,36 @@ MODULE_PARM_DESC(minor,
 		 "minor number of the misc device, default is -1 (automatic)");
 
 static int verbose;		/* = 0 */
-module_param(verbose, int, 0644);
+module_param(verbose, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(verbose, "be verbose, default is 0 (no)");
 
 static int fnkeyinit;		/* = 0 */
-module_param(fnkeyinit, int, 0444);
+module_param(fnkeyinit, int, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(fnkeyinit,
 		 "set this if your Fn keys do not generate any event");
 
 static int camera;		/* = 0 */
-module_param(camera, int, 0444);
+module_param(camera, int, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(camera,
 		 "set this if you have a MotionEye camera (PictureBook series)");
 
 static int compat;		/* = 0 */
-module_param(compat, int, 0444);
+module_param(compat, int, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(compat,
 		 "set this if you want to enable backward compatibility mode");
 
 static unsigned long mask = 0xffffffff;
-module_param(mask, ulong, 0644);
+module_param(mask, ulong, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(mask,
 		 "set this to the mask of event you want to enable (see doc)");
 
 static int useinput = 1;
-module_param(useinput, int, 0444);
+module_param(useinput, int, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(useinput,
 		 "set this if you would like sonypi to feed events to the input subsystem");
 
 static int check_ioport = 1;
-module_param(check_ioport, int, 0444);
+module_param(check_ioport, int, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(check_ioport,
 		 "set this to 0 if you think the automatic ioport check for sony-laptop is wrong");
 
-- 
2.9.2

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ