php_syslog.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 7 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 2017-2018 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Philip Prindeville <philipp@redfish-solutions.com> |
  16. +----------------------------------------------------------------------+
  17. */
  18. #include <stdio.h>
  19. #include <string.h>
  20. #include <assert.h>
  21. #include <stdlib.h>
  22. #include "php.h"
  23. #include "php_syslog.h"
  24. #include "zend.h"
  25. #include "zend_smart_string.h"
  26. /*
  27. * The SCO OpenServer 5 Development System (not the UDK)
  28. * defines syslog to std_syslog.
  29. */
  30. #ifdef HAVE_STD_SYSLOG
  31. #define syslog std_syslog
  32. #endif
  33. #ifdef PHP_WIN32
  34. PHPAPI void php_syslog(int priority, const char *format, ...) /* {{{ */
  35. {
  36. va_list args;
  37. /*
  38. * don't rely on openlog() being called by syslog() if it's
  39. * not already been done; call it ourselves and pass the
  40. * correct parameters!
  41. */
  42. if (!PG(have_called_openlog)) {
  43. php_openlog(PG(syslog_ident), 0, PG(syslog_facility));
  44. }
  45. va_start(args, format);
  46. vsyslog(priority, format, args);
  47. va_end(args);
  48. }
  49. /* }}} */
  50. #else
  51. PHPAPI void php_syslog(int priority, const char *format, ...) /* {{{ */
  52. {
  53. const char *ptr;
  54. unsigned char c;
  55. smart_string fbuf = {0};
  56. smart_string sbuf = {0};
  57. va_list args;
  58. /*
  59. * don't rely on openlog() being called by syslog() if it's
  60. * not already been done; call it ourselves and pass the
  61. * correct parameters!
  62. */
  63. if (!PG(have_called_openlog)) {
  64. php_openlog(PG(syslog_ident), 0, PG(syslog_facility));
  65. }
  66. va_start(args, format);
  67. zend_printf_to_smart_string(&fbuf, format, args);
  68. smart_string_0(&fbuf);
  69. va_end(args);
  70. if (PG(syslog_filter) == PHP_SYSLOG_FILTER_RAW) {
  71. /* Just send it directly to the syslog */
  72. syslog(priority, "%.*s", (int)fbuf.len, fbuf.c);
  73. smart_string_free(&fbuf);
  74. return;
  75. }
  76. for (ptr = fbuf.c; ; ++ptr) {
  77. c = *ptr;
  78. if (c == '\0') {
  79. syslog(priority, "%.*s", (int)sbuf.len, sbuf.c);
  80. break;
  81. }
  82. /* check for NVT ASCII only unless test disabled */
  83. if (((0x20 <= c) && (c <= 0x7e)))
  84. smart_string_appendc(&sbuf, c);
  85. else if ((c >= 0x80) && (PG(syslog_filter) != PHP_SYSLOG_FILTER_ASCII))
  86. smart_string_appendc(&sbuf, c);
  87. else if (c == '\n') {
  88. syslog(priority, "%.*s", (int)sbuf.len, sbuf.c);
  89. smart_string_reset(&sbuf);
  90. } else if ((c < 0x20) && (PG(syslog_filter) == PHP_SYSLOG_FILTER_ALL))
  91. smart_string_appendc(&sbuf, c);
  92. else {
  93. const char xdigits[] = "0123456789abcdef";
  94. smart_string_appendl(&sbuf, "\\x", 2);
  95. smart_string_appendc(&sbuf, xdigits[(c / 0x10)]);
  96. c &= 0x0f;
  97. smart_string_appendc(&sbuf, xdigits[c]);
  98. }
  99. }
  100. smart_string_free(&fbuf);
  101. smart_string_free(&sbuf);
  102. }
  103. /* }}} */
  104. #endif
  105. /*
  106. * Local variables:
  107. * tab-width: 4
  108. * c-basic-offset: 4
  109. * End:
  110. * vim600: sw=4 ts=4 fdm=marker
  111. * vim<600: sw=4 ts=4
  112. */