mirror of
https://github.com/MariaDB/server.git
synced 2025-04-18 21:44:20 +03:00
Resolving a stacktrace including functions in dynamic libraries requires us to look inside the libraries for the symbols. Addr2line needs to be started with the correct binary for each address on the stack. To do this, figure out which library it is using dladdr, then if the addr2line binary was started with a different binary, fork it again with the correct one. We only have one addr2line process running at any point during the stacktrace resolving step. The maximum number of forks for addr2line should generally be around 6. One for server stacktrace code, one for plugin code, one when going back into server code, one for pthread library, one for libc, one for the _start function in the server. More can come up if plugin calls server function which goes back to a plugin, etc.
238 lines
5.2 KiB
C
238 lines
5.2 KiB
C
/* Copyright (C) 2011 Monty Program Ab
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
|
|
|
#include "mysys_priv.h"
|
|
#include <m_string.h>
|
|
#include <my_sys.h>
|
|
#include <my_stacktrace.h>
|
|
|
|
/**
|
|
strip the path, leave the file name and the last dirname
|
|
*/
|
|
static const char *strip_path(const char *s) __attribute__((unused));
|
|
static const char *strip_path(const char *s)
|
|
{
|
|
const char *prev, *last;
|
|
for(prev= last= s; *s; s++)
|
|
if (*s == '/' || *s == '\\')
|
|
{
|
|
prev= last;
|
|
last= s + 1;
|
|
}
|
|
return prev;
|
|
}
|
|
|
|
/*
|
|
The following is very much single-threaded code and it's only supposed
|
|
to be used on shutdown or for a crash report
|
|
Or the caller should take care and use mutexes.
|
|
|
|
Also it does not free any its memory. For the same reason -
|
|
it's only used for crash reports or on shutdown when we already
|
|
have a memory leak.
|
|
*/
|
|
|
|
#ifdef HAVE_BFD_H
|
|
#include <bfd.h>
|
|
static bfd *bfdh= 0;
|
|
static asymbol **symtable= 0;
|
|
|
|
/**
|
|
finds a file name, a line number, and a function name corresponding to addr.
|
|
|
|
the function name is demangled.
|
|
the file name is stripped of its path, only the two last components are kept
|
|
the resolving logic is mostly based on addr2line of binutils-2.17
|
|
|
|
@return 0 on success, 1 on failure
|
|
*/
|
|
int my_addr_resolve(void *ptr, my_addr_loc *loc)
|
|
{
|
|
bfd_vma addr= (intptr)ptr;
|
|
asection *sec;
|
|
|
|
for (sec= bfdh->sections; sec; sec= sec->next)
|
|
{
|
|
bfd_vma start;
|
|
|
|
if ((bfd_get_section_flags(bfdh, sec) & SEC_ALLOC) == 0)
|
|
continue;
|
|
|
|
start = bfd_get_section_vma(bfdh, sec);
|
|
if (addr < start || addr >= start + bfd_get_section_size(sec))
|
|
continue;
|
|
|
|
if (bfd_find_nearest_line(bfdh, sec, symtable, addr - start,
|
|
&loc->file, &loc->func, &loc->line))
|
|
{
|
|
if (loc->file)
|
|
loc->file= strip_path(loc->file);
|
|
else
|
|
loc->file= "";
|
|
|
|
if (loc->func)
|
|
{
|
|
const char *str= bfd_demangle(bfdh, loc->func, 3);
|
|
if (str)
|
|
loc->func= str;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
const char *my_addr_resolve_init()
|
|
{
|
|
if (!bfdh)
|
|
{
|
|
uint unused;
|
|
char **matching;
|
|
|
|
bfdh= bfd_openr(my_progname, NULL);
|
|
if (!bfdh)
|
|
goto err;
|
|
|
|
if (bfd_check_format(bfdh, bfd_archive))
|
|
goto err;
|
|
if (!bfd_check_format_matches (bfdh, bfd_object, &matching))
|
|
goto err;
|
|
|
|
if (bfd_read_minisymbols(bfdh, FALSE, (void *)&symtable, &unused) < 0)
|
|
goto err;
|
|
}
|
|
return 0;
|
|
|
|
err:
|
|
return bfd_errmsg(bfd_get_error());
|
|
}
|
|
#elif defined(HAVE_LIBELF_H)
|
|
/*
|
|
another possible implementation.
|
|
*/
|
|
#elif defined(MY_ADDR_RESOLVE_FORK)
|
|
/*
|
|
yet another - just execute addr2line or eu-addr2line, whatever available,
|
|
pipe the addresses to it, and parse the output
|
|
*/
|
|
|
|
#include <m_string.h>
|
|
#include <ctype.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
static int in[2], out[2];
|
|
static pid_t pid;
|
|
static char addr2line_binary[1024];
|
|
static char output[1024];
|
|
|
|
int start_addr2line_fork(const char *binary_path)
|
|
{
|
|
|
|
if (pid > 0)
|
|
{
|
|
/* Don't leak FDs */
|
|
close(in[1]);
|
|
close(out[0]);
|
|
/* Don't create zombie processes. */
|
|
waitpid(pid, NULL, 0);
|
|
}
|
|
|
|
if (pipe(in) < 0)
|
|
return 1;
|
|
if (pipe(out) < 0)
|
|
return 1;
|
|
|
|
pid = fork();
|
|
if (pid == -1)
|
|
return 1;
|
|
|
|
if (!pid) /* child */
|
|
{
|
|
dup2(in[0], 0);
|
|
dup2(out[1], 1);
|
|
close(in[0]);
|
|
close(in[1]);
|
|
close(out[0]);
|
|
close(out[1]);
|
|
execlp("addr2line", "addr2line", "-C", "-f", "-e", binary_path, NULL);
|
|
exit(1);
|
|
}
|
|
|
|
close(in[0]);
|
|
close(out[1]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int my_addr_resolve(void *ptr, my_addr_loc *loc)
|
|
{
|
|
char input[32], *s;
|
|
size_t len;
|
|
|
|
Dl_info info;
|
|
void *offset;
|
|
|
|
if (!dladdr(ptr, &info))
|
|
return 1;
|
|
|
|
if (strcmp(addr2line_binary, info.dli_fname))
|
|
{
|
|
/* We use dli_fname in case the path is longer than the length of our static
|
|
string. We don't want to allocate anything dynamicaly here as we are in
|
|
a "crashed" state. */
|
|
if (start_addr2line_fork(info.dli_fname))
|
|
{
|
|
addr2line_binary[0] = '\0';
|
|
return 1;
|
|
}
|
|
/* Save result for future comparisons. */
|
|
strnmov(addr2line_binary, info.dli_fname, sizeof(addr2line_binary));
|
|
}
|
|
offset = info.dli_fbase;
|
|
len= my_snprintf(input, sizeof(input), "%p\n", ptr - offset);
|
|
if (write(in[1], input, len) <= 0)
|
|
return 1;
|
|
if (read(out[0], output, sizeof(output)) <= 0)
|
|
return 1;
|
|
loc->func= s= output;
|
|
while (*s != '\n')
|
|
s++;
|
|
*s++= 0;
|
|
loc->file= s;
|
|
while (*s != ':')
|
|
s++;
|
|
*s++= 0;
|
|
|
|
if (strcmp(loc->file, "??") == 0)
|
|
return 1;
|
|
|
|
loc->line= 0;
|
|
while (isdigit(*s))
|
|
loc->line = loc->line * 10 + (*s++ - '0');
|
|
*s = 0;
|
|
loc->file= strip_path(loc->file);
|
|
|
|
return 0;
|
|
}
|
|
|
|
const char *my_addr_resolve_init()
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|