1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
21 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
22 * file for a list of people on the GLib Team. See the ChangeLog
23 * files for a list of changes. These files are distributed with
24 * GLib at ftp://ftp.gtk.org/pub/gtk/.
28 * MT safe ; except for g_on_error_stack_trace, but who wants thread safety
33 #include "glibconfig.h"
40 #ifdef HAVE_SYS_TIME_H
43 #ifdef HAVE_SYS_TIMES_H
44 #include <sys/times.h>
46 #include <sys/types.h>
47 #ifdef HAVE_SYS_WAIT_H
56 #ifdef HAVE_SYS_SELECT_H
57 #include <sys/select.h>
58 #endif /* HAVE_SYS_SELECT_H */
60 #include <string.h> /* for bzero on BSD systems */
63 # define STRICT /* Strict typing, please */
64 # define _WIN32_WINDOWS 0x0401 /* to get IsDebuggerPresent */
69 #include "gbacktrace.h"
73 #include "gprintfint.h"
78 # define SELECT_MASK fd_set
81 # define SELECT_MASK void
83 # define SELECT_MASK int
89 static void stack_trace (char **args);
92 /* People want to hit this from their debugger... */
93 GLIB_AVAILABLE_IN_ALL volatile gboolean glib_on_error_halt;
94 volatile gboolean glib_on_error_halt = TRUE;
98 * @prg_name: the program name, needed by <command>gdb</command>
99 * for the [S]tack trace option. If @prg_name is %NULL, g_get_prgname()
100 * is called to get the program name (which will work correctly if
101 * gdk_init() or gtk_init() has been called)
103 * Prompts the user with
104 * <computeroutput>[E]xit, [H]alt, show [S]tack trace or [P]roceed</computeroutput>.
105 * This function is intended to be used for debugging use only.
106 * The following example shows how it can be used together with
107 * the g_log() functions.
110 * #include <glib.h>
113 * log_handler (const gchar *log_domain,
114 * GLogLevelFlags log_level,
115 * const gchar *message,
116 * gpointer user_data)
118 * g_log_default_handler (log_domain, log_level, message, user_data);
120 * g_on_error_query (MY_PROGRAM_NAME);
124 * main (int argc, char *argv[])
126 * g_log_set_handler (MY_LOG_DOMAIN,
127 * G_LOG_LEVEL_WARNING |
128 * G_LOG_LEVEL_ERROR |
129 * G_LOG_LEVEL_CRITICAL,
135 * If [E]xit is selected, the application terminates with a call
136 * to <literal>_exit(0)</literal>.
138 * If [S]tack trace is selected, g_on_error_stack_trace() is called.
139 * This invokes <command>gdb</command>, which attaches to the current
140 * process and shows a stack trace. The prompt is then shown again.
142 * If [P]roceed is selected, the function returns.
144 * This function may cause different actions on non-UNIX platforms.
147 g_on_error_query (const gchar *prg_name)
150 static const gchar * const query1 = "[E]xit, [H]alt";
151 static const gchar * const query2 = ", show [S]tack trace";
152 static const gchar * const query3 = " or [P]roceed";
156 prg_name = g_get_prgname ();
162 "%s (pid:%u): %s%s%s: ",
170 "(process:%u): %s%s: ",
176 if (isatty(0) && isatty(1))
177 fgets (buf, 8, stdin);
181 if ((buf[0] == 'E' || buf[0] == 'e')
184 else if ((buf[0] == 'P' || buf[0] == 'p')
188 && (buf[0] == 'S' || buf[0] == 's')
191 g_on_error_stack_trace (prg_name);
194 else if ((buf[0] == 'H' || buf[0] == 'h')
197 while (glib_on_error_halt)
199 glib_on_error_halt = TRUE;
206 prg_name = g_get_prgname ();
208 MessageBox (NULL, "g_on_error_query called, program terminating",
209 (prg_name && *prg_name) ? prg_name : NULL,
216 * g_on_error_stack_trace:
217 * @prg_name: the program name, needed by <command>gdb</command>
218 * for the [S]tack trace option.
220 * Invokes <command>gdb</command>, which attaches to the current
221 * process and shows a stack trace. Called by g_on_error_query()
222 * when the [S]tack trace option is selected. You can get the current
223 * process's "program name" with g_get_prgname(), assuming that you
224 * have called gtk_init() or gdk_init().
226 * This function may cause different actions on non-UNIX platforms.
229 g_on_error_stack_trace (const gchar *prg_name)
231 #if defined(G_OS_UNIX) || defined(G_OS_BEOS)
234 gchar *args[4] = { "gdb", NULL, NULL, NULL };
240 _g_sprintf (buf, "%u", (guint) getpid ());
242 args[1] = (gchar*) prg_name;
251 else if (pid == (pid_t) -1)
253 perror ("unable to fork gdb");
257 waitpid (pid, &status, 0);
259 if (IsDebuggerPresent ())
268 static gboolean stack_trace_done = FALSE;
271 stack_trace_sigchld (int signum)
273 stack_trace_done = TRUE;
277 stack_trace (char **args)
289 stack_trace_done = FALSE;
290 signal (SIGCHLD, stack_trace_sigchld);
292 if ((pipe (in_fd) == -1) || (pipe (out_fd) == -1))
294 perror ("unable to open pipe");
301 close (0); dup (in_fd[0]); /* set the stdin to the in pipe */
302 close (1); dup (out_fd[1]); /* set the stdout to the out pipe */
303 close (2); dup (out_fd[1]); /* set the stderr to the out pipe */
305 execvp (args[0], args); /* exec gdb */
306 perror ("exec failed");
309 else if (pid == (pid_t) -1)
311 perror ("unable to fork");
316 FD_SET (out_fd[0], &fdset);
318 write (in_fd[1], "backtrace\n", 10);
319 write (in_fd[1], "p x = 0\n", 8);
320 write (in_fd[1], "quit\n", 5);
331 sel = select (FD_SETSIZE, &readset, NULL, NULL, &tv);
335 if ((sel > 0) && (FD_ISSET (out_fd[0], &readset)))
337 if (read (out_fd[0], &c, 1))
351 if ((c == '\n') || (c == '\r'))
354 _g_fprintf (stdout, "%s", buffer);
364 else if (stack_trace_done)
375 #endif /* !G_OS_WIN32 */