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
| ||
|
Message-ID: <1297203320.1748.14.camel@t41.thuisdomein> Date: Tue, 08 Feb 2011 23:15:08 +0100 From: Paul Bolle <pebolle@...cali.nl> To: linux-kernel@...r.kernel.org Cc: Kees Cook <kees.cook@...onical.com>, David Woodhouse <dwmw2@...radead.org>, Arnd Bergmann <arnd@...db.de>, mtk.manpages@...il.com Subject: [PATCH v2 1/2] Export linux/syslog.h Userspace programs (like util-linux' dmesg) still use magic numbers for the klogctl function (glibc's interface to the syslog system call). Exporting linux/syslog.h makes the more descriptive named constants available as a single reference for these values. Signed-off-by: Paul Bolle <pebolle@...cali.nl> --- Changes in v2: - dropped the "Syslog internals" comment; - dropped Kees' Singed-off-by, since the patch has changed. include/linux/Kbuild | 1 + include/linux/syslog.h | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/include/linux/Kbuild b/include/linux/Kbuild index b0ada6f..c80f55f 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild @@ -347,6 +347,7 @@ header-y += suspend_ioctls.h header-y += swab.h header-y += synclink.h header-y += sysctl.h +header-y += syslog.h header-y += taskstats.h header-y += tcp.h header-y += telephony.h diff --git a/include/linux/syslog.h b/include/linux/syslog.h index 3891139..69b85e6 100644 --- a/include/linux/syslog.h +++ b/include/linux/syslog.h @@ -1,6 +1,4 @@ -/* Syslog internals - * - * Copyright 2010 Canonical, Ltd. +/* Copyright 2010 Canonical, Ltd. * Author: Kees Cook <kees.cook@...onical.com> * * This program is free software; you can redistribute it and/or modify @@ -44,9 +42,11 @@ /* Return size of the log buffer */ #define SYSLOG_ACTION_SIZE_BUFFER 10 +#ifdef __KERNEL__ #define SYSLOG_FROM_CALL 0 #define SYSLOG_FROM_FILE 1 int do_syslog(int type, char __user *buf, int count, bool from_file); +#endif #endif /* _LINUX_SYSLOG_H */ -- 1.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists