allocfail.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* allocfail.c -- Test for libbacktrace library
  2. Copyright (C) 2018-2022 Free Software Foundation, Inc.
  3. Redistribution and use in source and binary forms, with or without
  4. modification, are permitted provided that the following conditions are
  5. met:
  6. (1) Redistributions of source code must retain the above copyright
  7. notice, this list of conditions and the following disclaimer.
  8. (2) Redistributions in binary form must reproduce the above copyright
  9. notice, this list of conditions and the following disclaimer in
  10. the documentation and/or other materials provided with the
  11. distribution.
  12. (3) The name of the author may not be used to
  13. endorse or promote products derived from this software without
  14. specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  16. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  17. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18. DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  19. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  20. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  23. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  24. IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE. */
  26. #include <assert.h>
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #include <unistd.h>
  31. #include "filenames.h"
  32. #include "backtrace.h"
  33. #include "backtrace-supported.h"
  34. #include "testlib.h"
  35. extern uint64_t get_nr_allocs (void);
  36. extern void set_fail_at_alloc (uint64_t);
  37. extern int at_fail_alloc_p (void);
  38. static int test1 (void) __attribute__ ((noinline, unused));
  39. static int f2 (int) __attribute__ ((noinline));
  40. static int f3 (int, int) __attribute__ ((noinline));
  41. static unsigned callback_errors = 0;
  42. static void
  43. error_callback_full (void *vdata ATTRIBUTE_UNUSED,
  44. const char *msg ATTRIBUTE_UNUSED,
  45. int errnum ATTRIBUTE_UNUSED)
  46. {
  47. if (at_fail_alloc_p ())
  48. {
  49. set_fail_at_alloc (0);
  50. return;
  51. }
  52. callback_errors++;
  53. }
  54. static int
  55. callback_full (void *vdata ATTRIBUTE_UNUSED, uintptr_t pc ATTRIBUTE_UNUSED,
  56. const char *filename ATTRIBUTE_UNUSED,
  57. int lineno ATTRIBUTE_UNUSED,
  58. const char *function ATTRIBUTE_UNUSED)
  59. {
  60. return 0;
  61. }
  62. static int
  63. test1 (void)
  64. {
  65. return f2 (__LINE__) + 1;
  66. }
  67. static int
  68. f2 (int f1line)
  69. {
  70. return f3 (f1line, __LINE__) + 2;
  71. }
  72. static int
  73. f3 (int f1line ATTRIBUTE_UNUSED, int f2line ATTRIBUTE_UNUSED)
  74. {
  75. int i;
  76. i = backtrace_full (state, 0, callback_full, error_callback_full, NULL);
  77. if (i != 0)
  78. {
  79. fprintf (stderr, "test1: unexpected return value %d\n", i);
  80. ++failures;
  81. }
  82. if (callback_errors)
  83. ++failures;
  84. return failures;
  85. }
  86. /* Run all the tests. */
  87. int
  88. main (int argc, char **argv)
  89. {
  90. uint64_t fail_at = 0;
  91. if (argc == 2)
  92. {
  93. fail_at = atoi (argv[1]);
  94. set_fail_at_alloc (fail_at);
  95. }
  96. state = backtrace_create_state (argv[0], BACKTRACE_SUPPORTS_THREADS,
  97. error_callback_full, NULL);
  98. if (state == NULL)
  99. exit (failures ? EXIT_FAILURE : EXIT_SUCCESS);
  100. #if BACKTRACE_SUPPORTED
  101. test1 ();
  102. #endif
  103. if (argc == 1)
  104. fprintf (stderr, "%llu\n", (long long unsigned) get_nr_allocs ());
  105. exit (failures ? EXIT_FAILURE : EXIT_SUCCESS);
  106. }