Selaa lähdekoodia

syslog: Provide stub check_syslog_permissions

When building without CONFIG_PRINTK, we need to provide a stub
check_syslog_permissions. As there is no way to turn on the
dmesg_restrict sysctl without CONFIG_PRINTK, return success.

Reported-by: Jim Davis <jim.epost@gmail.com>
Signed-off-by: Sebastian Schmidt <yath@yath.de>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Sebastian Schmidt 10 vuotta sitten
vanhempi
commit
069fb0b637
1 muutettua tiedostoa jossa 8 lisäystä ja 0 poistoa
  1. 8 0
      include/linux/syslog.h

+ 8 - 0
include/linux/syslog.h

@@ -48,6 +48,14 @@
 #define SYSLOG_FROM_PROC             1
 #define SYSLOG_FROM_PROC             1
 
 
 int do_syslog(int type, char __user *buf, int count, bool from_file);
 int do_syslog(int type, char __user *buf, int count, bool from_file);
+
+#ifdef CONFIG_PRINTK
 int check_syslog_permissions(int type, bool from_file);
 int check_syslog_permissions(int type, bool from_file);
+#else
+static inline int check_syslog_permissions(int type, bool from_file)
+{
+	return 0;
+}
+#endif
 
 
 #endif /* _LINUX_SYSLOG_H */
 #endif /* _LINUX_SYSLOG_H */