1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
/*-
* Copyright (c) 2006 Verdens Gang AS
* Copyright (c) 2006-2022 Varnish Software AS
* All rights reserved.
*
* Author: Poul-Henning Kamp <phk@phk.freebsd.dk>
* Author: Guillaume Quintard <guillaume@varnish-software.com>
* Author: Dridi Boukelmoune <dridi.boukelmoune@gmail.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* We tend to print back-traces when there is a fatal error, so the VBT code
* should avoid assertions.
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#ifdef WITH_UNWIND
# include <libunwind.h>
#endif
#ifdef HAVE_EXECINFO_H
# include <execinfo.h>
#endif
#include "vdef.h"
#include "vas.h"
#include "vbt.h"
#include "vsb.h"
#include "miniobj.h"
#ifdef WITH_UNWIND
static int
vbt_unwind(struct vsb *vsb)
{
unw_cursor_t cursor; unw_context_t uc;
unw_word_t ip, sp;
unw_word_t offp;
char fname[1024];
const char *sep;
int ret;
ret = unw_getcontext(&uc);
if (ret != 0) {
VSB_printf(vsb, "Backtrace not available "
"(unw_getcontext returned %d)\n", ret);
return (-1);
}
ret = unw_init_local(&cursor, &uc);
if (ret != 0) {
VSB_printf(vsb, "Backtrace not available "
"(unw_init_local returned %d)\n", ret);
return (-1);
}
while (unw_step(&cursor) > 0) {
fname[0] = '\0';
sep = "";
if (!unw_get_reg(&cursor, UNW_REG_IP, &ip)) {
VSB_printf(vsb, "ip=0x%lx", (long) ip);
sep = " ";
}
if (!unw_get_reg(&cursor, UNW_REG_SP, &sp)) {
VSB_printf(vsb, "%ssp=0x%lx", sep, (long) sp);
sep = " ";
}
if (!unw_get_proc_name(&cursor, fname, sizeof(fname), &offp)) {
VSB_printf(vsb, "%s<%s+0x%lx>",
sep, fname[0] ? fname : "<unknown>", (long)offp);
}
VSB_putc(vsb, '\n');
}
return (0);
}
#endif
#ifdef HAVE_EXECINFO_H
# define BACKTRACE_LEVELS 20
static void
vbt_execinfo(struct vsb *vsb)
{
void *array[BACKTRACE_LEVELS];
size_t size;
size_t i;
char **strings;
char *p;
char buf[32];
size = backtrace (array, BACKTRACE_LEVELS);
if (size > BACKTRACE_LEVELS) {
VSB_printf(vsb, "Backtrace not available (ret=%zu)\n", size);
return;
}
for (i = 0; i < size; i++) {
bprintf(buf, "%p", array[i]);
VSB_printf(vsb, "%s: ", buf);
strings = backtrace_symbols(&array[i], 1);
if (strings == NULL || strings[0] == NULL) {
VSB_cat(vsb, "(?)");
} else {
p = strings[0];
if (!memcmp(buf, p, strlen(buf))) {
p += strlen(buf);
if (*p == ':')
p++;
while (*p == ' ')
p++;
}
VSB_cat(vsb, p);
}
VSB_cat(vsb, "\n");
free(strings);
}
}
#endif
void
VBT_format(struct vsb *vsb)
{
if (!VALID_OBJ(vsb, VSB_MAGIC))
return;
#ifdef WITH_UNWIND
if (!vbt_unwind(vsb))
return;
# ifdef HAVE_EXECINFO_H
VSB_cat(vsb, "Falling back to execinfo backtrace\n");
# endif
#endif
#ifdef HAVE_EXECINFO_H
vbt_execinfo(vsb);
#endif
}
|