err.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * err.c
  3. *
  4. * error status reporting functions
  5. *
  6. * David A. McGrew
  7. * Cisco Systems, Inc.
  8. */
  9. /*
  10. *
  11. * Copyright(c) 2001-2017 Cisco Systems, Inc.
  12. * All rights reserved.
  13. *
  14. * Redistribution and use in source and binary forms, with or without
  15. * modification, are permitted provided that the following conditions
  16. * are met:
  17. *
  18. * Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. *
  21. * Redistributions in binary form must reproduce the above
  22. * copyright notice, this list of conditions and the following
  23. * disclaimer in the documentation and/or other materials provided
  24. * with the distribution.
  25. *
  26. * Neither the name of the Cisco Systems, Inc. nor the names of its
  27. * contributors may be used to endorse or promote products derived
  28. * from this software without specific prior written permission.
  29. *
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  31. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  32. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  33. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  34. * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  35. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  36. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  37. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  38. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  41. * OF THE POSSIBILITY OF SUCH DAMAGE.
  42. *
  43. */
  44. #ifdef HAVE_CONFIG_H
  45. #include <config.h>
  46. #endif
  47. #include "err.h"
  48. #include "datatypes.h"
  49. #include <string.h>
  50. /* srtp_err_file is the FILE to which errors are reported */
  51. static FILE *srtp_err_file = NULL;
  52. srtp_err_status_t srtp_err_reporting_init(void)
  53. {
  54. #ifdef ERR_REPORTING_STDOUT
  55. srtp_err_file = stdout;
  56. #elif defined(ERR_REPORTING_FILE)
  57. /* open file for error reporting */
  58. srtp_err_file = fopen(ERR_REPORTING_FILE, "w");
  59. if (srtp_err_file == NULL) {
  60. return srtp_err_status_init_fail;
  61. }
  62. #endif
  63. return srtp_err_status_ok;
  64. }
  65. static srtp_err_report_handler_func_t *srtp_err_report_handler = NULL;
  66. srtp_err_status_t srtp_install_err_report_handler(
  67. srtp_err_report_handler_func_t func)
  68. {
  69. srtp_err_report_handler = func;
  70. return srtp_err_status_ok;
  71. }
  72. void srtp_err_report(srtp_err_reporting_level_t level, const char *format, ...)
  73. {
  74. char msg[512];
  75. va_list args;
  76. if (srtp_err_file != NULL) {
  77. va_start(args, format);
  78. vfprintf(srtp_err_file, format, args);
  79. va_end(args);
  80. }
  81. if (srtp_err_report_handler != NULL) {
  82. va_start(args, format);
  83. if (vsnprintf(msg, sizeof(msg), format, args) > 0) {
  84. /* strip trailing \n, callback should not have one */
  85. size_t l = strlen(msg);
  86. if (l && msg[l - 1] == '\n') {
  87. msg[l - 1] = '\0';
  88. }
  89. srtp_err_report_handler(level, msg);
  90. /*
  91. * NOTE, need to be carefull, there is a potential that
  92. * octet_string_set_to_zero() could
  93. * call srtp_err_report() in the future, leading to recursion
  94. */
  95. octet_string_set_to_zero(msg, sizeof(msg));
  96. }
  97. va_end(args);
  98. }
  99. }