syslog.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Syslog internals
  2. *
  3. * Copyright 2010 Canonical, Ltd.
  4. * Author: Kees Cook <kees.cook@canonical.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2, or (at your option)
  9. * any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; see the file COPYING. If not, write to
  18. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20. #ifndef _LINUX_SYSLOG_H
  21. #define _LINUX_SYSLOG_H
  22. /* Close the log. Currently a NOP. */
  23. #define SYSLOG_ACTION_CLOSE 0
  24. /* Open the log. Currently a NOP. */
  25. #define SYSLOG_ACTION_OPEN 1
  26. /* Read from the log. */
  27. #define SYSLOG_ACTION_READ 2
  28. /* Read all messages remaining in the ring buffer. */
  29. #define SYSLOG_ACTION_READ_ALL 3
  30. /* Read and clear all messages remaining in the ring buffer */
  31. #define SYSLOG_ACTION_READ_CLEAR 4
  32. /* Clear ring buffer. */
  33. #define SYSLOG_ACTION_CLEAR 5
  34. /* Disable printk's to console */
  35. #define SYSLOG_ACTION_CONSOLE_OFF 6
  36. /* Enable printk's to console */
  37. #define SYSLOG_ACTION_CONSOLE_ON 7
  38. /* Set level of messages printed to console */
  39. #define SYSLOG_ACTION_CONSOLE_LEVEL 8
  40. /* Return number of unread characters in the log buffer */
  41. #define SYSLOG_ACTION_SIZE_UNREAD 9
  42. /* Return size of the log buffer */
  43. #define SYSLOG_ACTION_SIZE_BUFFER 10
  44. #define SYSLOG_FROM_READER 0
  45. #define SYSLOG_FROM_PROC 1
  46. int do_syslog(int type, char __user *buf, int count, int source);
  47. #ifdef CONFIG_PRINTK
  48. int check_syslog_permissions(int type, int source);
  49. #else
  50. static inline int check_syslog_permissions(int type, int source)
  51. {
  52. return 0;
  53. }
  54. #endif
  55. #endif /* _LINUX_SYSLOG_H */