X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fbacktrace.c;h=861a109d24c4f100082ed492f0c00d8c3a120f28;hb=3ba9c6a5a5468626dcfeb1f9a750bb0efc8c6a7a;hp=42ab8c48b70b59524c054530385f14c060b75cf7;hpb=7559c396688cbbc6fab80897bbb4b993646bcf54;p=sliver-openvswitch.git diff --git a/lib/backtrace.c b/lib/backtrace.c index 42ab8c48b..861a109d2 100644 --- a/lib/backtrace.c +++ b/lib/backtrace.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010, 2011, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,92 +15,26 @@ */ #include -#include "backtrace.h" -#include -#include -#include -#include -#include "compiler.h" -#define THIS_MODULE VLM_backtrace -#include "vlog.h" +#include "backtrace.h" -static uintptr_t UNUSED -get_max_stack(void) +#ifdef HAVE_BACKTRACE +#include +void +backtrace_capture(struct backtrace *b) { - static const char file_name[] = "/proc/self/maps"; - char line[1024]; - int line_number; - FILE *f; + void *frames[BACKTRACE_MAX_FRAMES]; + int i; - f = fopen(file_name, "r"); - if (f == NULL) { - VLOG_WARN("opening %s failed: %s", file_name, strerror(errno)); - return -1; + b->n_frames = backtrace(frames, BACKTRACE_MAX_FRAMES); + for (i = 0; i < b->n_frames; i++) { + b->frames[i] = (uintptr_t) frames[i]; } - - for (line_number = 1; fgets(line, sizeof line, f); line_number++) { - if (strstr(line, "[stack]")) { - uintptr_t end; - if (sscanf(line, "%*x-%"SCNxPTR, &end) != 1) { - VLOG_WARN("%s:%d: parse error", file_name, line_number); - continue; - } - fclose(f); - return end; - } - } - fclose(f); - - VLOG_WARN("%s: no stack found", file_name); - return -1; } - -static uintptr_t -stack_high(void) -{ - static uintptr_t high; - if (!high) { - high = get_max_stack(); - } - return high; -} - -static uintptr_t -stack_low(void) -{ -#ifdef __i386__ - uintptr_t low; - asm("movl %%esp,%0" : "=g" (low)); - return low; #else - /* This causes a warning in GCC that cannot be disabled, so use it only on - * non-x86. */ - int dummy; - return (uintptr_t) &dummy; -#endif -} - -static bool -in_stack(void *p) -{ - uintptr_t address = (uintptr_t) p; - return address >= stack_low() && address < stack_high(); -} - void backtrace_capture(struct backtrace *backtrace) { - void **frame; - size_t n; - - n = 0; - for (frame = __builtin_frame_address(1); - frame != NULL && in_stack(frame) && frame[0] != NULL - && n < BACKTRACE_MAX_FRAMES; - frame = frame[0]) - { - backtrace->frames[n++] = (uintptr_t) frame[1]; - } - backtrace->n_frames = n; + backtrace->n_frames = 0; } +#endif