-
Notifications
You must be signed in to change notification settings - Fork 145
/
backtrace.h
194 lines (159 loc) · 4.08 KB
/
backtrace.h
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#ifndef __BACKTRACE__H_
#define __BACKTRACE__H_
#ifndef _WIN32
#include <stdio.h>
#include <unistd.h>
#include <execinfo.h>
#include <signal.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/wait.h>
#define CRASH_REPORT_FILENAME ".osc_crash_report"
static char *glbProgramName;
static int fd[2];
struct crash_report {
pid_t pid;
int signum;
int err_no;
time_t time;
};
static gchar * get_default_crash_report_path(void)
{
return g_build_filename(
getenv("HOME") ?: getenv("LOCALAPPDATA"),
CRASH_REPORT_FILENAME, NULL);
}
#define BACKTRACE_DEPTH 32
void obtainBacktrace(int signum, siginfo_t *siginfo, void *uctx)
{
void *backtrace_buffer[BACKTRACE_DEPTH];
size_t size;
struct crash_report creport;
struct timespec timestamp;
ssize_t ret;
/* Get a minimal status of the program */
clock_gettime(CLOCK_REALTIME, ×tamp);
creport.pid = getpid();
creport.signum = signum;
creport.err_no = errno;
creport.time = timestamp.tv_sec;
/* Get the backtrace */
size = backtrace(backtrace_buffer, sizeof(backtrace_buffer));
/* Send everything to the child process */
close(fd[0]);
ret = write(fd[1], (const void *)&creport,
sizeof(struct crash_report));
if (ret != sizeof(struct crash_report)) {
goto end;
}
backtrace_symbols_fd(backtrace_buffer, size, fd[1]);
end:
close(fd[1]);
/* Wait child process to finish the crash report */
wait(NULL);
abort();
}
void handle_crash_data()
{
int nbytes;
char readbuffer[8192];
int total_bytes = 0;
/* Get everything the parent process sends */
close(fd[1]);
memset(readbuffer, 0, sizeof(readbuffer));
while (1) {
nbytes = read(fd[0], readbuffer + total_bytes,
sizeof(readbuffer) - total_bytes);
if (nbytes < 0) {
fprintf(stderr, "read error\n");
break;
}
if (nbytes == 0)
break;
total_bytes += nbytes;
}
/* Osc ran normally and no bytes were sent by the parent proc */
if (total_bytes == 0)
return;
/* First received data contains a crash_report struct */
char *creport_buf;
struct crash_report *creport;
FILE *fp;
gchar *creport_filename;
creport_buf = malloc(sizeof(struct crash_report));
if (!creport_buf) {
fprintf(stderr, "Memory allocation failed. File: %s "
"Func: %s Line: %d\n",
__FILE__, __func__, __LINE__);
return;
}
creport = (struct crash_report *)creport_buf;
memcpy(creport_buf, readbuffer, sizeof(struct crash_report));
/* Store the crash report in a file */
creport_filename = get_default_crash_report_path();
fp = fopen(creport_filename, "w+");
if (!fp) {
fprintf(stderr, "Failed to open file %s for writing. "
"File: %s Func: %s Line: %d\n",
CRASH_REPORT_FILENAME,
__FILE__, __func__, __LINE__);
free(creport_buf);
g_free(creport_filename);
return;
}
fprintf(fp, "\n"
"IIO-Oscilloscope Crash Info\n"
"\n"
"PID: %d\n"
"Signal No: %d\n"
"Signal String: %s\n"
"Error No: %d\n"
"Error String: %s\n"
"Time Stamp: %s",
creport->pid,
creport->signum,
strsignal(creport->signum),
creport->err_no,
strerror(creport->err_no),
ctime(&creport->time)
);
fprintf(fp, "\nIIO-Oscilloscope Backtrace\n");
fprintf(fp, "%s", readbuffer + sizeof(struct crash_report));
fprintf(stderr, "A crash report file has been created at: %s\n",
creport_filename);
/* Free resources */
fclose(fp);
free(creport_buf);
g_free(creport_filename);
}
#endif
void init_signal_handlers(char *program_name)
{
#ifndef _WIN32
glbProgramName = program_name;
struct sigaction osc_backtrace;
int ret;
/* Prepare a child process to receive crash data the handler sends */
pid_t stackParserPID;
ret = pipe(fd);
if (ret != 0) {
fprintf(stderr, "Failed to create pipe. Error: %s. "
"File: %s Func: %s Line: %d\n",
strerror(errno),
__FILE__, __func__, __LINE__);
return;
}
stackParserPID = fork();
if (stackParserPID == 0) {
handle_crash_data();
_exit(EXIT_SUCCESS);
}
/* Send a crash report when a crash occurs */
memset(&osc_backtrace, 0, sizeof(osc_backtrace));
osc_backtrace.sa_sigaction = obtainBacktrace;
sigaction(SIGSEGV, &osc_backtrace, NULL);
sigaction(SIGABRT, &osc_backtrace, NULL);
#endif
}
#endif /* __BACKTRACE__H_ */