1 /* Test backtrace and backtrace_symbols for signal frames, where a
2 system call was interrupted by a signal.
3 Copyright (C) 2011-2013 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
25 #include <sys/types.h>
29 #include "tst-backtrace.h"
31 static int do_test (void);
32 #define TEST_FUNCTION do_test ()
33 #include "../test-skeleton.c"
35 /* The backtrace should include at least handle_signal, a signal
36 trampoline, read, 3 * fn, and do_test. */
37 #define NUM_FUNCTIONS 7
40 handle_signal (int signum
)
42 void *addresses
[NUM_FUNCTIONS
];
47 /* Get the backtrace addresses. */
48 n
= backtrace (addresses
, sizeof (addresses
) / sizeof (addresses
[0]));
49 printf ("Obtained backtrace with %d functions\n", n
);
50 /* Check that there are at least seven functions. */
51 if (n
< NUM_FUNCTIONS
)
56 /* Convert them to symbols. */
57 symbols
= backtrace_symbols (addresses
, n
);
58 /* Check that symbols were obtained. */
64 for (i
= 0; i
< n
; ++i
)
65 printf ("Function %d: %s\n", i
, symbols
[i
]);
66 /* Check that the function names obtained are accurate. */
67 if (!match (symbols
[0], "handle_signal"))
72 /* Do not check name for signal trampoline. */
74 if (!match (symbols
[i
++], "read"))
76 /* Perhaps symbols[2] is __kernel_vsyscall? */
77 if (!match (symbols
[i
++], "read"))
83 for (; i
< n
- 1; i
++)
84 if (!match (symbols
[i
], "fn"))
89 /* Symbol names are not available for static functions, so we do not
96 pid_t parent_pid
, child_pid
;
107 memset (&act
, 0, sizeof (act
));
108 act
.sa_handler
= handle_signal
;
109 sigemptyset (&act
.sa_mask
);
110 sigaction (SIGUSR1
, &act
, NULL
);
111 parent_pid
= getpid ();
112 if (pipe (pipefd
) == -1)
116 if (child_pid
== (pid_t
) -1)
118 else if (child_pid
== 0)
121 kill (parent_pid
, SIGUSR1
);
126 read (pipefd
[0], r
, 1);