zend_accelerator_debug.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Zend OPcache |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1998-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. | Authors: Andi Gutmans <andi@php.net> |
  16. | Zeev Suraski <zeev@php.net> |
  17. | Stanislav Malyshev <stas@zend.com> |
  18. | Dmitry Stogov <dmitry@php.net> |
  19. +----------------------------------------------------------------------+
  20. */
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23. #include <stdarg.h>
  24. #include <time.h>
  25. #ifdef ZEND_WIN32
  26. # include <process.h>
  27. #endif
  28. #include "ZendAccelerator.h"
  29. void zend_accel_error(int type, const char *format, ...)
  30. {
  31. va_list args;
  32. time_t timestamp;
  33. char *time_string;
  34. FILE * fLog = NULL;
  35. if (type <= ZCG(accel_directives).log_verbosity_level) {
  36. timestamp = time(NULL);
  37. time_string = asctime(localtime(&timestamp));
  38. time_string[24] = 0;
  39. if (!ZCG(accel_directives).error_log ||
  40. !*ZCG(accel_directives).error_log ||
  41. strcmp(ZCG(accel_directives).error_log, "stderr") == 0) {
  42. fLog = stderr;
  43. } else {
  44. fLog = fopen(ZCG(accel_directives).error_log, "a+");
  45. if (!fLog) {
  46. fLog = stderr;
  47. }
  48. }
  49. #ifdef ZTS
  50. fprintf(fLog, "%s (" ZEND_ULONG_FMT "): ", time_string, (zend_ulong)tsrm_thread_id());
  51. #else
  52. fprintf(fLog, "%s (%d): ", time_string, getpid());
  53. #endif
  54. switch (type) {
  55. case ACCEL_LOG_FATAL:
  56. fprintf(fLog, "Fatal Error ");
  57. break;
  58. case ACCEL_LOG_ERROR:
  59. fprintf(fLog, "Error ");
  60. break;
  61. case ACCEL_LOG_WARNING:
  62. fprintf(fLog, "Warning ");
  63. break;
  64. case ACCEL_LOG_INFO:
  65. fprintf(fLog, "Message ");
  66. break;
  67. case ACCEL_LOG_DEBUG:
  68. fprintf(fLog, "Debug ");
  69. break;
  70. }
  71. va_start(args, format);
  72. vfprintf(fLog, format, args);
  73. va_end(args);
  74. fprintf(fLog, "\n");
  75. fflush(fLog);
  76. if (fLog != stderr) {
  77. fclose(fLog);
  78. }
  79. }
  80. /* perform error handling even without logging the error */
  81. switch (type) {
  82. case ACCEL_LOG_ERROR:
  83. zend_bailout();
  84. break;
  85. case ACCEL_LOG_FATAL:
  86. exit(-2);
  87. break;
  88. }
  89. }