- 15 Dec, 2015 1 commit
-
-
On FreeBSD backtrace(3) uses size_t instead of int (as glibc does). This causes integer precision loss errors when we used int to store its results. The issue is fixed by using size_t to store the results of backtrace(3). The manual page of glibc does not mention that backtrace(3) returns negative values. Therefore, no unsigned integer wrapping occurs when its result is stored in an unsigned data type.
-
- 02 Jan, 2015 1 commit
-
-
Nick Mathewson authored
-
- 28 Oct, 2014 1 commit
-
-
Nick Mathewson authored
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right?
-
- 17 Apr, 2014 1 commit
-
-
Nick Mathewson authored
Fixes windows compilation; bug not in any released Tor. Bugfix on cc9e86db.
-
- 10 Apr, 2014 1 commit
-
-
Nick Mathewson authored
This involves some duplicate code between backtrace.c and sandbox.c, but I don't see a way around it: calling more functions would mean adding more steps to our call stack, and running clean_backtrace() against the wrong point on the stack.
-
- 18 Nov, 2013 3 commits
-
-
Nick Mathewson authored
This meant moving a fair bit of code around, and writing a signal cleanup function. Still pretty nice from what I can tell, though.
-
Nick Mathewson authored
We had accidentially grown two fake ones: one for backtrace.c, and one for sandbox.c. Let's do this properly instead. Now, when we configure logs, we keep track of fds that should get told about bad stuff happening from signal handlers. There's another entry point for these that avoids using non-signal-handler-safe functions.
-
Nick Mathewson authored
On platforms with the backtrace/backtrace_symbols_fd interface, Tor can now dump stack traces on assertion failure. By default, I log them to DataDir/stack_dump and to stderr.
-