2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include "backtrace.h"
26 VLOG_DEFINE_THIS_MODULE(backtrace);
28 static uintptr_t OVS_UNUSED
31 static const char file_name[] = "/proc/self/maps";
36 f = fopen(file_name, "r");
38 VLOG_WARN("opening %s failed: %s", file_name, strerror(errno));
42 for (line_number = 1; fgets(line, sizeof line, f); line_number++) {
43 if (strstr(line, "[stack]")) {
45 if (sscanf(line, "%*x-%"SCNxPTR, &end) != 1) {
46 VLOG_WARN("%s:%d: parse error", file_name, line_number);
55 VLOG_WARN("%s: no stack found", file_name);
62 static uintptr_t high;
64 high = get_max_stack();
72 uintptr_t low = (uintptr_t) &low;
79 uintptr_t address = (uintptr_t) p;
80 return address >= stack_low() && address < stack_high();
84 backtrace_capture(struct backtrace *backtrace)
91 for (frame = __builtin_frame_address(1);
92 frame != NULL && in_stack(frame) && frame[0] != NULL
93 && n < BACKTRACE_MAX_FRAMES;
96 backtrace->frames[n++] = (uintptr_t) frame[1];
98 backtrace->n_frames = n;
100 backtrace->n_frames = 0;